From 35d7f70ad564c6b78df7a4387d2d68d23d92e677 Mon Sep 17 00:00:00 2001 From: TimQu Date: Wed, 4 Jan 2017 12:54:47 +0100 Subject: [PATCH] more output for benchmarking --- .../multiobjective/pcaa/SparsePcaaParetoQuery.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/storm/modelchecker/multiobjective/pcaa/SparsePcaaParetoQuery.cpp b/src/storm/modelchecker/multiobjective/pcaa/SparsePcaaParetoQuery.cpp index 639589592..f709e1caf 100644 --- a/src/storm/modelchecker/multiobjective/pcaa/SparsePcaaParetoQuery.cpp +++ b/src/storm/modelchecker/multiobjective/pcaa/SparsePcaaParetoQuery.cpp @@ -53,11 +53,12 @@ namespace storm { template void SparsePcaaParetoQuery::exploreSetOfAchievablePoints() { - + std::cout << std::endl; //First consider the objectives individually for(uint_fast64_t objIndex = 0; objIndexobjectives.size() && !this->maxStepsPerformed(); ++objIndex) { WeightVector direction(this->objectives.size(), storm::utility::zero()); direction[objIndex] = storm::utility::one(); + std::cout << "STATISTICS_CURRPREC_CURRSTEPS;" << "\\infty" << ";" << this->refinementSteps.size() << std::endl; this->performRefinementStep(std::move(direction)); } @@ -81,6 +82,7 @@ namespace storm { return; } STORM_LOG_DEBUG("Current precision of the approximation of the pareto curve is ~" << storm::utility::convertNumber(farestDistance)); + std::cout << "STATISTICS_CURRPREC_CURRSTEPS;" << storm::utility::convertNumber(farestDistance) << ";" << this->refinementSteps.size() << std::endl; WeightVector direction = underApproxHalfspaces[farestHalfspaceIndex].normalVector(); this->performRefinementStep(std::move(direction)); }