Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
update the double extern declaration bis
[simgrid.git] / examples / simdag / sd_test.c
index 9910ac4..0729329 100644 (file)
@@ -13,7 +13,7 @@ int main(int argc, char **argv) {
   /* initialisation of SD */
   SD_init(&argc, argv);
 
-  xbt_log_control_set("sd.thres=debug");
+  /*  xbt_log_control_set("sd.thres=debug"); */
 
   if (argc < 2) {
     INFO1("Usage: %s platform_file", argv[0]);
@@ -29,6 +29,7 @@ int main(int argc, char **argv) {
   const SD_workstation_t *workstations = SD_workstation_get_list();
   SD_workstation_t w1 = workstations[0];
   SD_workstation_t w2 = workstations[1];
+  SD_workstation_set_access_mode(w2, SD_WORKSTATION_SEQUENTIAL_ACCESS);
   const char *name1 = SD_workstation_get_name(w1);
   const char *name2 = SD_workstation_get_name(w2);
   const double computation_amount1 = 2000000;
@@ -41,7 +42,7 @@ int main(int argc, char **argv) {
        SD_workstation_get_computation_time(w2, computation_amount2));
 
   INFO2("Route between %s and %s:", name1, name2);
-  SD_link_t *route = SD_route_get_list(w1, w2);
+  const SD_link_t *route = SD_route_get_list(w1, w2);
   int route_size = SD_route_get_size(w1, w2);
   for (i = 0; i < route_size; i++) {
     INFO3("\tLink %s: latency = %f, bandwidth = %f", SD_link_get_name(route[i]),
@@ -53,7 +54,6 @@ int main(int argc, char **argv) {
        SD_route_get_communication_time(w1, w2, communication_amount12));
   INFO4("Communication time for %f bytes between %s and %s: %f", communication_amount21, name2, name1,
        SD_route_get_communication_time(w2, w1, communication_amount21));
-  xbt_free(route);
 
   /* creation of the tasks and their dependencies */
   SD_task_t taskA = SD_task_create("Task A", NULL, 10.0);
@@ -117,7 +117,7 @@ int main(int argc, char **argv) {
   SD_task_watch(taskD, SD_DONE);
   SD_task_watch(taskB, SD_DONE);
   SD_task_unwatch(taskD, SD_DONE);
-
+  
 
   /* scheduling parameters */
 
@@ -151,12 +151,6 @@ int main(int argc, char **argv) {
   SD_task_t *changed_tasks;
 
   changed_tasks = SD_simulate(-1.0);
-  xbt_assert0(changed_tasks[0] == taskD &&
-             changed_tasks[1] == taskB &&
-             changed_tasks[2] == taskC &&
-             changed_tasks[3] == NULL,
-             "Unexpected simulation results");
-
   for (i = 0; changed_tasks[i] != NULL; i++) {
     INFO3("Task '%s' start time: %f, finish time: %f",
          SD_task_get_name(changed_tasks[i]),
@@ -164,6 +158,11 @@ int main(int argc, char **argv) {
          SD_task_get_finish_time(changed_tasks[i]));
   }
   
+  xbt_assert0(changed_tasks[0] == taskD &&
+             changed_tasks[1] == taskB &&
+             changed_tasks[2] == NULL,
+             "Unexpected simulation results");
+
   xbt_free(changed_tasks);
 
   DEBUG0("Destroying tasks...");