Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Revalidate output. It did not take into account last improvements to
[simgrid.git] / teshsuite / simdag / basic5.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 taskB = SD_task_create("Task B", NULL, 1.0);
16
17
18     /* scheduling parameters */
19
20     double no_cost[] = { 0., 0., 0., 0. };
21     double amount[] = { 0., 100000., 0., 0.};
22     double comput[] = { 10000000. };
23
24     /* let's launch the simulation! */
25     SD_task_schedule(taskInit, 1, SD_workstation_get_list(), no_cost, no_cost, -1.0);
26     SD_task_schedule(taskA, 2, SD_workstation_get_list(), no_cost, amount, -1.0);
27     SD_task_schedule(taskB, 1, SD_workstation_get_list(), comput, no_cost, -1.0);
28
29     SD_task_dependency_add(NULL, NULL, taskInit, taskA);
30     SD_task_dependency_add(NULL, NULL, taskInit, taskB);
31     
32     SD_simulate(-1.0);
33
34     SD_exit();
35     return 0;
36 }