Browse Source

Fixed issue in ExplicitPrismModelBuilder.cpp when CARL is not available.

Former-commit-id: 08c6ec6dbe
tempestpy_adaptions
PBerger 9 years ago
parent
commit
8eec3f2306
  1. 2
      src/builder/ExplicitPrismModelBuilder.cpp

2
src/builder/ExplicitPrismModelBuilder.cpp

@ -244,7 +244,7 @@ namespace storm {
// not only appear in the probabilities, we re
if (!std::is_same<ValueType, storm::RationalFunction>::value && preparedProgram->hasUndefinedConstants()) {
#else
if (preparedProgram.hasUndefinedConstants()) {
if (preparedProgram->hasUndefinedConstants()) {
#endif
std::vector<std::reference_wrapper<storm::prism::Constant const>> undefinedConstants = preparedProgram->getUndefinedConstants();
std::stringstream stream;

Loading…
Cancel
Save