X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2a15998fc166600c0a52d616a0d4c09bf873cf83..9ca5b959b0e1b164dec1c6872785df7f91c646c7:/src/mc/mc_state.hpp diff --git a/src/mc/mc_state.hpp b/src/mc/mc_state.hpp index 9e70190507..c99c21181c 100644 --- a/src/mc/mc_state.hpp +++ b/src/mc/mc_state.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2020. 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. */ @@ -124,7 +124,10 @@ public: explicit State(unsigned long state_number); std::size_t interleave_size() const; - void add_interleaving_set(smx_actor_t actor) { this->actor_states_[actor->get_pid()].consider(); } + void add_interleaving_set(const simgrid::kernel::actor::ActorImpl* actor) + { + this->actor_states_[actor->get_pid()].consider(); + } Transition get_transition() const; }; }