The abstract syntax tree (AST) class. More...
Inheritance diagram for AST:Public Member Functions | |
| override bool | Equals (object o) |
| Object comparison. | |
| virtual int | CompareTo (object other) |
| Object Comparison. | |
| override int | GetHashCode () |
| The AST's hash code. | |
| AST | Translate (Context ctx) |
| Translates (copies) the AST to the Context ctx . | |
| override string | ToString () |
| A string representation of the AST. | |
| string | SExpr () |
| A string representation of the AST in s-expression notation. | |
Public Member Functions inherited from Z3Object | |
| void | Dispose () |
| Disposes of the underlying native Z3 object. | |
Static Public Member Functions | |
| static bool | operator== (AST a, AST b) |
| Comparison operator. | |
| static bool | operator!= (AST a, AST b) |
| Comparison operator. | |
Properties | |
| uint | Id [get] |
| A unique identifier for the AST (unique among all ASTs). | |
| Z3_ast_kind | ASTKind [get] |
| The kind of the AST. | |
| bool | IsExpr [get] |
| Indicates whether the AST is an Expr. | |
| bool | IsApp [get] |
| Indicates whether the AST is an application. | |
| bool | IsVar [get] |
| Indicates whether the AST is a BoundVariable. | |
| bool | IsQuantifier [get] |
| Indicates whether the AST is a Quantifier. | |
| bool | IsSort [get] |
| Indicates whether the AST is a Sort. | |
| bool | IsFuncDecl [get] |
| Indicates whether the AST is a FunctionDeclaration. | |
Properties inherited from Z3Object | |
| Context | Context [get] |
| Access Context object. | |
|
inlinevirtual |
Object Comparison.
| other | Another AST |
Definition at line 75 of file AST.cs.
|
inline |
|
inline |
Comparison operator.
| a | An AST |
| b | An AST |
Definition at line 39 of file AST.cs.
|
inline |
|
inline |
Translates (copies) the AST to the Context ctx .
| ctx | A context |
|
get |
The kind of the AST.
Definition at line 127 of file AST.cs.
|
get |
A unique identifier for the AST (unique among all ASTs).
Definition at line 104 of file AST.cs.
Referenced by AST.CompareTo().
|
get |
Indicates whether the AST is an application.
Definition at line 153 of file AST.cs.
Referenced by Expr.Update().
|
get |
|
get |
Indicates whether the AST is a FunctionDeclaration.
|
get |
Indicates whether the AST is a Quantifier.
|
get |
Indicates whether the AST is a Sort.
|
get |
Indicates whether the AST is a BoundVariable.