X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/96e88da53587bca891dce3ddb7772eff544e96be..9438858cc5e254b4b2c2a19bcc9b1e93302831ba:/src/surf/surf.c diff --git a/src/surf/surf.c b/src/surf/surf.c index a37608e20a..057a81e407 100644 --- a/src/surf/surf.c +++ b/src/surf/surf.c @@ -121,6 +121,9 @@ s_surf_model_description_t surf_network_model_description[] = { {"LV08", "Realistic network model with lmm_solve and these correction factors: latency*=10.4, bandwidth*=.92, S=8775", NULL, surf_network_model_init_LegrandVelho}, + {"LV08_im", + "Realistic network model with IMPROVED ACTION MANAGEMENT and these correction factors: latency*=10.4, bandwidth*=.92, S=8775", + NULL, im_surf_network_model_init_LegrandVelho}, {"SMPI", "Realistic network model with lmm_solve and correction factors on three intervals (< 1KiB, < 64 KiB, >= 64 KiB)", NULL, surf_network_model_init_SMPI}, @@ -306,6 +309,7 @@ void surf_init(int *argc, char **argv) history = tmgr_history_new(); surf_config_init(argc, argv); + surf_action_init(); if (MC_IS_ENABLED) MC_memory_init(); } @@ -359,6 +363,7 @@ void surf_exit(void) tmgr_history_free(history); history = NULL; } + surf_action_exit(); if (surf_path) xbt_dynar_free(&surf_path); @@ -463,6 +468,10 @@ double surf_solve(double max_date) xbt_dynar_foreach(model_list, iter, model) model->model_private->update_actions_state(NOW, min); +#ifdef HAVE_TRACING + TRACE_paje_dump_buffer (0); +#endif + return min; }