Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
more on testing the dotloader
[simgrid.git] / examples / simdag / sd_comm_throttling.c
index a9fb24f..aa81fe6 100644 (file)
@@ -21,8 +21,6 @@ int main(int argc, char **argv)
   SD_task_t task, taskA, taskB, taskC, taskD, taskE;
   xbt_dynar_t changed_tasks;
 
-  SD_workstation_t workstation_list[4];
-  
   /* initialization of SD */
   SD_init(&argc, argv);
 
@@ -68,9 +66,9 @@ int main(int argc, char **argv)
     XBT_INFO("Simulation stopped after %.4f seconds", SD_get_clock());
     xbt_dynar_foreach(changed_tasks, ctr, task) {
       XBT_INFO("Task '%s' start time: %f, finish time: %f",
-              SD_task_get_name(task),
-              SD_task_get_start_time(task), 
-              SD_task_get_finish_time(task));
+         SD_task_get_name(task),
+         SD_task_get_start_time(task), 
+         SD_task_get_finish_time(task));
  
     }
     /* let throttle the communication for taskD if its parent is SD_DONE */