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.
27 lines
828 B
27 lines
828 B
#include "src/logic/LongRunAverageRewardFormula.h"
|
|
|
|
#include "src/logic/FormulaVisitor.h"
|
|
|
|
namespace storm {
|
|
namespace logic {
|
|
LongRunAverageRewardFormula::LongRunAverageRewardFormula() {
|
|
// Intentionally left empty.
|
|
}
|
|
|
|
bool LongRunAverageRewardFormula::isLongRunAverageRewardFormula() const {
|
|
return true;
|
|
}
|
|
|
|
bool LongRunAverageRewardFormula::isRewardPathFormula() const {
|
|
return true;
|
|
}
|
|
|
|
boost::any LongRunAverageRewardFormula::accept(FormulaVisitor const& visitor, boost::any const& data) const {
|
|
return visitor.visit(*this, data);
|
|
}
|
|
|
|
std::ostream& LongRunAverageRewardFormula::writeToStream(std::ostream& out) const {
|
|
return out << "LRA";
|
|
}
|
|
}
|
|
}
|