X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b08e93079ce626559903d763ea5c79d3de220a24..52fd4a51d500956bc7103d0f778b765bcdef2948:/src/mc/mc_base.cpp diff --git a/src/mc/mc_base.cpp b/src/mc/mc_base.cpp index bc0e31470c..c0f9ab9f14 100644 --- a/src/mc/mc_base.cpp +++ b/src/mc/mc_base.cpp @@ -177,12 +177,6 @@ int MC_request_is_visible(smx_simcall_t req) ; } -int MC_random(int min, int max) -{ - /*FIXME: return mc_current_state->executed_transition->random.value; */ - return simcall_mc_random(min, max); -} - static int prng_random(int min, int max) { unsigned long output_size = ((unsigned long) max - (unsigned long) min) + 1;