X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ac679d5e69b1eb25e3f82be198607593407e7fc5..22cae46149e1fb4988ad9e46060c3e7ecd4e0e44:/src/mc/mc_hash.cpp diff --git a/src/mc/mc_hash.cpp b/src/mc/mc_hash.cpp index 7a0249db13..d537cfef30 100644 --- a/src/mc/mc_hash.cpp +++ b/src/mc/mc_hash.cpp @@ -8,9 +8,12 @@ #include -#include "mc_private.h" +#include "xbt/log.h" + +#include "src/mc/mc_private.h" +#include "src/mc/mc_snapshot.h" #include "mc/datatypes.h" -#include "mc_hash.hpp" +#include "src/mc/mc_hash.hpp" #include XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_hash, mc, "Logging specific to mc_hash"); @@ -21,12 +24,13 @@ namespace mc { namespace { class djb_hash { - hash_type state_ = 5381ll; + hash_type state_ = 5381LL; + public: template void update(T& x) { - state_ = (state_ << 5) + state_ + (std::uint64_t) value; + state_ = (state_ << 5) + state_ + state_; } hash_type value() {