Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
this test is supposed to check whether the net/cpu models are not the regular one...
[simgrid.git] / src / surf / surf_config.c
index 7f5e6fb..62eaa26 100644 (file)
@@ -311,6 +311,10 @@ void surf_config_models_setup(const char *platform_file)
   network_model_name = xbt_cfg_get_string(_surf_cfg_set, "network/model");
   cpu_model_name = xbt_cfg_get_string(_surf_cfg_set, "cpu/model");
 
+  /* Check whether we use a net/cpu model differing from the default ones, in which case
+   * we should switch to the "compound" workstation model to correctly dispatch stuff to
+   * the right net/cpu models.
+   */
   if ((strcmp(network_model_name,"LV08") || strcmp(cpu_model_name,"Cas01"))
       && !strcmp(workstation_model_name, "CLM03")){
     const char *val = "compound";