aboutsummaryrefslogtreecommitdiffhomepage
path: root/checker/declarations.mli
diff options
context:
space:
mode:
authorGravatar barras <barras@85f007b7-540e-0410-9357-904b9bb8a0f7>2010-07-30 19:53:46 +0000
committerGravatar barras <barras@85f007b7-540e-0410-9357-904b9bb8a0f7>2010-07-30 19:53:46 +0000
commit9518675fafc27d3af2a62a5201244f5b5dfaf47f (patch)
tree860892242d34bda1e923f697f571765a71638789 /checker/declarations.mli
parent707e6ebc87d88e0e6a5cb5060837dbc0fce3b6a1 (diff)
adpated the checker to handle coomutative cuts and lazyness
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@13365 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'checker/declarations.mli')
-rw-r--r--checker/declarations.mli9
1 files changed, 5 insertions, 4 deletions
diff --git a/checker/declarations.mli b/checker/declarations.mli
index b39fd6f2f..b356ede17 100644
--- a/checker/declarations.mli
+++ b/checker/declarations.mli
@@ -42,13 +42,14 @@ type constant_body = {
type recarg =
| Norec
- | Mrec of int
+ | Mrec of inductive
| Imbr of inductive
type wf_paths = recarg Rtree.t
val mk_norec : wf_paths
val mk_paths : recarg -> wf_paths list array -> wf_paths
+val dest_recarg : wf_paths -> recarg
val dest_subterms : wf_paths -> wf_paths list array
type monomorphic_inductive_arity = {
@@ -211,6 +212,6 @@ val subst_module : substitution -> module_body -> module_body
val join : substitution -> substitution -> substitution
(* Validation *)
-val val_eng : Obj.t -> unit
-val val_module : Obj.t -> unit
-val val_modtype : Obj.t -> unit
+val val_eng : Validate.func
+val val_module : Validate.func
+val val_modtype : Validate.func