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
469 B
19 lines
469 B
#ifndef STORM_LOGIC_PATHREWARDFORMULA_H_
|
|
#define STORM_LOGIC_PATHREWARDFORMULA_H_
|
|
|
|
#include "src/logic/PathFormula.h"
|
|
|
|
namespace storm {
|
|
namespace logic {
|
|
class RewardPathFormula : public Formula {
|
|
public:
|
|
virtual ~RewardPathFormula() {
|
|
// Intentionally left empty.
|
|
}
|
|
|
|
virtual bool isRewardPathFormula() const override;
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif /* STORM_LOGIC_PATHREWARDFORMULA_H_ */
|