Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Replace todo direct access with consider methods; guided or not
[simgrid.git] / src / mc / api / guide / GuidedState.hpp
1 /* Copyright (c) 2007-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 "xbt/asserts.h"
7
8 #ifndef SIMGRID_MC_GUIDEDSTATE_HPP
9 #define SIMGRID_MC_GUIDEDSTATE_HPP
10
11 namespace simgrid::mc {
12
13 class GuidedState {
14 protected:
15   /** State's exploration status by actor. Not all the actors are there, only the ones that are ready-to-run in this
16    * state */
17   std::map<aid_t, ActorState> actors_to_run_;
18
19 public:
20   virtual std::pair<aid_t, double> next_transition() const = 0;
21   virtual void execute_next(aid_t aid, RemoteApp& app)     = 0;
22   virtual void consider_best()                             = 0;
23
24   // Mark the first enabled and not yet done transition as todo
25   // If there's already a transition marked as todo, does nothing
26   void consider_one(aid_t aid)
27   {
28     xbt_assert(actors_to_run_.at(aid).is_enabled() and not actors_to_run_.at(aid).is_done(),
29                "Tried to mark as TODO actor %ld but it is either not enabled or already done", aid);
30     actors_to_run_.at(aid).mark_todo();
31   }
32   // Matk as todo all actors enabled that are not done yet
33   void consider_all()
34   {
35     for (auto& [_, actor] : actors_to_run_)
36       if (actor.is_enabled() and not actor.is_done())
37         actor.mark_todo();
38   }
39
40   friend class State;
41 };
42
43 } // namespace simgrid::mc
44
45 #endif