Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use method get() instead of &* for intrusive_ptr.
[simgrid.git] / src / mc / mc_safety.hpp
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_HPP
7 #define SIMGRID_MC_SAFETY_HPP
8
9 #include "xbt/base.h"
10
11 namespace simgrid {
12 namespace mc {
13
14 enum class ReductionMode {
15   unset,
16   none,
17   dpor,
18 };
19
20 extern XBT_PRIVATE simgrid::mc::ReductionMode reduction_mode;
21 }
22 }
23
24 #endif