Module TypedSTerm.Ty
type t
= term
type builtin
=
|
Prop
|
TType
|
Term
|
Int
|
Rat
type view
=
|
Ty_builtin of builtin
|
Ty_var of t Var.t
|
Ty_app of ID.t * t list
|
Ty_fun of t list * t
|
Ty_forall of t Var.t * t
|
Ty_multiset of t
|
Ty_record of (string * t) list * t Var.t option
|
Ty_meta of meta_var
val tType : t
val var : ?loc:location -> t Var.t -> t
val var_of_string : ?loc:location -> string -> t
val meta : ?loc:location -> meta_var -> t
val fun_ : ?loc:location -> t list -> t -> t
val app : ?loc:location -> ID.t -> t list -> t
val const : ?loc:location -> ID.t -> t
val forall : ?loc:location -> t Var.t -> t -> t
val forall_l : ?loc:location -> t Var.t list -> t -> t
val multiset : ?loc:location -> t -> t
val record : ?loc:location -> (string * t) list -> rest:t Var.t option -> t
val record_flatten : ?loc:location -> (string * t) list -> rest:t option -> t
val prop : t
val int : t
val rat : t
val real : t
val term : t
val (==>) : t list -> t -> t
Alias to
fun_
val close_forall : t -> t
val unfold : t -> t Var.t list * t list * t
unfold [forall a b. x y z -> ret]
returns the triples[a,b], [x,y,z], ret
val arity : t -> int * int
arity ty
returns(n,m)
wherety = forall x1..xn (a1 ... am -> ret)
val mangle : t -> string
String usable as an identifier, without whitespace
val needs_args : t -> bool
needs_args ty
means thatarity ty <> (0,0)