2 ||M|| This file is part of HELM, an Hypertextual, Electronic
3 ||A|| Library of Mathematics, developed at the Computer Science
4 ||T|| Department, University of Bologna, Italy.
6 ||T|| HELM is free software; you can redistribute it and/or
7 ||A|| modify it under the terms of the GNU General Public License
8 \ / version 2 or (at your option) any later version.
9 \ / This software is distributed as is, NO WARRANTY.
10 V_______________________________________________________________ *)
14 exception CircularDependency of string Lazy.t;;
15 exception ObjectNotFound of string Lazy.t;;
16 exception BadDependency of string Lazy.t;;
17 exception BadConstraint of string Lazy.t;;
19 val get_checked_obj: NUri.uri -> NCic.obj
21 val get_relevance: NReference.reference -> bool list
23 val type0: NCic.universe
24 (* universe_* raise BadConstraints if the second arg. is an inferred universe *)
25 val universe_eq: NCic.universe -> NCic.universe -> bool
26 val universe_leq: NCic.universe -> NCic.universe -> bool
27 (* add_constraint raise BadConstraint in case of universe inconsistency
28 or if the second argument is an inferred universe
29 true -> strict check (<); false -> loose check (<=)
31 val add_constraint: bool -> NCic.universe -> NCic.universe -> unit
32 val pp_constraints: unit -> string
35 NReference.reference ->
36 NCic.relevance * string * NCic.term * NCic.term * NCic.c_attr * int
38 (* the last integer is the index of the inductive type in the reference *)
39 val get_checked_indtys:
40 NReference.reference ->
41 bool * int * NCic.inductiveType list * NCic.i_attr * int
43 val get_checked_fixes_or_cofixes:
44 NReference.reference ->
45 NCic.inductiveFun list * NCic.f_attr * int
47 val invalidate: unit -> unit
49 val set_typecheck_obj: (NCic.obj -> unit) -> unit