Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
model-checker : test dpor without replay from initial state but with
[simgrid.git] / src / mc / mc_request.c
index 4f48449..f2956a4 100644 (file)
@@ -10,6 +10,7 @@ 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;
@@ -145,6 +146,7 @@ int MC_request_depend(smx_req_t r1, smx_req_t r2)
           && r2->comm_wait.comm->comm.dst_buff != r1->comm_test.comm->comm.src_buff)
       return FALSE;
 
+
   return TRUE;
 }