X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4c3d4cccb2f5fb04a2bc157ca321e107711cca53..ac679d5e69b1eb25e3f82be198607593407e7fc5:/src/mc/ModelChecker.hpp diff --git a/src/mc/ModelChecker.hpp b/src/mc/ModelChecker.hpp index 846ea2ba96..f8b0982139 100644 --- a/src/mc/ModelChecker.hpp +++ b/src/mc/ModelChecker.hpp @@ -14,8 +14,8 @@ #include #include "mc_forward.hpp" -#include "mc_process.h" -#include "PageStore.hpp" +#include "mc/Process.hpp" +#include "mc/PageStore.hpp" #include "mc_protocol.h" namespace simgrid { @@ -52,6 +52,11 @@ public: return page_store_; } const char* get_host_name(const char* name); + + bool is_important_snapshot(Snapshot const& snapshot) const + { + return &snapshot == mc_model_checker->parent_snapshot_; + } }; }