Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove redundant variable.
[simgrid.git] / src / mc / mc_replay.hpp
1 /* Copyright (c) 2008-2018. 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 "xbt/base.h"
10 #include <string>
11
12 #include "src/mc/mc_config.hpp"
13
14 /** Replay path (if any) in string representation
15  *
16  *  This is using the format generated by traceToString().
17  */
18 #define MC_record_path (_sg_mc_record_path.get())
19
20 /** Whether the replay mode is enabled */
21 static inline int MC_record_replay_is_active()
22 {
23   return not MC_record_path.empty();
24 }
25
26 #endif