Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
model-checker : update chord example for exhaustive exploration with MC
[simgrid.git] / include / simgrid / modelchecker.h
index 5cffc94..376ab92 100644 (file)
 #ifdef HAVE_MC
 
 extern int _sg_do_model_check; /* please don't use directly: we inline MC_is_active, but that's what you should use */
+extern int _sg_mc_visited;
 
 #define MC_is_active() _sg_do_model_check
+#define MC_visited_reduction() _sg_mc_visited
 
 XBT_PUBLIC(void) MC_assert(int);
 XBT_PUBLIC(int) MC_random(int min, int max);
@@ -29,6 +31,7 @@ XBT_PUBLIC(void) MC_cut(void);
 
 #define MC_assert(a) xbt_assert(a)
 #define MC_is_active() 0
+#define MC_visited_reduction() 0
 
 #endif