Browse Source

returning the time bound type from a timeBoundReference

tempestpy_adaptions
TimQu 7 years ago
parent
commit
d35a5e4bdd
  1. 3
      src/storm/logic/TimeBoundType.h

3
src/storm/logic/TimeBoundType.h

@ -24,6 +24,9 @@ namespace storm {
assert(rewardName != ""); // Empty reward name is reserved. assert(rewardName != ""); // Empty reward name is reserved.
} }
TimeBoundType getType() const {
return type;
}
bool isStepBound() const { bool isStepBound() const {
return type == TimeBoundType::Steps; return type == TimeBoundType::Steps;

Loading…
Cancel
Save