You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

19 lines
550 B

#include "src/storage/jani/RewardIncrement.h"
namespace storm {
namespace jani {
RewardIncrement::RewardIncrement(uint64_t rewardIndex, storm::expressions::Expression const& value) : rewardIndex(rewardIndex), value(value) {
// Intentionally left empty.
}
uint64_t RewardIncrement::getRewardIndex() const {
return rewardIndex;
}
storm::expressions::Expression const& RewardIncrement::getValue() const {
return value;
}
}
}