Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
moving basic tests + revalidating tesh files.
[simgrid.git] / teshsuite / simdag / basic3.c
diff --git a/teshsuite/simdag/basic3.c b/teshsuite/simdag/basic3.c
new file mode 100644 (file)
index 0000000..ce879bd
--- /dev/null
@@ -0,0 +1,34 @@
+#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, 0.0, 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, 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_exit();
+    return 0;
+}