Browse Source

fixed log output

tempestpy_adaptions
TimQu 6 years ago
parent
commit
db72a05358
  1. 2
      src/storm/solver/helper/SoundValueIterationHelper.cpp

2
src/storm/solver/helper/SoundValueIterationHelper.cpp

@ -303,7 +303,7 @@ namespace storm {
STORM_LOG_INFO("Sound Value Iteration terminated with lower bound (over all states) "
<< (hasLowerBound ? lowerBound : storm::utility::zero<ValueType>()) << (hasLowerBound ? "" : "(none)")
<< " and upper bound (over all states)"
<< " and upper bound (over all states) "
<< (hasUpperBound ? upperBound : storm::utility::infinity<ValueType>()) << (hasUpperBound ? "" : "(none)")
<< ". Decision value is "
<< (hasDecisionValue ? decisionValue : -storm::utility::infinity<ValueType>()) << (hasDecisionValue ? "" : "(none)")

Loading…
Cancel
Save