Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Import of Frederic's files and set up a very basic test (juste parsing the files).
[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     /* initialisation of SD */
7     SD_init(&argc, argv);
8
9     /* creation of the environment */
10     SD_create_environment(argv[1]);
11
12     /* creation of the tasks and their dependencies */
13     SD_task_t taskInit = SD_task_create("Task Init",NULL,1.0);
14     SD_task_t taskA = SD_task_create("Task A", NULL, 1.0);
15     SD_task_t taskFin = SD_task_create("Task Fin", NULL, 1.0);
16
17
18     /* scheduling parameters */
19
20     double no_cost[] = { 0.0, 0.0, 0.0, 0.0 };
21
22     /* let's launch the simulation! */
23     SD_task_schedule(taskInit, 1, SD_workstation_get_list(), no_cost, no_cost, -1.0);
24     SD_task_schedule(taskA, 2, SD_workstation_get_list(), no_cost, no_cost, -1.0);
25     SD_task_schedule(taskFin, 1, SD_workstation_get_list(), no_cost, no_cost, -1.0);
26
27     SD_task_dependency_add(NULL, NULL, taskInit, taskA);
28     SD_task_dependency_add(NULL, NULL, taskA, taskFin);
29     
30     SD_simulate(-1.0);
31
32     SD_exit();
33     return 0;
34 }