Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
adding sleep sets to reduction techniques
[simgrid.git] / src / mc / api / State.cpp
1 /* Copyright (c) 2008-2023. 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/api/State.hpp"
7 #include "src/mc/mc_config.hpp"
8
9 #include <boost/range/algorithm.hpp>
10
11 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_state, mc, "Logging specific to MC states");
12
13 namespace simgrid::mc {
14
15 long State::expended_states_ = 0;
16
17 State::State(const RemoteApp& remote_app) : num_(++expended_states_)
18 {
19   remote_app.get_actors_status(actors_to_run_);
20
21   transition_.reset(new Transition());
22   /* Stateful model checking */
23   if ((_sg_mc_checkpoint > 0 && (num_ % _sg_mc_checkpoint == 0)) || _sg_mc_termination) {
24     system_state_ = std::make_shared<simgrid::mc::Snapshot>(num_);
25   }
26 }
27
28 State::State(const RemoteApp& remote_app, const State* previous_state) : num_(++expended_states_)
29 {
30
31   remote_app.get_actors_status(actors_to_run_);
32
33   transition_.reset(new Transition());
34   /* Stateful model checking */
35   if ((_sg_mc_checkpoint > 0 && (num_ % _sg_mc_checkpoint == 0)) || _sg_mc_termination) {
36     system_state_ = std::make_shared<simgrid::mc::Snapshot>(num_);
37   }
38   
39   for (auto & [aid, transition] : previous_state->get_sleep_set()) {
40       
41       XBT_DEBUG("Transition >>%s<< will be explored ?", transition.to_string().c_str());
42       if (not previous_state->get_transition()->depends(&transition)) {
43               
44           sleep_set_.emplace(aid, transition);
45           if (actors_to_run_.count(aid) != 0) {
46               XBT_DEBUG("Actor %ld will not be explored, for it is in the sleep set", aid);
47
48               actors_to_run_.at(aid).mark_done();
49           }
50       }
51       else
52           XBT_DEBUG("Transition >>%s<< removed from the sleep set because it was dependent with >>%s<<", transition.to_string().c_str(), previous_state->get_transition()->to_string().c_str());
53   
54   }
55     
56 }
57     
58 std::size_t State::count_todo() const
59 {
60   return boost::range::count_if(this->actors_to_run_, [](auto& pair) { return pair.second.is_todo(); });
61 }
62
63     void State::mark_all_todo() 
64 {
65     for (auto & [aid, actor] : actors_to_run_) {
66
67         if (actor.is_enabled() and not actor.is_done() and not actor.is_todo())
68             actor.mark_todo();
69         
70     }
71 }
72     
73 Transition* State::get_transition() const
74 {
75   return transition_.get();
76 }
77
78 aid_t State::next_transition() const
79 {
80   XBT_DEBUG("Search for an actor to run. %zu actors to consider", actors_to_run_.size());
81   for (auto const& [aid, actor] : actors_to_run_) {
82     /* Only consider actors (1) marked as interleaving by the checker and (2) currently enabled in the application */
83       if (not actor.is_todo() || not actor.is_enabled() || actor.is_done()) {
84
85           if (not actor.is_todo())
86               XBT_DEBUG("Can't run actor %ld because it is not todo", aid); 
87
88           if (not actor.is_enabled())
89               XBT_DEBUG("Can't run actor %ld because it is not enabled", aid);
90
91           if (actor.is_done())
92               XBT_DEBUG("Can't run actor %ld because it has already been done", aid);
93
94           
95           continue;
96
97
98       }
99
100     return aid;
101   }
102   return -1;
103 }
104 void State::execute_next(aid_t next)
105 {
106   /* This actor is ready to be executed. Prepare its execution when simcall_handle will be called on it */
107   const unsigned times_considered = actors_to_run_.at(next).do_consider();
108
109   XBT_DEBUG("Let's run actor %ld (times_considered = %u)", next, times_considered);
110
111   Transition::executed_transitions_++;
112
113   transition_.reset(mc_model_checker->handle_simcall(next, times_considered, true));
114   mc_model_checker->wait_for_requests();
115 }
116 } // namespace simgrid::mc