Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
argh, linkchecker needs --check-extern to be really useful
[simgrid.git] / src / mc / mc_hash.hpp
1 /* Copyright (c) 2007-2019. 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 {
13 namespace mc {
14
15 typedef std::uint64_t hash_type;
16
17 XBT_PRIVATE hash_type hash(simgrid::mc::Snapshot const& snapshot);
18
19 }
20 }
21
22 #endif