Browse Source

ParetoCourveCheckResult: Print approx. value in case of exact checking.

tempestpy_adaptions
Tim Quatmann 6 years ago
parent
commit
e92966c3e4
  1. 18
      src/storm/modelchecker/results/ParetoCurveCheckResult.cpp

18
src/storm/modelchecker/results/ParetoCurveCheckResult.cpp

@ -65,13 +65,25 @@ namespace storm {
out << points.size() << " Pareto optimal points found:" << std::endl;
for(auto const& p : points) {
out << " (";
for(auto it = p.begin(); it != p.end(); ++it){
for (auto it = p.begin(); it != p.end(); ++it){
if (it != p.begin()){
out << ", ";
}
out << std::setw(storm::NumberTraits<ValueType>::IsExact ? 20 : 11) << *it;
}
out << " )";
if (storm::NumberTraits<ValueType>::IsExact) {
out << " approx. ";
out << " (";
for (auto it = p.begin(); it != p.end(); ++it) {
if(it != p.begin()){
out << ", ";
}
out << std::setw(10) << *it;
out << std::setw(11) << storm::utility::convertNumber<double>(*it);
}
out << " )";
}
out << " )" << std::endl;
out << std::endl;
}
return out;
}

Loading…
Cancel
Save