X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d6a2b0f0aba81936ce0cc2fdf971d0a40ed0a1a4..0e082b64a6f2a3ac72374a07cf0351734c1a4237:/src/mc/api/State.hpp diff --git a/src/mc/api/State.hpp b/src/mc/api/State.hpp index 7d47e41bdf..bc5f7a0816 100644 --- a/src/mc/api/State.hpp +++ b/src/mc/api/State.hpp @@ -6,9 +6,9 @@ #ifndef SIMGRID_MC_STATE_HPP #define SIMGRID_MC_STATE_HPP -#include "src/mc/api/Transition.hpp" -#include "src/mc/mc_comm_pattern.hpp" +#include "src/mc/mc_pattern.hpp" #include "src/mc/sosp/Snapshot.hpp" +#include "src/mc/transition/Transition.hpp" namespace simgrid { namespace mc { @@ -17,7 +17,7 @@ namespace mc { class XBT_PRIVATE State : public xbt::Extendable { static long expended_states_; /* Count total amount of states, for stats */ - /* Outgoing transition: what was the last transition that we took to leave this state? Useful for replay */ + /* Outgoing transition: what was the last transition that we took to leave this state? */ std::unique_ptr transition_; public: @@ -29,9 +29,6 @@ public: /** State's exploration status by process */ std::vector actor_states_; - /** The simcall which was executed, going out of that state */ - s_smx_simcall executed_req_; - /** Snapshot of system state (if needed) */ std::shared_ptr system_state_;