From b8ce2f8fe4d1900c1bd359d697f4b23d7c3987c7 Mon Sep 17 00:00:00 2001 From: Matthias Volk Date: Wed, 22 Jul 2020 14:47:51 +0200 Subject: [PATCH] Disable DC for relevant events per default --- src/dft/analysis.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dft/analysis.cpp b/src/dft/analysis.cpp index fd15ea7..ed8033f 100644 --- a/src/dft/analysis.cpp +++ b/src/dft/analysis.cpp @@ -22,6 +22,6 @@ std::vector analyzeDFT(storm::storage::DFT const& dft, std // Define python bindings void define_analysis(py::module& m) { - m.def("analyze_dft", &analyzeDFT, "Analyze the DFT", py::arg("dft"), py::arg("properties"), py::arg("symred")=true, py::arg("allow_modularisation")=false, py::arg("relevant_events")=std::set(), py::arg("dc_for_relevant")=true); + m.def("analyze_dft", &analyzeDFT, "Analyze the DFT", py::arg("dft"), py::arg("properties"), py::arg("symred")=true, py::arg("allow_modularisation")=false, py::arg("relevant_events")=std::set(), py::arg("dc_for_relevant")=false); }