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.
21 lines
761 B
21 lines
761 B
#include "src/logic/LongRunAverageRewardFormula.h"
|
|
|
|
namespace storm {
|
|
namespace logic {
|
|
LongRunAverageRewardFormula::LongRunAverageRewardFormula() {
|
|
// Intentionally left empty.
|
|
}
|
|
|
|
bool LongRunAverageRewardFormula::isLongRunAverageRewardFormula() const {
|
|
return true;
|
|
}
|
|
|
|
std::shared_ptr<Formula> LongRunAverageRewardFormula::substitute(std::map<storm::expressions::Variable, storm::expressions::Expression> const& substitution) const {
|
|
return std::shared_ptr<Formula>(new LongRunAverageRewardFormula());
|
|
}
|
|
|
|
std::ostream& LongRunAverageRewardFormula::writeToStream(std::ostream& out) const {
|
|
return out << "LRA";
|
|
}
|
|
}
|
|
}
|