Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'add_missing_comm_python_bindings' into 'master'
[simgrid.git] / src / mc / mc_pattern.hpp
1 /* Copyright (c) 2007-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 #ifndef SIMGRID_MC_PATTERN_H
7 #define SIMGRID_MC_PATTERN_H
8
9 #include "src/kernel/activity/CommImpl.hpp"
10 #include "src/mc/remote/RemotePtr.hpp"
11
12 namespace simgrid {
13 namespace mc {
14
15 /* On every state, each actor has an entry of the following type.
16  * This represents both the actor and its transition because
17  *   an actor cannot have more than one enabled transition at a given time.
18  */
19 class ActorState {
20   /* Possible exploration status of an actor transition in a state.
21    * Either the checker did not consider the transition, or it was considered and still to do, or considered and done.
22    */
23   enum class InterleavingType {
24     /** This actor transition is not considered by the checker (yet?) */
25     disabled = 0,
26     /** The checker algorithm decided that this actor transitions should be done at some point */
27     todo,
28     /** The checker algorithm decided that this should be done, but it was done in the meanwhile */
29     done,
30   };
31
32   /** Exploration control information */
33   InterleavingType state_ = InterleavingType::disabled;
34
35   /** Number of times that the process was considered to be executed */
36   unsigned int times_considered_ = 0;
37
38 public:
39   unsigned int get_times_considered() const { return times_considered_; }
40   unsigned int get_times_considered_and_inc() { return times_considered_++; }
41
42   bool is_disabled() const { return this->state_ == InterleavingType::disabled; }
43   bool is_done() const { return this->state_ == InterleavingType::done; }
44   bool is_todo() const { return this->state_ == InterleavingType::todo; }
45   /** Mark that we should try executing this process at some point in the future of the checker algorithm */
46   void mark_todo()
47   {
48     this->state_            = InterleavingType::todo;
49     this->times_considered_ = 0;
50   }
51   void set_done() { this->state_ = InterleavingType::done; }
52 };
53
54 } // namespace mc
55 } // namespace simgrid
56
57 #endif