Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Integrate the (WIP) hashing logic in the Snapshot object
[simgrid.git] / src / mc / mc_hash.cpp
diff --git a/src/mc/mc_hash.cpp b/src/mc/mc_hash.cpp
deleted file mode 100644 (file)
index ba391fa..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-/* Copyright (c) 2014-2015. The SimGrid Team.
- * All rights reserved.                                                     */
-
-/* This program is free software; you can redistribute it and/or modify it
- * under the terms of the license (GNU LGPL) which comes with this package. */
-
-#include <cinttypes>
-
-#include <cstdint>
-
-#include "src/mc/mc_private.h"
-#include "mc/datatypes.h"
-#include "src/mc/mc_hash.hpp"
-#include <mc/mc.h>
-
-XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_hash, mc, "Logging specific to mc_hash");
-
-namespace simgrid {
-namespace mc {
-
-namespace {
-
-class djb_hash {
-  hash_type state_ = 5381ll;
-public:
-  template<class T>
-  void update(T& x)
-  {
-    state_ = (state_ << 5) + state_ + (std::uint64_t) value;
-  }
-  hash_type value()
-  {
-    return state_;
-  }
-};
-
-}
-
-hash_type hash(Snapshot const& snapshot)
-{
-  XBT_DEBUG("START hash %i", snapshot.num_state);
-  djb_hash hash;
-  // TODO, nb_processes
-  // TODO, heap_bytes_used
-  // TODO, root variables
-  // TODO, basic stack frame information
-  // TODO, stack frame local variables
-  XBT_DEBUG("END hash %i", snapshot.num_state);
-  return hash.value();
-}
-
-}
-}