Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
bdf7be38213c45c56242cc635b1856c18683f760
[simgrid.git] / teshsuite / simdag / basic4.c
1 /* Copyright (c) 2007, 2008, 2009, 2010. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <stdio.h>
8 #include <stdlib.h>
9 #include "simdag/simdag.h"
10
11 int main(int argc, char **argv)
12 {
13   /* creation of the tasks and their dependencies */
14
15   SD_task_t taskInit;
16   SD_task_t taskA;
17   SD_task_t taskFin;
18
19
20   /* scheduling parameters */
21
22   double no_cost[] = { 0., 0., 0., 0. };
23   double amount[] = { 0., 1., 0., 0. };
24
25   /* initialisation of SD */
26   SD_init(&argc, argv);
27
28   /* creation of the environment */
29   SD_create_environment(argv[1]);
30
31   /* creation of the tasks and their dependencies */
32   taskInit = SD_task_create("Task Init", NULL, 1.0);
33   taskA = SD_task_create("Task A", NULL, 1.0);
34   taskFin = SD_task_create("Task Fin", NULL, 1.0);
35
36
37   /* let's launch the simulation! */
38   SD_task_schedule(taskInit, 1, SD_workstation_get_list(), no_cost, no_cost,
39                    -1.0);
40   SD_task_schedule(taskA, 2, SD_workstation_get_list(), no_cost, amount,
41                    -1.0);
42   SD_task_schedule(taskFin, 1, SD_workstation_get_list(), no_cost, no_cost,
43                    -1.0);
44
45   SD_task_dependency_add(NULL, NULL, taskInit, taskA);
46   SD_task_dependency_add(NULL, NULL, taskA, taskFin);
47
48   SD_simulate(-1.0);
49
50   SD_exit();
51   return 0;
52 }