Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
mc: Also remove the process_index
[simgrid.git] / src / mc / mc_hash.cpp
index 7cdd3fa07300856b299f96d1a86822b710551966..8c2313150958eba96d1079b0e4016ad9a0e5b8f1 100644 (file)
@@ -41,7 +41,7 @@ public:
 
 hash_type hash(Snapshot const& snapshot)
 {
-  XBT_DEBUG("START hash %i", snapshot.num_state);
+  XBT_DEBUG("START hash %i", snapshot.num_state_);
   djb_hash hash;
   // TODO:
   // * nb_processes
@@ -49,7 +49,7 @@ hash_type hash(Snapshot const& snapshot)
   // * root variables
   // * basic stack frame information
   // * stack frame local variables
-  XBT_DEBUG("END hash %i", snapshot.num_state);
+  XBT_DEBUG("END hash %i", snapshot.num_state_);
   return hash.value();
 }