aboutsummaryrefslogtreecommitdiffhomepage
path: root/kernel/inductive.mli
diff options
context:
space:
mode:
authorGravatar barras <barras@85f007b7-540e-0410-9357-904b9bb8a0f7>2010-03-11 19:08:46 +0000
committerGravatar barras <barras@85f007b7-540e-0410-9357-904b9bb8a0f7>2010-03-11 19:08:46 +0000
commitdba2ae9fa1eb01d795d36b209aee6045967ba00a (patch)
treee8c2ce9a5fb8f7a0150458d7a2a5a585ccdca2f9 /kernel/inductive.mli
parent8a944fd93df07453cba53b752670ae451c370a65 (diff)
introduced lazy computation of size info in the guard condition
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@12862 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'kernel/inductive.mli')
-rw-r--r--kernel/inductive.mli4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/inductive.mli b/kernel/inductive.mli
index 9f8d10900..8fe8eb11f 100644
--- a/kernel/inductive.mli
+++ b/kernel/inductive.mli
@@ -109,9 +109,9 @@ type guard_env =
(* the recarg information of inductive family *)
recvec : wf_paths array;
(* dB of variables denoting subterms *)
- genv : subterm_spec list;
+ genv : subterm_spec Lazy.t list;
}
val subterm_specif : guard_env -> constr -> subterm_spec
-val case_branches_specif : guard_env -> subterm_spec -> inductive ->
+val case_branches_specif : guard_env -> subterm_spec Lazy.t -> case_info ->
constr array -> (guard_env * constr) array