Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
9e764a7b7bde66693846a42a12fa78a6747d3c88
[simgrid.git] / teshsuite / simdag / basic3.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
14   SD_task_t taskInit;
15   SD_task_t taskA;
16   SD_task_t taskFin;
17
18   /* scheduling parameters */
19
20   double no_cost[] = { 0.0, 0.0, 0.0, 0.0 };
21
22   /* initialisation of SD */
23   SD_init(&argc, argv);
24
25   /* creation of the environment */
26   SD_create_environment(argv[1]);
27
28   /* creation of the tasks and their dependencies */
29   taskInit = SD_task_create("Task Init", NULL, 1.0);
30   taskA = SD_task_create("Task A", NULL, 1.0);
31   taskFin = SD_task_create("Task Fin", NULL, 1.0);
32
33   /* let's launch the simulation! */
34   SD_task_schedule(taskInit, 1, SD_workstation_get_list(), no_cost, no_cost,
35                    -1.0);
36   SD_task_schedule(taskA, 2, SD_workstation_get_list(), no_cost, no_cost,
37                    -1.0);
38   SD_task_schedule(taskFin, 1, SD_workstation_get_list(), no_cost, no_cost,
39                    -1.0);
40
41   SD_task_dependency_add(NULL, NULL, taskInit, taskA);
42   SD_task_dependency_add(NULL, NULL, taskA, taskFin);
43
44   SD_simulate(-1.0);
45
46   SD_exit();
47   return 0;
48 }