diff --git a/src/storm-dft/modelchecker/dft/DFTModelChecker.cpp b/src/storm-dft/modelchecker/dft/DFTModelChecker.cpp index caa78060c..8ca775432 100644 --- a/src/storm-dft/modelchecker/dft/DFTModelChecker.cpp +++ b/src/storm-dft/modelchecker/dft/DFTModelChecker.cpp @@ -412,11 +412,11 @@ namespace storm { template void DFTModelChecker::printTimings(std::ostream& os) { os << "Times:" << std::endl; - os << "Exploration:\t" << explorationTimer.getTimeSeconds() << "s" << std::endl; - os << "Building:\t" << buildingTimer.getTimeSeconds() << "s" << std::endl; - os << "Bisimulation:\t" << bisimulationTimer.getTimeSeconds() << "s" << std::endl; - os << "Modelchecking:\t" << modelCheckingTimer.getTimeSeconds() << "s" << std::endl; - os << "Total:\t\t" << totalTimer.getTimeSeconds() << "s" << std::endl; + os << "Exploration:\t" << explorationTimer.getTimeInSeconds() << "s" << std::endl; + os << "Building:\t" << buildingTimer.getTimeInSeconds() << "s" << std::endl; + os << "Bisimulation:\t" << bisimulationTimer.getTimeInSeconds() << "s" << std::endl; + os << "Modelchecking:\t" << modelCheckingTimer.getTimeInSeconds() << "s" << std::endl; + os << "Total:\t\t" << totalTimer.getTimeInSeconds() << "s" << std::endl; } template