Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[project-description] Fix extraction of the ns-3 version.
[simgrid.git] / src / mc / mc_hash.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_HASH_HPP
7 #define SIMGRID_MC_HASH_HPP
8
9 #include "xbt/base.h"
10 #include "src/mc/mc_forward.hpp"
11
12 namespace simgrid::mc {
13
14 using hash_type = std::uint64_t;
15
16 XBT_PRIVATE hash_type hash(simgrid::mc::Snapshot const& snapshot);
17
18 } // namespace simgrid::mc
19
20 #endif