Browse Source

returning the time bound type from a timeBoundReference

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

5
src/storm/logic/TimeBoundType.h

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

Loading…
Cancel
Save