X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d201a460533e30bc27db56a6ad0b3b462f8ac55f..67ebbc00442335b3f92177183bbbbb4574e35bf0:/teshsuite/simdag/basic3.c diff --git a/teshsuite/simdag/basic3.c b/teshsuite/simdag/basic3.c index eb05f3cd2d..87d5c78154 100644 --- a/teshsuite/simdag/basic3.c +++ b/teshsuite/simdag/basic3.c @@ -2,37 +2,41 @@ #include #include "simdag/simdag.h" -int main(int argc, char **argv) { +int main(int argc, char **argv) +{ - SD_task_t taskInit; - SD_task_t taskA; - SD_task_t taskFin; + SD_task_t taskInit; + SD_task_t taskA; + SD_task_t taskFin; - /* scheduling parameters */ + /* scheduling parameters */ - double no_cost[] = { 0.0, 0.0, 0.0, 0.0 }; + double no_cost[] = { 0.0, 0.0, 0.0, 0.0 }; - /* initialisation of SD */ - SD_init(&argc, argv); + /* initialisation of SD */ + SD_init(&argc, argv); - /* creation of the environment */ - SD_create_environment(argv[1]); + /* creation of the environment */ + SD_create_environment(argv[1]); - /* creation of the tasks and their dependencies */ - taskInit = SD_task_create("Task Init",NULL,1.0); - taskA = SD_task_create("Task A", NULL, 1.0); - taskFin = SD_task_create("Task Fin", NULL, 1.0); + /* creation of the tasks and their dependencies */ + taskInit = SD_task_create("Task Init", NULL, 1.0); + taskA = SD_task_create("Task A", NULL, 1.0); + taskFin = SD_task_create("Task Fin", NULL, 1.0); - /* let's launch the simulation! */ - SD_task_schedule(taskInit, 1, SD_workstation_get_list(), no_cost, no_cost, -1.0); - SD_task_schedule(taskA, 2, SD_workstation_get_list(), no_cost, no_cost, -1.0); - SD_task_schedule(taskFin, 1, SD_workstation_get_list(), no_cost, no_cost, -1.0); + /* let's launch the simulation! */ + SD_task_schedule(taskInit, 1, SD_workstation_get_list(), no_cost, no_cost, + -1.0); + SD_task_schedule(taskA, 2, SD_workstation_get_list(), no_cost, no_cost, + -1.0); + SD_task_schedule(taskFin, 1, SD_workstation_get_list(), no_cost, no_cost, + -1.0); - SD_task_dependency_add(NULL, NULL, taskInit, taskA); - SD_task_dependency_add(NULL, NULL, taskA, taskFin); - - SD_simulate(-1.0); + SD_task_dependency_add(NULL, NULL, taskInit, taskA); + SD_task_dependency_add(NULL, NULL, taskA, taskFin); - SD_exit(); - return 0; + SD_simulate(-1.0); + + SD_exit(); + return 0; }