Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
moving basic tests + revalidating tesh files.
[simgrid.git] / teshsuite / simdag / canon / sd_test4.c
diff --git a/teshsuite/simdag/canon/sd_test4.c b/teshsuite/simdag/canon/sd_test4.c
deleted file mode 100644 (file)
index 1155970..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-#include <stdio.h>
-#include <stdlib.h>
-#include "simdag/simdag.h"
-
-int main(int argc, char **argv) {
-    /* initialisation of SD */
-    SD_init(&argc, argv);
-
-    /* creation of the environment */
-    SD_create_environment(argv[1]);
-
-    /* creation of the tasks and their dependencies */
-    SD_task_t taskInit = SD_task_create("Task Init",NULL,1.0);
-    SD_task_t taskA = SD_task_create("Task A", NULL, 1.0);
-    SD_task_t taskFin = SD_task_create("Task Fin", NULL, 1.0);
-
-
-    /* scheduling parameters */
-
-    double no_cost[] = { 0., 0., 0., 0. };
-    double amount[] = { 0., 1., 0., 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, amount, -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_exit();
-    return 0;
-}