X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b3b356352e87ae00a20f737c48e19b0c8413455a..7ad85b03568dabade546f7948aaf7279059e9269:/src/simix/smx_environment.c diff --git a/src/simix/smx_environment.c b/src/simix/smx_environment.c index 6d1435210f..9b4c6db82b 100644 --- a/src/simix/smx_environment.c +++ b/src/simix/smx_environment.c @@ -43,24 +43,7 @@ void SIMIX_create_environment(const char *file) } -void SIMIX_post_create_environment(void) { - - void **host = NULL; - void **storage = NULL; - xbt_lib_cursor_t cursor = NULL; - char *name = NULL; - - /* Create host at SIMIX level */ - xbt_lib_foreach(host_lib, cursor, name, host) { - if(host[SURF_HOST_LEVEL]) - SIMIX_host_create(name); - } - - /* Create storage at SIMIX level */ - xbt_lib_foreach(storage_lib, cursor, name, storage) { - if(storage[SURF_STORAGE_LEVEL]) - SIMIX_storage_create(name, storage[SURF_STORAGE_LEVEL], NULL); - } - +void SIMIX_post_create_environment(void) +{ surf_presolve(); }