Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cc1bcd6534268c51f7178189f9bffc65b803584a
[simgrid.git] / src / mc / transition / TransitionActorJoin.cpp
1 /* Copyright (c) 2015-2022. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "src/mc/transition/TransitionActorJoin.hpp"
7 #include "simgrid/config.h"
8 #include "xbt/asserts.h"
9 #include "xbt/string.hpp"
10 #if SIMGRID_HAVE_MC
11 #include "src/mc/ModelChecker.hpp"
12 #include "src/mc/api/RemoteApp.hpp"
13 #include "src/mc/api/State.hpp"
14 #endif
15
16 #include <sstream>
17
18 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_trans_actorlifecycle, mc_transition,
19                                 "Logging specific to MC transitions about actors' lifecycle: joining, ending");
20
21 namespace simgrid::mc {
22
23 ActorJoinTransition::ActorJoinTransition(aid_t issuer, int times_considered, std::stringstream& stream)
24     : Transition(Type::ACTOR_JOIN, issuer, times_considered)
25 {
26   xbt_assert(stream >> target_ >> timeout_);
27   XBT_DEBUG("ActorJoinTransition target:%ld, %s ", target_, (timeout_ ? "timeout" : "no-timeout"));
28 }
29 std::string ActorJoinTransition::to_string(bool verbose) const
30 {
31   return xbt::string_printf("ActorJoin(target %ld, %s)", target_, (timeout_ ? "timeout" : "no timeout"));
32 }
33 bool ActorJoinTransition::depends(const Transition* other) const
34 {
35   // Joining is indep with any other transitions:
36   // - It is only enabled once the target ends, and after this point it's enabled no matter what
37   // - Other joins don't affect it, and it does not impact on the enabledness of any other transition
38   return false;
39 }
40
41 } // namespace simgrid::mc