Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Fix the hash computation
[simgrid.git] / src / mc / mc_hash.cpp
index 7a0249d..b260507 100644 (file)
@@ -8,9 +8,9 @@
 
 #include <cstdint>
 
-#include "mc_private.h"
+#include "src/mc/mc_private.h"
 #include "mc/datatypes.h"
-#include "mc_hash.hpp"
+#include "src/mc/mc_hash.hpp"
 #include <mc/mc.h>
 
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_hash, mc, "Logging specific to mc_hash");
@@ -26,7 +26,7 @@ public:
   template<class T>
   void update(T& x)
   {
-    state_ = (state_ << 5) + state_ + (std::uint64_t) value;
+    state_ = (state_ << 5) + state_ + state_;
   }
   hash_type value()
   {