X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/dcdd12996a743f9683d12225219df583292bd25d..17288b1b642b369a5377677875d08a82d37a5f67:/src/mc/mc_state.hpp diff --git a/src/mc/mc_state.hpp b/src/mc/mc_state.hpp index 2f347e3032..7b40cd83e2 100644 --- a/src/mc/mc_state.hpp +++ b/src/mc/mc_state.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2021. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -8,7 +8,7 @@ #include "src/mc/Transition.hpp" #include "src/mc/sosp/Snapshot.hpp" -#include "src/mc/mc_pattern.hpp" +#include "src/mc/mc_comm_pattern.hpp" namespace simgrid { namespace mc { @@ -46,12 +46,13 @@ public: explicit State(unsigned long state_number); - std::size_t interleave_size() const; - void add_interleaving_set(const simgrid::kernel::actor::ActorImpl* actor) - { - this->actor_states_[actor->get_pid()].consider(); - } + std::size_t count_todo() const; + void mark_todo(const simgrid::kernel::actor::ActorImpl* actor) { this->actor_states_[actor->get_pid()].mark_todo(); } Transition get_transition() const; + +private: + void copy_incomplete_comm_pattern(); + void copy_index_comm_pattern(); }; } }