Browse Source

FormulaInformation: Fixed detection of property type.

tempestpy_adaptions
Tim Quatmann 5 years ago
parent
commit
137f41abac
  1. 2
      src/storm/logic/FormulaInformation.cpp
  2. 2
      src/storm/utility/Portfolio.cpp

2
src/storm/logic/FormulaInformation.cpp

@ -2,7 +2,7 @@
namespace storm {
namespace logic {
FormulaInformation::FormulaInformation() : mContainsRewardOperator(false), mContainsNextFormula(false), mContainsBoundedUntilFormula(false), mContainsCumulativeRewardFormula(false), mContainsRewardBoundedFormula(false) {
FormulaInformation::FormulaInformation() : mContainsRewardOperator(false), mContainsNextFormula(false), mContainsBoundedUntilFormula(false), mContainsCumulativeRewardFormula(false), mContainsRewardBoundedFormula(false), mContainsLongRunFormula(false) {
// Intentionally left empty
}

2
src/storm/utility/Portfolio.cpp

@ -30,7 +30,7 @@ namespace storm {
STORM_LOG_INFO("Assuming Long Run property:" << property);
return PropertyType::LongRun;
} else {
STORM_LOG_INFO("Unbounded property:" << property);
STORM_LOG_INFO("Assuming Unbounded property:" << property);
return PropertyType::Unbounded;
}
}

Loading…
Cancel
Save