Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
useless cosmetics around NS3 long routes
[simgrid.git] / src / mc / mc_safety.h
1 /* Copyright (c) 2007-2017. 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_SAFETY_H
7 #define SIMGRID_MC_SAFETY_H
8
9 #include <stdint.h>
10
11 #include <memory>
12
13 #include <simgrid_config.h>
14
15 #include <xbt/base.h>
16
17 #include "src/mc/mc_forward.hpp"
18 #include "src/mc/mc_state.h"
19
20 namespace simgrid {
21 namespace mc {
22
23 enum class ReductionMode {
24   unset,
25   none,
26   dpor,
27 };
28
29 extern XBT_PRIVATE simgrid::mc::ReductionMode reduction_mode;
30
31 }
32 }
33
34 #endif