X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5787a5c839c1f49fec942290449d18b72b036d98..4b95f054f8e620b68676f19b9db38002889538c6:/src/mc/mc_compare.cpp diff --git a/src/mc/mc_compare.cpp b/src/mc/mc_compare.cpp index 6d208ddbd4..06192f23c3 100644 --- a/src/mc/mc_compare.cpp +++ b/src/mc/mc_compare.cpp @@ -15,7 +15,6 @@ #include "src/internal_config.h" #include "src/mc/mc_forward.hpp" #include "src/mc/mc_safety.h" -#include "src/mc/mc_liveness.h" #include "src/mc/mc_private.h" #include "src/mc/mc_smx.h" #include "src/mc/mc_dwarf.hpp" @@ -542,23 +541,5 @@ int snapshot_compare(int num1, simgrid::mc::Snapshot* s1, int num2, simgrid::mc: return errors > 0 || hash_result; } -int snapshot_compare(mc_state_t state1, mc_state_t state2) -{ - simgrid::mc::Snapshot* s1 = state1->system_state; - simgrid::mc::Snapshot* s2 = state2->system_state; - int num1 = state1->num; - int num2 = state2->num; - return snapshot_compare(num1, s1, num2, s2); -} - -int snapshot_compare(simgrid::mc::VisitedState* state1, simgrid::mc::VisitedState* state2) -{ - simgrid::mc::Snapshot* s1 = state1->system_state; - simgrid::mc::Snapshot* s2 = state2->system_state; - int num1 = state1->num; - int num2 = state2->num; - return snapshot_compare(num1, s1, num2, s2); -} - } }