]> matita.cs.unibo.it Git - helm.git/blob - components/ng_kernel/nCic.ml
matita 0.5.1 tagged
[helm.git] / components / ng_kernel / nCic.ml
1 (*
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.                     
5     ||I||                                                                
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_______________________________________________________________ *)
11
12 (* $Id$ *)
13
14 (********************************* TERMS ************************************)
15
16 type universe = (bool * NUri.uri) list 
17   (* Max of non-empty list of named universes, or their successor (when true) *)
18
19 type sort = Prop | Type of universe
20
21 type implicit_annotation = [ `Closed | `Type | `Hole | `Term ]
22
23 type lc_kind = Irl of int | Ctx of term list
24
25 and local_context = int * lc_kind             (* shift (0 -> no shift), 
26                                                  subst (None means id) *) 
27 and term =
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                  *)
41
42
43 (********************************* TYPING ***********************************)
44
45 type context_entry =                       (* A declaration or definition *)
46  | Decl of term                            (* type *)
47  | Def  of term * term                     (* body, type *)
48
49 type hypothesis = string * context_entry   
50
51 type context = hypothesis list
52
53 type conjecture = string option * context * term
54
55 type metasenv = (int * conjecture) list
56
57 type subst_entry = string option * context * term * term
58
59 type substitution = (int * subst_entry) list
60
61
62 (******************************** OBJECTS **********************************)
63
64 type relevance = bool list (* relevance of arguments for conversion *)
65
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 *)
69
70 type constructor = relevance * string * term  (* id, type *)
71
72 type inductiveType = 
73  relevance * string * term * constructor list    
74  (* relevance, typename, arity, constructors *)
75
76 type def_flavour = (* presentational *)
77   [ `Definition | `Fact | `Lemma | `Theorem | `Corollary | `Example ]
78
79 type def_pragma = (* pragmatic of the object *)
80   [ `Coercion of int
81   | `Elim of sort       (* elimination principle; universe is not relevant *)
82   | `Projection         (* record projection *)
83   | `InversionPrinciple (* inversion principle *)
84   | `Variant 
85   | `Local 
86   | `Regular ]            (* Local = hidden technicality *)
87  
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 *)
92
93 type generated = [ `Generated | `Provided ]
94
95 type c_attr = generated * def_flavour * def_pragma
96 type f_attr = generated * def_flavour
97 type i_attr = generated * ind_pragma
98
99  (* invariant: metasenv and substitution have disjoint domains *)
100 type obj_kind =
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 *)
106
107  (* the int must be 0 if the object has no body *)
108 type obj = NUri.uri * int * metasenv * substitution * obj_kind