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
566 B
19 lines
566 B
#include "src/logic/GloballyFormula.h"
|
|
|
|
namespace storm {
|
|
namespace logic {
|
|
GloballyFormula::GloballyFormula(std::shared_ptr<Formula const> const& subformula) : UnaryPathFormula(subformula) {
|
|
// Intentionally left empty.
|
|
}
|
|
|
|
bool GloballyFormula::isGloballyFormula() const {
|
|
return true;
|
|
}
|
|
|
|
std::ostream& GloballyFormula::writeToStream(std::ostream& out) const {
|
|
out << "G ";
|
|
this->getSubformula().writeToStream(out);
|
|
return out;
|
|
}
|
|
}
|
|
}
|