Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
typos
authorMartin Quinson <martin.quinson@loria.fr>
Mon, 10 Apr 2017 23:21:38 +0000 (01:21 +0200)
committerMartin Quinson <martin.quinson@loria.fr>
Mon, 10 Apr 2017 23:28:37 +0000 (01:28 +0200)
src/mc/checker/SafetyChecker.cpp
src/mc/mc_request.cpp

index d81492c..ca58cfc 100644 (file)
@@ -248,7 +248,7 @@ void SafetyChecker::backtrack()
         } else {
 
           const smx_actor_t previous_issuer = MC_smx_simcall_get_issuer(&prev_state->internal_req);
-          XBT_DEBUG("Simcall %d, process %lu (state %d) and simcall %d, process %lu (state %d) are independant",
+          XBT_DEBUG("Simcall %d, process %lu (state %d) and simcall %d, process %lu (state %d) are independent",
                     req->call, issuer->pid, state->num,
                     prev_state->internal_req.call,
                     previous_issuer->pid,
index 056aa0b..1d3b8c6 100644 (file)
@@ -142,7 +142,7 @@ bool request_depend(smx_simcall_t r1, smx_simcall_t r2)
   if (r1->issuer == r2->issuer)
     return false;
 
-  /* Wait with timeout transitions are not considered by the independence theorem, thus we consider them as dependant with all other transitions */
+  /* Wait with timeout transitions are not considered by the independence theorem, thus we consider them as dependent with all other transitions */
   if ((r1->call == SIMCALL_COMM_WAIT && simcall_comm_wait__get__timeout(r1) > 0)
       || (r2->call == SIMCALL_COMM_WAIT
           && simcall_comm_wait__get__timeout(r2) > 0))