Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
1155970eb2173411ab3de38033674d57eea67186
[simgrid.git] / teshsuite / simdag / canon / sd_test4.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. };
21     double amount[] = { 0., 1., 0., 0.};
22
23     /* let's launch the simulation! */
24     SD_task_schedule(taskInit, 1, SD_workstation_get_list(), no_cost, no_cost, -1.0);
25     SD_task_schedule(taskA, 2, SD_workstation_get_list(), no_cost, amount, -1.0);
26     SD_task_schedule(taskFin, 1, SD_workstation_get_list(), no_cost, no_cost, -1.0);
27
28     SD_task_dependency_add(NULL, NULL, taskInit, taskA);
29     SD_task_dependency_add(NULL, NULL, taskA, taskFin);
30     
31     SD_simulate(-1.0);
32
33     SD_exit();
34     return 0;
35 }