From: Ehsan Azimi Date: Tue, 1 Dec 2020 07:52:43 +0000 (+0100) Subject: mcapi::get().request_to_string() called in LivenessChecker::replay() and LivenessChec... X-Git-Tag: v3.26~72^2^2~1 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/5ad0cdd7e1ee93bd0bdbc21d071f17f43d3f353b mcapi::get().request_to_string() called in LivenessChecker::replay() and LivenessChecker::run() --- diff --git a/src/mc/checker/LivenessChecker.cpp b/src/mc/checker/LivenessChecker.cpp index 34bdcbc588..07a6bb0e7f 100644 --- a/src/mc/checker/LivenessChecker.cpp +++ b/src/mc/checker/LivenessChecker.cpp @@ -154,7 +154,7 @@ void LivenessChecker::replay() /* Debug information */ XBT_DEBUG("Replay (depth = %d) : %s (%p)", depth, - request_to_string(req, req_num, simgrid::mc::RequestType::simix).c_str(), state.get()); + mcapi::get().request_to_string(req, req_num, simgrid::mc::RequestType::simix).c_str(), state.get()); this->get_session().execute(state->transition_); } @@ -387,7 +387,7 @@ void LivenessChecker::run() fflush(dot_output); } - XBT_DEBUG("Execute: %s", request_to_string(req, req_num, RequestType::simix).c_str()); + XBT_DEBUG("Execute: %s", mcapi::get().request_to_string(req, req_num, RequestType::simix).c_str()); /* Update stats */ mc_model_checker->executed_transitions++;