Logo AND Algorithmique Numérique Distribuée

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