diff --git a/src/storm-dyftee.cpp b/src/storm-dyftee.cpp index 97f583e28..13b43f5ff 100644 --- a/src/storm-dyftee.cpp +++ b/src/storm-dyftee.cpp @@ -15,7 +15,7 @@ * @param property PCTC formula capturing the property to check. */ template -void analyzeDFT(std::string filename, std::string property, bool symred = false, bool bisimulation = true) { +void analyzeDFT(std::string filename, std::string property, bool symred = false) { storm::settings::SettingsManager& manager = storm::settings::mutableManager(); manager.setFromString(""); @@ -49,7 +49,7 @@ void analyzeDFT(std::string filename, std::string property, bool symred = false, std::cout << "No. states (Explored): " << model->getNumberOfStates() << std::endl; std::cout << "No. transitions (Explored): " << model->getNumberOfTransitions() << std::endl; - if (bisimulation && model->isOfType(storm::models::ModelType::Ctmc)) { + if (model->isOfType(storm::models::ModelType::Ctmc)) { std::cout << "Bisimulation..." << std::endl; model = storm::performDeterministicSparseBisimulationMinimization>(model->template as>(), formulas, storm::storage::BisimulationType::Weak)->template as>(); model->printModelInformationToStream(std::cout); @@ -149,8 +149,8 @@ int main(int argc, char** argv) { std::cout << "Running " << (parametric ? "parametric " : "") << "DFT analysis on file " << filename << " with property " << pctlFormula << std::endl; if (parametric) { - analyzeDFT(filename, pctlFormula, symred, false); + analyzeDFT(filename, pctlFormula, symred); } else { - analyzeDFT(filename, pctlFormula, symred, true); + analyzeDFT(filename, pctlFormula, symred); } }