diff options
| author | Pierre-Marie Pédrot | 2016-05-13 18:19:15 +0200 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2016-06-18 18:54:43 +0200 |
| commit | 575da16f72ac125ba7e50b1bfe63302dee639973 (patch) | |
| tree | 7e967e4b8031059b301f537b068f198b54213daf /kernel/declarations.mli | |
| parent | 561dbba4ce47aa1920b27a6fa3ea1fdb03835557 (diff) | |
Adding a local type-in-type flag in kernel declarations.
Diffstat (limited to 'kernel/declarations.mli')
| -rw-r--r-- | kernel/declarations.mli | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/kernel/declarations.mli b/kernel/declarations.mli index 8b42a90e48..639cd061bc 100644 --- a/kernel/declarations.mli +++ b/kernel/declarations.mli @@ -73,6 +73,7 @@ type constant_universes = Univ.universe_context type typing_flags = { check_guarded : bool; (** If [false] then fixed points and co-fixed points are assumed to be total. *) + check_universes : bool; (** If [false] universe constraints are not checked *) } (* some contraints are in constant_constraints, some other may be in @@ -192,6 +193,9 @@ 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. *) + + mind_unsafe_universes : bool; (** generated with the type-in-type flag *) + } (** {6 Module declarations } *) |
