]> matita.cs.unibo.it Git - helm.git/blob - helm/software/lambda-delta/basic_rg/brg.ml
eaaeb6e6054c8c3fc426b74cd776f0256e89985d
[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 = Abst | Abbr (* abstraction, abbreviation *)
16
17 type term = Sort of int                     (* hierarchy index *)
18           | LRef of int                     (* reverse de Bruijn index *)
19           | GRef of uri                     (* reference *)
20           | Cast of term * term             (* type, term *)
21           | Appl of term * term             (* argument, function *)
22           | Bind of id * bind * term * term (* name, binder, content, scope *)
23
24 type obj = bind * term (* binder, contents *)
25
26 type item = (obj * uri) option (* uri, object *)