Browse Source

Fixed error message that appeared when using jit.

tempestpy_adaptions
Tim Quatmann 5 years ago
parent
commit
aae44a3b4b
  1. 3
      src/storm/utility/Engine.cpp

3
src/storm/utility/Engine.cpp

@ -108,6 +108,7 @@ namespace storm {
switch (engine) { switch (engine) {
case Engine::Sparse: case Engine::Sparse:
case Engine::DdSparse: case Engine::DdSparse:
case Engine::Jit:
switch (modelType) { switch (modelType) {
case ModelType::DTMC: case ModelType::DTMC:
return storm::modelchecker::SparseDtmcPrctlModelChecker<storm::models::sparse::Dtmc<ValueType>>::canHandleStatic(checkTask); return storm::modelchecker::SparseDtmcPrctlModelChecker<storm::models::sparse::Dtmc<ValueType>>::canHandleStatic(checkTask);
@ -148,7 +149,7 @@ namespace storm {
} }
break; break;
default: default:
STORM_LOG_ERROR("The selected engine" << engine << " is not considered.");
STORM_LOG_ERROR("The selected engine " << engine << " is not considered.");
} }
STORM_LOG_ERROR("The selected combination of engine (" << engine << ") and model type (" << modelType << ") does not seem to be supported for this value type."); STORM_LOG_ERROR("The selected combination of engine (" << engine << ") and model type (" << modelType << ") does not seem to be supported for this value type.");
return false; return false;

Loading…
Cancel
Save