]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/ng_kernel/nCic.ml
added Local pragma, moved leftno and inductive into obj, added relevance attribute...
[helm.git] / helm / software / components / ng_kernel / nCic.ml
1 (* Copyright (C) 2000, HELM Team.
2  * 
3  * This file is part of HELM, an Hypertextual, Electronic
4  * Library of Mathematics, developed at the Computer Science
5  * Department, University of Bologna, Italy.
6  * 
7  * HELM is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  * 
12  * HELM is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with HELM; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
20  * MA  02111-1307, USA.
21  * 
22  * For details, see the HELM World-Wide-Web page,
23  * http://cs.unibo.it/helm/.
24  *)
25
26 (********************************* TERMS ************************************)
27
28 type sort = Prop | Set | Type of int | CProp
29
30 type implicit_annotation = [ `Closed | `Type | `Hole | `Term ]
31
32 type local_context = int * (term list) option    (* shift (0 -> no shift), 
33                                                     subst (None means id) *) 
34 and term =
35  | Rel      of int                            (* DeBruijn index, 1 based    *)
36  | Meta     of int * local_context
37  | Appl     of term list                      (* arguments                  *)
38  | Prod     of string * term * term           (* binder, source, target     *)
39  | Lambda   of string * term * term           (* binder, source, target     *)
40  | LetIn    of string * term * term * term    (* binder, type, term, body   *)
41 (* Cast \def degenerate LetIn *)
42  | Const    of NReference.reference           (* ref has (indtype|constr)no *)
43  | Sort     of sort                           (* sort                       *)
44  | Implicit of implicit_annotation            (* ...                        *)
45  | Match    of NReference.reference *         (* ind. reference,            *)
46     term * term *                             (*  outtype, ind. term        *)
47     term list                                 (*  patterns                  *)
48
49
50 (********************************* TYPING ***********************************)
51
52 type context_entry =                       (* A declaration or definition *)
53  | Decl of term                            (* type *)
54  | Def  of term * term                     (* body, type *)
55
56 type hypothesis = string * context_entry   
57
58 type context = hypothesis list
59
60 type conjecture = int * string option * context * term
61
62 type metasenv = conjecture list
63
64 type substitution = (int * (string option * context * term * term)) list
65
66
67 (******************************** OBJECTS **********************************)
68
69 type relevance = bool list (* relevance of arguments for conversion *)
70
71 type inductiveFun = relevance * string * int * term * term 
72   (* if coinductive, the int has no meaning and must be set to -1 *)
73
74 type constructor = relevance * string * term  (* id, type *)
75
76 type inductiveType = 
77  relevance * string * term * constructor list    
78  (* relevance, typename, arity, constructors *)
79
80 type def_flavour = (* presentational *)
81   [ `Definition | `Fact | `Lemma | `Theorem | `Corollary | `Example ]
82
83 type def_pragma = (* pragmatic of the object *)
84   [ `Coercion of int
85   | `Elim of sort       (* elimination principle; universe is not relevant *)
86   | `Projection         (* record projection *)
87   | `InversionPrinciple (* inversion principle *)
88   | `Variant 
89   | `Local ] (* Local = hidden technicality *)
90  
91 type ind_pragma = (* pragmatic of the object *)
92   [ `Record of (string * bool * int) list ]
93   (* inductive type that encodes a record; the arguments are the record 
94    * fields names and if they are coercions and then the coercion arity *)
95
96 type generated = [ `Generated | `Provided ]
97
98 type c_attr = generated * def_flavour * def_pragma
99 type f_attr = generated * def_flavour
100 type i_attr = generated * ind_pragma
101
102  (* invariant: metasenv and substitution have disjoint domains *)
103 type obj =
104  | Constant  of NUri.uri * metasenv * substitution * relevance * string * term option * term * c_attr
105  | Fixpoint  of NUri.uri * metasenv * substitution * bool * inductiveFun list * f_attr
106  | Inductive of NUri.uri * metasenv * substitution * bool * int * inductiveType list * i_attr
107                 (* uri, menv, subst, (co)inductive, leftno, types *)
108