aboutsummaryrefslogtreecommitdiff
path: root/kernel/term_typing.ml
diff options
context:
space:
mode:
authorArnaud Spiwack2015-09-25 15:09:15 +0200
committerArnaud Spiwack2015-09-25 15:09:15 +0200
commitcaf8402e4af75d85223e10cba68a6a145e050dab (patch)
treee8c3af2139d78b7e0117fd4987b7eb3732381577 /kernel/term_typing.ml
parent0b20282c49253aea4429384467b75a5bdb1f8ba4 (diff)
Add a field in `constant_body` to track constant whose well-foundedness is assumed.
Diffstat (limited to 'kernel/term_typing.ml')
-rw-r--r--kernel/term_typing.ml9
1 files changed, 5 insertions, 4 deletions
diff --git a/kernel/term_typing.ml b/kernel/term_typing.ml
index 539305ed13..8a105ac971 100644
--- a/kernel/term_typing.ml
+++ b/kernel/term_typing.ml
@@ -186,7 +186,7 @@ let record_aux env s1 s2 =
let suggest_proof_using = ref (fun _ _ _ _ _ -> ())
let set_suggest_proof_using f = suggest_proof_using := f
-let build_constant_declaration kn env (def,typ,proj,poly,univs,inline_code,ctx) =
+let build_constant_declaration ~chkguard kn env (def,typ,proj,poly,univs,inline_code,ctx) =
let check declared inferred =
let mk_set l = List.fold_right Id.Set.add (List.map pi1 l) Id.Set.empty in
let inferred_set, declared_set = mk_set inferred, mk_set declared in
@@ -261,13 +261,14 @@ let build_constant_declaration kn env (def,typ,proj,poly,univs,inline_code,ctx)
const_body_code = tps;
const_polymorphic = poly;
const_universes = univs;
- const_inline_code = inline_code }
+ const_inline_code = inline_code;
+ const_checked_guarded = chkguard }
(*s Global and local constant declaration. *)
let translate_constant ~chkguard env kn ce =
- build_constant_declaration kn env (infer_declaration ~chkguard env (Some kn) ce)
+ build_constant_declaration ~chkguard kn env (infer_declaration ~chkguard env (Some kn) ce)
let translate_local_assum ~chkguard env t =
let j = infer ~chkguard env t in
@@ -275,7 +276,7 @@ let translate_local_assum ~chkguard env t =
t
let translate_recipe env kn r =
- build_constant_declaration kn env (Cooking.cook_constant env r)
+ build_constant_declaration ~chkguard:true kn env (Cooking.cook_constant env r)
let translate_local_def ~chkguard env id centry =
let def,typ,proj,poly,univs,inline_code,ctx =