Browse Source

added printing info when value type is converted after preprocessing

tempestpy_adaptions
dehnert 7 years ago
parent
commit
5f7cd17789
  1. 1
      src/storm-cli-utilities/model-handling.h

1
src/storm-cli-utilities/model-handling.h

@ -683,6 +683,7 @@ namespace storm {
if (model) {
if (!std::is_same<BuildValueType, VerificationValueType>::value) {
if (model->isSymbolicModel()) {
STORM_LOG_INFO("Converting symbolic model value type to fit the verification value type.");
auto symbolicModel = model->as<storm::models::symbolic::Model<DdType, BuildValueType>>();
model = symbolicModel->template toValueType<VerificationValueType>();
}

Loading…
Cancel
Save