Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Separate real name from alias names list.
[simgrid.git] / src / simgrid / sg_config.cpp
index 0c7c8a8..256d5a2 100644 (file)
@@ -318,17 +318,17 @@ void sg_config_init(int *argc, char **argv)
   /* The parameters of network models */
 
   sg_latency_factor = 13.01; // comes from the default LV08 network model
-  simgrid::config::bindFlag(sg_latency_factor, {"network/latency-factor", "network/latency_factor"},
+  simgrid::config::bindFlag(sg_latency_factor, "network/latency-factor", {"network/latency_factor"},
                             "Correction factor to apply to the provided latency (default value set by network model)");
 
   sg_bandwidth_factor = 0.97; // comes from the default LV08 network model
   simgrid::config::bindFlag(
-      sg_bandwidth_factor, {"network/bandwidth-factor", "network/bandwidth_factor"},
+      sg_bandwidth_factor, "network/bandwidth-factor", {"network/bandwidth_factor"},
       "Correction factor to apply to the provided bandwidth (default value set by network model)");
 
   sg_weight_S_parameter = 20537; // comes from the default LV08 network model
   simgrid::config::bindFlag(
-      sg_weight_S_parameter, {"network/weight-S", "network/weight_S"},
+      sg_weight_S_parameter, "network/weight-S", {"network/weight_S"},
       "Correction factor to apply to the weight of competing streams (default value set by network model)");
 
   /* Inclusion path */