Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add the flatifier update the Makefile accordingly.
[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         /* creation of the tasks and their dependencies */
7     
8         SD_task_t taskInit;
9     SD_task_t taskA;
10     SD_task_t taskFin;
11
12
13     /* scheduling parameters */
14
15     double no_cost[] = { 0., 0., 0., 0. };
16     double amount[] = { 0., 1., 0., 0.};
17
18     /* initialisation of SD */
19     SD_init(&argc, argv);
20
21     /* creation of the environment */
22     SD_create_environment(argv[1]);
23
24     /* creation of the tasks and their dependencies */
25     taskInit = SD_task_create("Task Init",NULL,1.0);
26     taskA = SD_task_create("Task A", NULL, 1.0);
27     taskFin = SD_task_create("Task Fin", NULL, 1.0);
28
29
30     /* let's launch the simulation! */
31     SD_task_schedule(taskInit, 1, SD_workstation_get_list(), no_cost, no_cost, -1.0);
32     SD_task_schedule(taskA, 2, SD_workstation_get_list(), no_cost, amount, -1.0);
33     SD_task_schedule(taskFin, 1, SD_workstation_get_list(), no_cost, no_cost, -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 }