X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d34fd82d9f988a857f4f68c546400dc6637dcc41:/src/mc/mc_state.hpp..a3bd84b0137a58fad3300f954dbc43328ff1410e:/src/mc/api/State.hpp diff --git a/src/mc/mc_state.hpp b/src/mc/api/State.hpp similarity index 96% rename from src/mc/mc_state.hpp rename to src/mc/api/State.hpp index 739a40252a..acba0b99ac 100644 --- a/src/mc/mc_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/Transition.hpp" -#include "src/mc/sosp/Snapshot.hpp" +#include "src/mc/api/Transition.hpp" #include "src/mc/mc_comm_pattern.hpp" +#include "src/mc/sosp/Snapshot.hpp" namespace simgrid { namespace mc { @@ -39,7 +39,6 @@ public: std::vector> incomplete_comm_pattern_; std::vector communication_indices_; - /* Returns a positive number if there is another transition to pick, or -1 if not */ int next_transition() const; @@ -58,7 +57,7 @@ private: void copy_incomplete_comm_pattern(); void copy_index_comm_pattern(); }; -} -} +} // namespace mc +} // namespace simgrid #endif