diff --git a/src/storm-pomdp/modelchecker/ApproximatePOMDPModelchecker.cpp b/src/storm-pomdp/modelchecker/ApproximatePOMDPModelchecker.cpp index 83e972aa0..c638317c4 100644 --- a/src/storm-pomdp/modelchecker/ApproximatePOMDPModelchecker.cpp +++ b/src/storm-pomdp/modelchecker/ApproximatePOMDPModelchecker.cpp @@ -75,7 +75,7 @@ namespace storm { template ApproximatePOMDPModelchecker::ApproximatePOMDPModelchecker(std::shared_ptr pomdp, Options options) : inputPomdp(pomdp), options(options) { STORM_LOG_ASSERT(inputPomdp, "The given POMDP is not initialized."); - STORM_LOG_ERROR_COND(inputPomdp->isCanonic(), "Input Pomdp is not canonic. This might lead to unexpected verification results."); + STORM_LOG_ERROR_COND(inputPomdp->isCanonic(), "Input Pomdp is not known to be canonic. This might lead to unexpected verification results."); cc = storm::utility::ConstantsComparator(storm::utility::convertNumber(this->options.numericPrecision), false); }