X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0f5e8daaa6e9f74521068aa75837200bcd182ea6..ae855a0d996d06d373fbc233e78b0fbe7f1f2df6:/src/simix/smx_environment.c diff --git a/src/simix/smx_environment.c b/src/simix/smx_environment.c index 0007cf925e..20ce044908 100644 --- a/src/simix/smx_environment.c +++ b/src/simix/smx_environment.c @@ -42,7 +42,7 @@ void SIMIX_create_environment(const char *file) parse_platform_file(file); surf_config_models_create_elms(); start = xbt_os_time(); - + /* FIXME: what time are we measuring ??? */ end = xbt_os_time(); DEBUG1("PARSE TIME: %lg", (end - start)); @@ -52,6 +52,7 @@ void SIMIX_create_environment(const char *file) xbt_dict_foreach(surf_model_resource_set(surf_workstation_model), cursor, name, workstation) { - __SIMIX_host_create(name, workstation, NULL); + SIMIX_host_create(name, workstation, NULL); } + surf_presolve(); }