X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0f5e8daaa6e9f74521068aa75837200bcd182ea6..27522f54798d48ca54ec41a4d203f650cbfacdfd:/src/simix/smx_environment.c?ds=sidebyside diff --git a/src/simix/smx_environment.c b/src/simix/smx_environment.c index 0007cf925e..6621fe95b5 100644 --- a/src/simix/smx_environment.c +++ b/src/simix/smx_environment.c @@ -42,16 +42,13 @@ 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)); -#ifdef HAVE_TRACING - TRACE_surf_save_onelink(); -#endif - 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(); }