]> matita.cs.unibo.it Git - helm.git/blob - helm/software/lambda-delta/basic_ag/bag.ml
new kernel basic_rg: implements ufficial lambda-delta with de Bruijn indexes
[helm.git] / helm / software / lambda-delta / basic_ag / bag.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 (* kernel version: basic, absolute, global *)
13 (* note          : experimental *) 
14
15 type uri = NUri.uri
16 type id = Aut.id
17
18 type bind = Void         (* exclusion *)
19           | Abst of term (* abstraction *)
20           | Abbr of term (* abbreviation *)
21
22 and term = Sort of int                    (* hierarchy index *)
23          | LRef of int                    (* location *)
24          | GRef of uri                    (* reference *)
25          | Cast of term * term            (* type, term *)
26          | Appl of term * term            (* argument, function *)
27          | Bind of int * id * bind * term (* location, name, binder, scope *)
28
29 type obj = int * uri * bind (* age, uri, binder, contents *)
30
31 type item = obj option
32
33 type context = (int * id * bind) list (* location, name, binder *) 
34
35 type message = (context, term) Log.item list
36
37 (* Currified constructors ***************************************************)
38
39 let abst w = Abst w
40
41 let abbr v = Abbr v
42
43 let lref i = LRef i
44
45 let cast u t = Cast (u, t)
46
47 let appl u t = Appl (u, t)
48
49 let bind l id b t = Bind (l, id, b, t)
50
51 let bind_abst l id u t = Bind (l, id, Abst u, t)
52
53 let bind_abbr l id v t = Bind (l, id, Abbr v, t)
54
55 (* location handling functions **********************************************)
56
57 let location = ref 0
58
59 let new_location () = let loc = !location in incr location; loc
60
61 let locations () = !location
62
63 (* context handling functions ***********************************************)
64
65 let empty_context = []
66
67 let push msg f es l id b =
68    let rec does_not_occur loc = function
69       | []                          -> true
70       | (l, _, _) :: _ when l = loc -> false
71       | _ :: es                     -> does_not_occur l es
72    in
73    if not (does_not_occur l es) then failwith msg else
74    let c = (l, id, b) :: es in f c
75
76 let append f es1 es2 = 
77    f (List.append es2 es1)
78
79 let map f map es =
80    Cps.list_map f map es
81
82 let contents f es = f es
83
84 let get f es i =
85    let rec aux = function
86       | []               -> f None
87       | (l, id, b) :: tl -> if l = i then f (Some (id, b)) else aux tl
88    in
89    aux es