]> matita.cs.unibo.it Git - helm.git/blob - helm/software/lambda-delta/basic_rg/brg.ml
- new semantic log system
[helm.git] / helm / software / lambda-delta / basic_rg / brg.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 type uri = NUri.uri
13 type id = Aut.id
14
15 type bind = Void         (* exclusion *)
16           | Abst of term (* abstraction *)
17           | Abbr of term (* abbreviation *)
18
19 and term = Sort of int              (* hierarchy index *)
20          | LRef of int              (* reverse de Bruijn index *)
21          | GRef of uri              (* reference *)
22          | Cast of term * term      (* type, term *)
23          | Appl of term * term      (* argument, function *)
24          | Bind of id * bind * term (* name, binder, scope *)
25
26 type obj = int * uri * bind (* age, uri, binder, contents *)
27
28 type item = obj option
29
30 type hierarchy = int -> int
31
32 (* Currified constructors ***************************************************)
33
34 let abst w = Abst w
35
36 let abbr v = Abbr v
37
38 let cast u t = Cast (u, t)
39
40 let appl u t = Appl (u, t)
41
42 let bind id b t = Bind (id, b, t)