X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/eb92e377b2afbcdaae55d0819b5c226091d25d49..f96797fbc8f3a5f6b0d26fbf899ff25a75323f56:/src/mc/compare.cpp diff --git a/src/mc/compare.cpp b/src/mc/compare.cpp index aad1013626..0c31ffd097 100644 --- a/src/mc/compare.cpp +++ b/src/mc/compare.cpp @@ -1382,14 +1382,12 @@ int snapshot_compare(Snapshot* s1, Snapshot* s2) RemoteClient* process = &mc_model_checker->process(); - if (_sg_mc_hash) { - if (s1->hash_ != s2->hash_) { - XBT_VERB("(%d - %d) Different hash: 0x%" PRIx64 "--0x%" PRIx64, s1->num_state_, s2->num_state_, s1->hash_, - s2->hash_); - return 1; + if (s1->hash_ != s2->hash_) { + XBT_VERB("(%d - %d) Different hash: 0x%" PRIx64 "--0x%" PRIx64, s1->num_state_, s2->num_state_, s1->hash_, + s2->hash_); + return 1; } else XBT_VERB("(%d - %d) Same hash: 0x%" PRIx64, s1->num_state_, s2->num_state_, s1->hash_); - } /* Compare enabled processes */ if (s1->enabled_processes_ != s2->enabled_processes_) {