Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
If --cfg=model-check:2 was passed, use a DFS exploration.
[simgrid.git] / src / mc / mc_request.c
index 3a7e5f5..970800c 100644 (file)
@@ -2,6 +2,9 @@
 
 int MC_request_depend(smx_req_t r1, smx_req_t r2)
 {
+  if(_surf_do_model_check == 2)
+    return TRUE;
+
   if (r1->issuer == r2->issuer)
     return FALSE;