|
dReal4
|
Represents the base class for relational operators (==, !=, <, <=, >, >=). More...
Public Member Functions | |
| RelationalFormulaCell ()=delete | |
| Default constructor (deleted). More... | |
| ~RelationalFormulaCell () override=default | |
| Default destructor (deleted). More... | |
| RelationalFormulaCell (RelationalFormulaCell &&f)=delete | |
| Move-construct a formula from an rvalue (DELETED). More... | |
| RelationalFormulaCell (const RelationalFormulaCell &f)=delete | |
| Copy-construct a formula from an lvalue (DELETED). More... | |
| RelationalFormulaCell & | operator= (RelationalFormulaCell &&f)=delete |
| Move-assign (DELETED). More... | |
| RelationalFormulaCell & | operator= (const RelationalFormulaCell &f)=delete |
| Copy-assign (DELETED). More... | |
| RelationalFormulaCell (FormulaKind k, const Expression &lhs, const Expression &rhs) | |
Construct RelationalFormulaCell of kind k with lhs and rhs. More... | |
| bool | EqualTo (const FormulaCell &f) const override |
| Checks structural equality. More... | |
| bool | Less (const FormulaCell &f) const override |
| Checks ordering. More... | |
| const Expression & | get_lhs_expression () const |
| Returns the expression on left-hand-side. More... | |
| const Expression & | get_rhs_expression () const |
| Returns the expression on right-hand-side. More... | |
Public Member Functions inherited from FormulaCell | |
| FormulaCell ()=delete | |
| Default constructor (DELETED). More... | |
| FormulaCell & | operator= (FormulaCell &&f)=delete |
| Move-assign (DELETED). More... | |
| FormulaCell (const FormulaCell &f)=delete | |
| Copy-construct a formula from an lvalue. More... | |
| FormulaCell (FormulaCell &&f)=delete | |
| Move-construct a formula from an rvalue (DELETED). More... | |
| FormulaCell & | operator= (const FormulaCell &f)=delete |
| Copy-assign (DELETED). More... | |
| FormulaKind | get_kind () const |
| Returns kind of formula. More... | |
| size_t | get_hash () const |
| Returns hash of formula. More... | |
| const Variables & | GetFreeVariables () const |
| Returns set of free variables in formula. More... | |
| virtual bool | Evaluate (const Environment &env) const =0 |
| Evaluates under a given environment. More... | |
| virtual Formula | Substitute (const ExpressionSubstitution &expr_subst, const FormulaSubstitution &formula_subst)=0 |
Returns a Formula obtained by replacing all occurrences of the variables in s in the current formula cell with the corresponding expressions in s. | |
| virtual std::ostream & | Display (std::ostream &os) const =0 |
Outputs string representation of formula into output stream os. More... | |
| unsigned | use_count () const |
| Returns the reference count of this cell. More... | |
| bool | include_ite () const |
| Returns true if this symbolic formula includes an ITE (If-Then-Else) expression. More... | |
Additional Inherited Members | |
Protected Member Functions inherited from FormulaCell | |
| FormulaCell (FormulaKind k, size_t hash, bool include_ite, Variables variables) | |
Construct FormulaCell of kind k with hash. More... | |
| virtual | ~FormulaCell ()=default |
| Default destructor. More... | |
| Formula | GetFormula () |
| Returns a Formula pointing to this FormulaCell. More... | |
Represents the base class for relational operators (==, !=, <, <=, >, >=).
|
delete |
Default constructor (deleted).
|
overridedefault |
Default destructor (deleted).
|
delete |
Move-construct a formula from an rvalue (DELETED).
|
delete |
Copy-construct a formula from an lvalue (DELETED).
| RelationalFormulaCell | ( | FormulaKind | k, |
| const Expression & | lhs, | ||
| const Expression & | rhs | ||
| ) |
Construct RelationalFormulaCell of kind k with lhs and rhs.
|
overridevirtual |
Checks structural equality.
Implements FormulaCell.
|
inline |
Returns the expression on left-hand-side.
|
inline |
Returns the expression on right-hand-side.
|
overridevirtual |
Checks ordering.
Implements FormulaCell.
|
delete |
Move-assign (DELETED).
|
delete |
Copy-assign (DELETED).