type t
=
| Touist_code of t list | |
| Int of int | |
| Float of float | |
| Bool of bool | |
| Var of var | |
| Set of AstSet.t | |
| Set_decl of t list | |
| Neg of t | |
| Add of t * t | |
| Sub of t * t | |
| Mul of t * t | |
| Div of t * t | |
| Mod of t * t | |
| Sqrt of t | |
| To_int of t | |
| To_float of t | |
| Abs of t | |
| Top | |
| Bottom | |
| Not of t | |
| And of t * t | |
| Or of t * t | |
| Xor of t * t | |
| Implies of t * t | |
| Equiv of t * t | |
| Equal of t * t | |
| Not_equal of t * t | |
| Lesser_than of t * t | |
| Lesser_or_equal of t * t | |
| Greater_than of t * t | |
| Greater_or_equal of t * t | |
| Union of t * t | |
| Inter of t * t | |
| Diff of t * t | |
| Range of t * t | |
| Empty of t | |
| Card of t | |
| Subset of t * t | |
| Powerset of t | |
| In of t * t | |
| If of t * t * t | |
| Exact of t * t | |
| Atleast of t * t | |
| Atmost of t * t | |
| Bigand of t list * t list * t option * t | |
| Bigor of t list * t list * t option * t | |
| Let of t * t * t | |
| Affect of t * t | |
| UnexpProp of string * t list option | (** abcd(1,$d,$i,a) <- not a full-string yet *) |
| Prop of string | (** abcd(1,foo,123,a) <- an actual string that represents an actual logical proposition *) |
| Loc of t * Err.loc | (**
|
| Paren of t | (** |
| Exists of t * t | |
| Forall of t * t | |
| For of t * t * t | |
| NewlineAfter of t | |
| NewlineBefore of t | |
| Formula of t | |
| SetBuilder of t * t list * t list * t option |