]> matita.cs.unibo.it Git - helm.git/blob - helm/software/helena/src/basic_rg/brgUntrusted.ml
- conditional compilation continues ...
[helm.git] / helm / software / helena / src / basic_rg / brgUntrusted.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 module U  = NUri
13 module L  = Log
14 module E  = Entity
15 module B  = Brg
16 module BE = BrgEnvironment
17 module BR = BrgReduction
18 module BT = BrgType
19 module BV = BrgValidity
20
21 (* Interface functions ******************************************************)
22
23 IFDEF TYPE THEN
24
25 (* to share *)
26 let type_check err f st = function
27    | ra, na, uri, E.Abst t ->
28       let err msg = err (L.Uri uri :: msg) in
29       let f xt tt = 
30          let e = BE.set_entity (ra, na, uri, E.Abst xt) in f tt e
31       in
32       BT.type_of err f st BR.empty_rtm t
33    | ra, na, uri, E.Abbr t ->
34       let err msg = err (L.Uri uri :: msg) in
35       let f xt tt = 
36          let xt = match xt with
37             | B.Cast _ -> xt
38             | _        -> B.Cast (tt, xt)
39          in
40          let e = BE.set_entity (ra, na, uri, E.Abbr xt) in f tt e
41       in
42       BT.type_of err f st BR.empty_rtm t
43    | _, _, _, E.Void       -> assert false
44
45 END
46
47 let validate err f st e =
48    let uri, t = match e with
49       | _, _, uri, E.Abst t -> uri, t
50       | _, _, uri, E.Abbr t -> uri, t
51       | _, _, _,   E.Void   -> assert false
52    in
53    let err msg = err (L.Uri uri :: msg) in
54    let f () = let _ = BE.set_entity e in f () in
55    BV.validate err f st BR.empty_rtm t