X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ce04ed35abb51f42ca6b6b778ee3f6b08f9ab445..9b753d1d450c04472b123ce8869126dfe5e3825c:/teshsuite/simdag/basic1.c diff --git a/teshsuite/simdag/basic1.c b/teshsuite/simdag/basic1.c index 065254732a..6456ca8fdf 100644 --- a/teshsuite/simdag/basic1.c +++ b/teshsuite/simdag/basic1.c @@ -3,6 +3,17 @@ #include "simdag/simdag.h" int main(int argc, char **argv) { + + SD_task_t taskInit; + SD_task_t taskA; + SD_task_t taskB; + + double communication_amount1 = 1000000000; + double communication_amount2 = 1000000000; + double no_cost = 0.0; + + const SD_workstation_t* workstation; + /* initialisation of SD */ SD_init(&argc, argv); @@ -10,17 +21,15 @@ int main(int argc, char **argv) { SD_create_environment(argv[1]); /* creation of the tasks and their dependencies */ - SD_task_t taskInit = SD_task_create(NULL,NULL,1.0); - SD_task_t taskA = SD_task_create("Task Comm A", NULL, 1.0); - SD_task_t taskB = SD_task_create("Task Comm B", NULL, 1.0); + taskInit = SD_task_create("Init",NULL,1.0); + taskA = SD_task_create("Task Comm A", NULL, 1.0); + taskB = SD_task_create("Task Comm B", NULL, 1.0); /* scheduling parameters */ - const SD_workstation_t* workstation = SD_workstation_get_list(); - double communication_amount1 = 1000000000; - double communication_amount2 = 1000000000; - double no_cost = 0.0; + + workstation = SD_workstation_get_list(); /* let's launch the simulation! */ SD_task_schedule(taskInit, 1, SD_workstation_get_list(), &no_cost, &no_cost, -1.0);