Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ignore timing errors since they are really useless
[simgrid.git] / teshsuite / simdag / basic4.c
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include "simdag/simdag.h"
4
5 int main(int argc, char **argv)
6 {
7   /* creation of the tasks and their dependencies */
8
9   SD_task_t taskInit;
10   SD_task_t taskA;
11   SD_task_t taskFin;
12
13
14   /* scheduling parameters */
15
16   double no_cost[] = { 0., 0., 0., 0. };
17   double amount[] = { 0., 1., 0., 0. };
18
19   /* initialisation of SD */
20   SD_init(&argc, argv);
21
22   /* creation of the environment */
23   SD_create_environment(argv[1]);
24
25   /* creation of the tasks and their dependencies */
26   taskInit = SD_task_create("Task Init", NULL, 1.0);
27   taskA = SD_task_create("Task A", NULL, 1.0);
28   taskFin = SD_task_create("Task Fin", NULL, 1.0);
29
30
31   /* let's launch the simulation! */
32   SD_task_schedule(taskInit, 1, SD_workstation_get_list(), no_cost, no_cost,
33                    -1.0);
34   SD_task_schedule(taskA, 2, SD_workstation_get_list(), no_cost, amount,
35                    -1.0);
36   SD_task_schedule(taskFin, 1, SD_workstation_get_list(), no_cost, no_cost,
37                    -1.0);
38
39   SD_task_dependency_add(NULL, NULL, taskInit, taskA);
40   SD_task_dependency_add(NULL, NULL, taskA, taskFin);
41
42   SD_simulate(-1.0);
43
44   SD_exit();
45   return 0;
46 }