Skip to content
Snippets Groups Projects
Commit db1ef3fa authored by Loïc Correnson's avatar Loïc Correnson
Browse files

[qed] removing lc_empty and lc_closed_at

parent 8e495f96
No related branches found
No related tags found
No related merge requests found
......@@ -367,12 +367,7 @@ sig
(** {3 Locally Nameless Representation} *)
val lc_empty : term -> bool (** No bound variables *)
val lc_closed : term -> bool (** All bound variables are under their binder *)
val lc_closed_at : int -> term -> bool
(** [lc_closed_at n] do not contains bvar with [k < n].
Means that the term has no bound-variable that can escape [n] binders
uppon the term. *)
val lc_vars : term -> Bvars.t
......
......@@ -1966,7 +1966,6 @@ struct
(* --- Locally Nameless --- *)
(* -------------------------------------------------------------------------- *)
let lc_empty e = Bvars.is_empty e.bind
let lc_closed e = Bvars.closed e.bind
let lc_closed_at n e = Bvars.closed_at n e.bind
let lc_vars e = e.bind
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment