Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
plug a memleak
[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
16 namespace simgrid {
17 namespace mc {
18
19 struct XBT_PRIVATE VisitedState {
20   std::shared_ptr<simgrid::mc::Snapshot> system_state = nullptr;
21   std::size_t heap_bytes_used = 0;
22   int nb_processes = 0;
23   int num = 0;
24   int other_num = 0; // dot_output for
25
26   VisitedState(unsigned long state_number);
27   ~VisitedState();
28 };
29
30 class XBT_PRIVATE VisitedStates {
31   std::vector<std::unique_ptr<simgrid::mc::VisitedState>> states_;
32 public:
33   void clear() { states_.clear(); }
34   std::unique_ptr<simgrid::mc::VisitedState> addVisitedState(unsigned long state_number, simgrid::mc::State* graph_state, bool compare_snpashots);
35 private:
36   void prune();
37 };
38
39 }
40 }
41
42 #endif