X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5954f11308de69ea37c6f6fdd993925f90749984..c0afa7c6bc6b4f8a6e31fc6e1c6ca57a701ebe4b:/src/mc/mc_compare.cpp diff --git a/src/mc/mc_compare.cpp b/src/mc/mc_compare.cpp index 22dbfaf170..9874969b4c 100644 --- a/src/mc/mc_compare.cpp +++ b/src/mc/mc_compare.cpp @@ -15,7 +15,7 @@ #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/LivenessChecker.hpp" #include "src/mc/mc_private.h" #include "src/mc/mc_smx.h" #include "src/mc/mc_dwarf.hpp" @@ -64,8 +64,6 @@ struct ComparisonState { using simgrid::mc::ComparisonState; -extern "C" { - /************************** Snapshot comparison *******************************/ /******************************************************************************/ @@ -348,31 +346,13 @@ static int compare_local_variables(int process_index, return 0; } -int snapshot_compare(void *state1, void *state2) +namespace simgrid { +namespace mc { + +int snapshot_compare(int num1, simgrid::mc::Snapshot* s1, int num2, simgrid::mc::Snapshot* s2) { simgrid::mc::Process* process = &mc_model_checker->process(); - simgrid::mc::Snapshot* s1; - simgrid::mc::Snapshot* s2; - int num1, num2; - - if (_sg_mc_liveness) { /* Liveness MC */ - s1 = ((simgrid::mc::VisitedPair*) state1)->graph_state->system_state; - s2 = ((simgrid::mc::VisitedPair*) state2)->graph_state->system_state; - num1 = ((simgrid::mc::VisitedPair*) state1)->num; - num2 = ((simgrid::mc::VisitedPair*) state2)->num; - }else if (_sg_mc_termination) { /* Non-progressive cycle MC */ - s1 = ((mc_state_t) state1)->system_state; - s2 = ((mc_state_t) state2)->system_state; - num1 = ((mc_state_t) state1)->num; - num2 = ((mc_state_t) state2)->num; - } else { /* Safety or comm determinism MC */ - s1 = ((simgrid::mc::VisitedState*) state1)->system_state; - s2 = ((simgrid::mc::VisitedState*) state2)->system_state; - num1 = ((simgrid::mc::VisitedState*) state1)->num; - num2 = ((simgrid::mc::VisitedState*) state2)->num; - } - int errors = 0; int res_init; @@ -560,7 +540,7 @@ int snapshot_compare(void *state1, void *state2) #endif return errors > 0 || hash_result; - } } +}