Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[project-description] Fix extraction of the ns-3 version.
[simgrid.git] / src / mc / mc_safety.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_SAFETY_HPP
7 #define SIMGRID_MC_SAFETY_HPP
8
9 #include "xbt/base.h"
10
11 namespace simgrid::mc {
12
13 enum class ReductionMode {
14   unset,
15   none,
16   dpor,
17 };
18
19 extern XBT_PRIVATE simgrid::mc::ReductionMode reduction_mode;
20 } // namespace simgrid::mc
21
22 #endif