Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Sonar...
[simgrid.git] / src / mc / api / strategy / BasicStrategy.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 #ifndef SIMGRID_MC_BASICSTRATEGY_HPP
7 #define SIMGRID_MC_BASICSTRATEGY_HPP
8
9 namespace simgrid::mc {
10
11 /** Basic MC guiding class which corresponds to no guide at all (random choice) */
12 class BasicStrategy : public Strategy {
13 public:
14   BasicStrategy()                     = default;
15   ~BasicStrategy() override           = default;
16   BasicStrategy(const BasicStrategy&) = delete;
17   BasicStrategy& operator=(const BasicStrategy&)
18   { /* nothing to copy over while cloning */
19     return *this;
20   }
21
22   std::pair<aid_t, int> next_transition() const override
23   {
24     for (auto const& [aid, actor] : actors_to_run_) {
25       /* Only consider actors (1) marked as interleaving by the checker and (2) currently enabled in the application */
26       if (not actor.is_todo() || not actor.is_enabled() || actor.is_done()) {
27         continue;
28       }
29
30       return std::make_pair(aid, 1);
31     }
32     return std::make_pair(-1, 0);
33   }
34   void execute_next(aid_t aid, RemoteApp& app) override { return; }
35
36   void consider_best() override
37   {
38     for (auto& [_, actor] : actors_to_run_) {
39       if (actor.is_todo())
40         return;
41       if (actor.is_enabled() and not actor.is_done()) {
42         actor.mark_todo();
43         return;
44       }
45     }
46   }
47 };
48
49 } // namespace simgrid::mc
50
51 #endif