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 (********************************* TERMS ************************************)
16 type universe = (bool * NUri.uri) list
17 (* Max of non-empty list of named universes, or their successor (when true) *)
19 type sort = Prop | Type of universe
21 type implicit_annotation = [ `Closed | `Type | `Hole | `Term ]
23 type lc_kind = Irl of int | Ctx of term list
25 and local_context = int * lc_kind (* shift (0 -> no shift),
26 subst (None means id) *)
28 | Rel of int (* DeBruijn index, 1 based *)
29 | Meta of int * local_context
30 | Appl of term list (* arguments *)
31 | Prod of string * term * term (* binder, source, target *)
32 | Lambda of string * term * term (* binder, source, target *)
33 | LetIn of string * term * term * term (* binder, type, term, body *)
34 (* Cast \def degenerate LetIn *)
35 | Const of NReference.reference (* ref has (indtype|constr)no *)
36 | Sort of sort (* sort *)
37 | Implicit of implicit_annotation (* ... *)
38 | Match of NReference.reference * (* ind. reference, *)
39 term * term * (* outtype, ind. term *)
40 term list (* patterns *)
43 (********************************* TYPING ***********************************)
45 type context_entry = (* A declaration or definition *)
46 | Decl of term (* type *)
47 | Def of term * term (* body, type *)
49 type hypothesis = string * context_entry
51 type context = hypothesis list
53 type conjecture = string option * context * term
55 type metasenv = (int * conjecture) list
57 type subst_entry = string option * context * term * term
59 type substitution = (int * subst_entry) list
62 (******************************** OBJECTS **********************************)
64 type relevance = bool list (* relevance of arguments for conversion *)
66 (* relevance, name, recno, ty, bo *)
67 type inductiveFun = relevance * string * int * term * term
68 (* if coinductive, the int has no meaning and must be set to -1 *)
70 type constructor = relevance * string * term (* id, type *)
73 relevance * string * term * constructor list
74 (* relevance, typename, arity, constructors *)
76 type def_flavour = (* presentational *)
77 [ `Definition | `Fact | `Lemma | `Theorem | `Corollary | `Example ]
79 type def_pragma = (* pragmatic of the object *)
81 | `Elim of sort (* elimination principle; universe is not relevant *)
82 | `Projection (* record projection *)
83 | `InversionPrinciple (* inversion principle *)
86 | `Regular ] (* Local = hidden technicality *)
88 type ind_pragma = (* pragmatic of the object *)
89 [ `Record of (string * bool * int) list | `Regular ]
90 (* inductive type that encodes a record; the arguments are the record
91 * fields names and if they are coercions and then the coercion arity *)
93 type generated = [ `Generated | `Provided ]
95 type c_attr = generated * def_flavour * def_pragma
96 type f_attr = generated * def_flavour
97 type i_attr = generated * ind_pragma
99 (* invariant: metasenv and substitution have disjoint domains *)
101 | Constant of relevance * string * term option * term * c_attr
102 | Fixpoint of bool * inductiveFun list * f_attr
103 (* true -> fix, funcs, arrts *)
104 | Inductive of bool * int * inductiveType list * i_attr
105 (* true -> inductive, leftno, types *)
107 (* the int must be 0 if the object has no body *)
108 type obj = NUri.uri * int * metasenv * substitution * obj_kind