Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
eced3ecc0f1f9a2624bad805dda3913aa30fbce0
[simgrid.git] / src / mc / VisitedState.hpp
1 /* Copyright (c) 2007-2016. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #ifndef SIMGRID_MC_VISITED_STATE_HPP
8 #define SIMGRID_MC_VISITED_STATE_HPP
9
10 #include <cstddef>
11
12 #include <memory>
13
14 #include "src/mc/mc_snapshot.h"
15 #include "src/mc/mc_state.h"
16
17 namespace simgrid {
18 namespace mc {
19
20 struct XBT_PRIVATE VisitedState {
21   std::shared_ptr<simgrid::mc::Snapshot> system_state = nullptr;
22   std::size_t heap_bytes_used = 0;
23   int actors_count                                    = 0;
24   int num = 0;
25   int other_num = 0; // dot_output for
26
27   VisitedState(unsigned long state_number);
28   ~VisitedState();
29 };
30
31 class XBT_PRIVATE VisitedStates {
32   std::vector<std::unique_ptr<simgrid::mc::VisitedState>> states_;
33 public:
34   void clear() { states_.clear(); }
35   std::unique_ptr<simgrid::mc::VisitedState> addVisitedState(unsigned long state_number, simgrid::mc::State* graph_state, bool compare_snpashots);
36 private:
37   void prune();
38 };
39
40 }
41 }
42
43 #endif