Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
I comment all the calls to used_routing, in order to use global routing.
[simgrid.git] / src / surf / workstation.c
index 4363239..b104f00 100644 (file)
@@ -44,8 +44,9 @@ void create_workstations(void)
 
   xbt_dict_foreach(surf_model_resource_set(surf_cpu_model), cursor, name, cpu) {
     int *id = NULL;
-    if (used_routing && used_routing->host_id)
-      id = xbt_dict_get_or_null(used_routing->host_id,name);
+// COMMENTED BY DAVID
+//     if (used_routing && used_routing->host_id)
+//       id = xbt_dict_get_or_null(used_routing->host_id,name);
 
     workstation_new(name, cpu, id ? *id : 0);
   }