|
Last change
on this file since 113 was
102,
checked in by rosiere, 17 years ago
|
|
Previous commit with new files :P
|
-
Property svn:keywords set to
Id
|
|
File size:
574 bytes
|
| Line | |
|---|
| 1 | // $Id: main.c 102 2009-01-15 17:24:46Z rosiere $ |
|---|
| 2 | |
|---|
| 3 | //=====[ main ]================================================================= |
|---|
| 4 | /* |
|---|
| 5 | * All thread execute this routine |
|---|
| 6 | * Initialize the thread and attribute a Workload at each thread |
|---|
| 7 | */ |
|---|
| 8 | |
|---|
| 9 | #include "func_math.h" |
|---|
| 10 | #include "func_fibonnacci.h" |
|---|
| 11 | #include "func_premier.h" |
|---|
| 12 | #include "func_factoriel.h" |
|---|
| 13 | #include "func_io.h" |
|---|
| 14 | |
|---|
| 15 | int main() |
|---|
| 16 | { |
|---|
| 17 | test_mul_soft (); |
|---|
| 18 | test_div_soft (); |
|---|
| 19 | test_modulo (); |
|---|
| 20 | test_fibonnacci (30); |
|---|
| 21 | test_n_premier (6); |
|---|
| 22 | test_factoriel_iteratif (12); |
|---|
| 23 | test_factoriel_recursif (12); |
|---|
| 24 | |
|---|
| 25 | quit(0); |
|---|
| 26 | } |
|---|
Note: See
TracBrowser
for help on using the repository browser.