Browse Source

getting reward name from reward bounded until formula.

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

5
src/storm/logic/TimeBoundType.h

@ -36,6 +36,11 @@ namespace storm {
bool isRewardBound() const {
return type == TimeBoundType::Reward;
}
std::string const& getRewardName() const {
assert(isRewardBound());
return rewardName;
}
};

Loading…
Cancel
Save