Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'coverity_scan' of github.com:mquinson/simgrid
[simgrid.git] / teshsuite / simdag / basic / basic3.c
1 /* Copyright (c) 2007-2012, 2014-2015. 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 "simgrid/simdag.h"
10 #include "xbt/log.h"
11
12 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(basic3, sd, "SimDag test basic3");
13
14 /* Basic SimDag Test 3
15  * Scenario:
16  *   - Create a chain of tasks (Init, A, Fin)
17  * Verify that the tasks are actually simulated in the right order.
18  */
19 int main(int argc, char **argv)
20 {
21
22   SD_task_t taskInit;
23   SD_task_t taskA;
24   SD_task_t taskFin;
25
26   /* scheduling parameters */
27
28   double no_cost[] = { 0.0, 0.0, 0.0, 0.0 };
29
30   /* initialization of SD */
31   SD_init(&argc, argv);
32
33   /* creation of the environment */
34   SD_create_environment(argv[1]);
35
36   /* creation of the tasks and their dependencies */
37   taskInit = SD_task_create("Task Init", NULL, 1.0);
38   taskA = SD_task_create("Task A", NULL, 1.0);
39   taskFin = SD_task_create("Task Fin", NULL, 1.0);
40
41   /* let's launch the simulation! */
42   SD_task_schedule(taskInit, 1, sg_host_list(), no_cost,
43                    no_cost, -1.0);
44   SD_task_schedule(taskA, 2, sg_host_list(), no_cost, no_cost,
45                    -1.0);
46   SD_task_schedule(taskFin, 1, sg_host_list(), no_cost, no_cost,
47                    -1.0);
48
49   SD_task_dependency_add(NULL, NULL, taskInit, taskA);
50   SD_task_dependency_add(NULL, NULL, taskA, taskFin);
51
52   SD_simulate(-1.0);
53   SD_task_destroy(taskInit);
54   SD_task_destroy(taskA);
55   SD_task_destroy(taskFin);
56
57   XBT_INFO("Simulation time: %f", SD_get_clock());
58
59   SD_exit();
60   return 0;
61 }