Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix non-MC builds
authorMartin Quinson <martin.quinson@loria.fr>
Sat, 25 Jul 2015 09:37:33 +0000 (11:37 +0200)
committerMartin Quinson <martin.quinson@loria.fr>
Sat, 25 Jul 2015 09:37:37 +0000 (11:37 +0200)
My implmentation of random for non-MC may be seen as a very partial :)
But I'm affraid of breaking some tesh out there with a real random.

src/mc/mc_base.cpp

index 521b96a..c24d0f2 100644 (file)
@@ -32,11 +32,15 @@ XBT_LOG_NEW_CATEGORY(mc, "All MC categories");
 
 int MC_random(int min, int max)
 {
+#ifdef HAVE_MC
   xbt_assert(mc_mode != MC_MODE_SERVER);
   /* TODO, if the MC is disabled we do not really need to make a simcall for
    * this :) */
   /* FIXME: return mc_current_state->executed_transition->random.value; */
   return simcall_mc_random(min, max);
+#else
+  return min;
+#endif
 }
 
 void MC_wait_for_requests(void)