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
546 B

#include "src/storage/pgcl/ObserveStatement.h"
#include "src/storage/pgcl/AbstractStatementVisitor.h"
namespace storm {
namespace pgcl {
ObserveStatement::ObserveStatement(storm::pgcl::BooleanExpression const& condition) : condition(condition) {
}
void ObserveStatement::accept(storm::pgcl::AbstractStatementVisitor& visitor) {
visitor.visit(*this);
}
storm::pgcl::BooleanExpression const& ObserveStatement::getCondition() const {
return this->condition;
}
}
}