X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5a875f9205d14b21c58c948ef2c1a80abf1c47d5..87b89191e194d0e9080c102e309db6c5d45d37a0:/src/surf/surf.c diff --git a/src/surf/surf.c b/src/surf/surf.c index 0644b8bcf0..26bfeeaf0f 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}, @@ -463,10 +466,14 @@ 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; } -double surf_get_clock(void) +XBT_INLINE double surf_get_clock(void) { return NOW; }