Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Reindent everything (possibly breaking all branches, but for the last time)
[simgrid.git] / teshsuite / simdag / network / mxn / test_intra_all2all.c
index 16f0fe8..1fe82e4 100644 (file)
  * 
  */
 
-int main(int argc, char **argv) {
+int main(int argc, char **argv)
+{
   double time;
   SD_task_t task;
-  
-  double communication_amount[] = 
-       {     0.0, 1.0, 1.0, 1.0,
-                 1.0, 0.0, 1.0, 1.0,
-                 1.0, 1.0, 0.0, 1.0,
-                 1.0, 1.0, 1.0, 0.0,
-       };
-  
+
+  double communication_amount[] = { 0.0, 1.0, 1.0, 1.0,
+    1.0, 0.0, 1.0, 1.0,
+    1.0, 1.0, 0.0, 1.0,
+    1.0, 1.0, 1.0, 0.0,
+  };
+
   double no_cost[] = { 0.0, 0.0, 0.0, 0.0 };
 
-  
+
   /***************************************/
 
   SD_init(&argc, argv);
@@ -42,19 +42,19 @@ int main(int argc, char **argv) {
 
   task = SD_task_create("All2all task", NULL, 1.0);
 
-  SD_task_schedule(task, 4, SD_workstation_get_list(), no_cost, communication_amount, -1.0);
-  
+  SD_task_schedule(task, 4, SD_workstation_get_list(), no_cost,
+                   communication_amount, -1.0);
+
   SD_simulate(-1.0);
-  
+
   time = SD_get_clock();
 
   printf("%g\n", time);
   fflush(stdout);
-  
+
   SD_task_destroy(task);
-  
+
   SD_exit();
-  
+
   return 0;
 }
-