X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7f4f03348bd07609e258eb3b545bdafc2c881847..17404896a6c566afdcdd0034884f234566b1d452:/src/mc/mc_hash.cpp diff --git a/src/mc/mc_hash.cpp b/src/mc/mc_hash.cpp index ba391fab58..1847462517 100644 --- a/src/mc/mc_hash.cpp +++ b/src/mc/mc_hash.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2014-2015. The SimGrid Team. +/* Copyright (c) 2014-2018. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -8,9 +8,12 @@ #include -#include "src/mc/mc_private.h" +#include "xbt/log.h" + #include "mc/datatypes.h" #include "src/mc/mc_hash.hpp" +#include "src/mc/mc_private.hpp" +#include "src/mc/mc_snapshot.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() {