#ifndef STORM_LOGIC_LONGRUNAVERAGEREWARDFORMULA_H_ #define STORM_LOGIC_LONGRUNAVERAGEREWARDFORMULA_H_ #include #include "src/logic/RewardPathFormula.h" namespace storm { namespace logic { class LongRunAverageRewardFormula : public RewardPathFormula { public: LongRunAverageRewardFormula(); virtual ~LongRunAverageRewardFormula() { // Intentionally left empty. } virtual bool isLongRunAverageRewardFormula() const override; virtual std::shared_ptr substitute(std::map const& substitution) const override; virtual std::ostream& writeToStream(std::ostream& out) const override; }; } } #endif /* STORM_LOGIC_LONGRUNAVERAGEREWARDFORMULA_H_ */