Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Correctly disable DPOR when StateEq reduction is enabled
[simgrid.git] / src / mc / mc_replay.hpp
1 /* Copyright (c) 2008-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_REPLAY_H
7 #define SIMGRID_MC_REPLAY_H
8
9 #include <string>
10
11 /** Replay path (if any) in string representation
12  *
13  *  This is using the format generated by traceToString().
14  *  Use a function to avoid static initialization order fiasco.
15  */
16 inline auto& MC_record_path()
17 {
18   static std::string value;
19   return value;
20 }
21
22 /** Whether the replay mode is enabled */
23 static inline int MC_record_replay_is_active()
24 {
25   return not MC_record_path().empty();
26 }
27
28 #endif