X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b7ccbeaf200b74493e2060045c23d47fd01048d9..992bc1ec57d376cf14b124ea21b58b30f1e162f9:/src/mc/VisitedState.hpp?ds=sidebyside diff --git a/src/mc/VisitedState.hpp b/src/mc/VisitedState.hpp index 33f3d1ae94..50ef93f0b2 100644 --- a/src/mc/VisitedState.hpp +++ b/src/mc/VisitedState.hpp @@ -18,11 +18,11 @@ class XBT_PRIVATE VisitedState { public: std::shared_ptr system_state = nullptr; std::size_t heap_bytes_used = 0; - int actors_count = 0; - long num = 0; // unique id of that state in the storage of all stored IDs + int actor_count_; + long num; // unique id of that state in the storage of all stored IDs long original_num = -1; // num field of the VisitedState to which I was declared equal to (used for dot_output) - explicit VisitedState(unsigned long state_number); + explicit VisitedState(unsigned long state_number, unsigned int actor_count); }; class XBT_PRIVATE VisitedStates {