diff --git a/src/storm-cli-utilities/model-handling.h b/src/storm-cli-utilities/model-handling.h index b1d667d64..3667d0af2 100644 --- a/src/storm-cli-utilities/model-handling.h +++ b/src/storm-cli-utilities/model-handling.h @@ -679,10 +679,11 @@ namespace storm { verifyWithExplorationEngine(input); } else { std::shared_ptr model = buildPreprocessExportModelWithValueTypeAndDdlib(input, engine); - + if (model) { if (!std::is_same::value) { if (model->isSymbolicModel()) { + STORM_LOG_INFO("Converting symbolic model value type to fit the verification value type."); auto symbolicModel = model->as>(); model = symbolicModel->template toValueType(); }