aboutsummaryrefslogtreecommitdiff
path: root/kernel/declarations.mli
diff options
context:
space:
mode:
authorArnaud Spiwack2015-06-22 13:42:13 +0200
committerArnaud Spiwack2015-06-24 17:55:47 +0200
commit8589b9b487c1e9b996975bd5dc58f548d0d9280c (patch)
treef3a8ed36341e62d02f2c526df53e214ef6e23fee /kernel/declarations.mli
parent9420069e4d0bf3bf377c950bbc41ea762fbcfce8 (diff)
Add a field in `mutual_inductive_body` to represent mutual inductive whose positivity is assumed.
Diffstat (limited to 'kernel/declarations.mli')
-rw-r--r--kernel/declarations.mli1
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/declarations.mli b/kernel/declarations.mli
index 27c1c3f3f0..ef3e1bb6ae 100644
--- a/kernel/declarations.mli
+++ b/kernel/declarations.mli
@@ -184,6 +184,7 @@ type mutual_inductive_body = {
mind_private : bool option; (** allow pattern-matching: Some true ok, Some false blocked *)
+ mind_checked_positive : bool; (** [false] when the mutual-inductive was assumed to be well-founded, bypassing the positivity checker. *)
}
(** {6 Module declarations } *)