1#ifndef STORM_STORAGE_EXPRESSIONS_BINARYBOOLEANFUNCTIONEXPRESSION_H_
2#define STORM_STORAGE_EXPRESSIONS_BINARYBOOLEANFUNCTIONEXPRESSION_H_
26 std::shared_ptr<BaseExpression const>
const& secondOperand,
OperatorType operatorType);
39 virtual std::shared_ptr<BaseExpression const>
simplify()
const override;
52 virtual void printToStream(std::ostream& stream)
const override;
BinaryBooleanFunctionExpression & operator=(BinaryBooleanFunctionExpression &&)=delete
virtual ~BinaryBooleanFunctionExpression()=default
virtual boost::any accept(ExpressionVisitor &visitor, boost::any const &data) const override
Accepts the given visitor by calling its visit method.
virtual bool evaluateAsBool(Valuation const *valuation=nullptr) const override
Evaluates the expression under the valuation of unknowns (variables and constants) given by the valua...
BinaryBooleanFunctionExpression & operator=(BinaryBooleanFunctionExpression const &other)=delete
virtual std::shared_ptr< BaseExpression const > simplify() const override
Simplifies the expression according to some simple rules.
OperatorType getOperatorType() const
Retrieves the operator associated with the expression.
BinaryBooleanFunctionExpression(BinaryBooleanFunctionExpression const &other)=default
BinaryBooleanFunctionExpression(BinaryBooleanFunctionExpression &&)=default
OperatorType
An enum type specifying the different operators applicable.
virtual void printToStream(std::ostream &stream) const override
Prints the expression to the given stream.
virtual bool isBinaryBooleanFunctionExpression() const override
virtual storm::expressions::OperatorType getOperator() const override
Retrieves the operator of a function application.
The base class of all binary expressions.
This class is responsible for managing a set of typed variables and all expressions using these varia...
The base class of all valuations of variables.