X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c6b1e0d38db0abceafffdc80987bd3d7f92c12c2..786b8a177574a5523973881724dbebb103a73ed5:/src/mc/mc_state.h diff --git a/src/mc/mc_state.h b/src/mc/mc_state.h index a2bd0ed170..6955b68a6c 100644 --- a/src/mc/mc_state.h +++ b/src/mc/mc_state.h @@ -121,7 +121,7 @@ struct XBT_PRIVATE State { int num = 0; /** State's exploration status by process */ - std::vector processStates; + std::vector actorStates; Transition transition; @@ -148,8 +148,8 @@ struct XBT_PRIVATE State { State(unsigned long state_number); std::size_t interleaveSize() const; - void interleave(smx_actor_t process) { - this->processStates[process->pid].consider(); + void interleave(smx_actor_t actor) { + this->actorStates[actor->pid].consider(); } Transition getTransition() const; };