X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5f2e051a9bb2b088d3b3543982d3a244b7b7b1c4..4e2e0c7b210a6e58e5f73abd197c8accfd215a0d:/src/mc/explo/CommunicationDeterminismChecker.cpp diff --git a/src/mc/explo/CommunicationDeterminismChecker.cpp b/src/mc/explo/CommunicationDeterminismChecker.cpp index f7def5a155..67fd514f4c 100644 --- a/src/mc/explo/CommunicationDeterminismChecker.cpp +++ b/src/mc/explo/CommunicationDeterminismChecker.cpp @@ -319,14 +319,14 @@ void CommDetExtension::handle_comm_pattern(const Transition* transition) } */ -Exploration* create_communication_determinism_checker(const std::vector& args) +Exploration* create_communication_determinism_checker(const std::vector& args, bool with_dpor) { CommDetExtension::EXTENSION_ID = simgrid::mc::Exploration::extension_create(); StateCommDet::EXTENSION_ID = simgrid::mc::State::extension_create(); XBT_DEBUG("********* Start communication determinism verification *********"); - auto base = new DFSExplorer(args); + auto base = new DFSExplorer(args, with_dpor); auto extension = new CommDetExtension(*base); DFSExplorer::on_exploration_start([extension](RemoteApp&) {