]> matita.cs.unibo.it Git - helm.git/blob - helm/software/helena/src/basic_rg/brgValidity.ml
- siimplifified RTM (one register less) now counts x-steps.
[helm.git] / helm / software / helena / src / basic_rg / brgValidity.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 L  = Log
13 module G  = Options
14 module N  = Layer
15 module E  = Entity
16 module B  = Brg
17 module BE = BrgEnvironment
18 module BR = BrgReduction
19
20 (* Internal functions *******************************************************)
21
22 let level = 4
23
24 let warn s = L.warn (pred level) s
25
26 let message1 st1 m t1 =
27    L.et_items1 "In the environment" m st1 t1
28
29 let log1 st s m t =
30    let s =  s ^ " the term" in
31    L.log st BR.specs (pred level) (message1 s m t) 
32
33 let error1 err s m t =
34    err (message1 s m t)
35
36 let message2 m1 t1 m2 t2 =    
37    let sm2, st2 = "In the environment", "the term" in
38    let sm1, st1 = "is valid, but in the environment", "it must be of type" in
39    L.et_items2 sm2 m2 st2 t2 ~sc2:sm1 ~c2:m1 st1 t1
40
41 let error2 err m1 t1 m2 t2 =
42    err (message2 m1 t1 m2 t2)
43
44 let zero = Some 0
45
46 let one = Some 1
47
48 let assert_convertibility err f st m u t =
49    if !G.trace >= level then warn "Asserting convertibility for cast";
50    if BR.are_convertible st m zero u m one t then f () else
51    error2 err m u m t
52
53 let assert_applicability err f st m v t =
54    if !G.trace >= level then warn "Asserting applicability";
55    match BR.xwhd st m None t with 
56       | _, B.Sort _                            ->
57          error1 err "not a function" m t
58       | mw, B.Bind (_, B.Abst (true, n, w), _) ->
59          if !G.cc && not (N.assert_not_zero st n) then error1 err "not a function" m t
60          else begin
61             if !G.trace >= level then warn "Asserting convertibility for application";
62             if BR.are_convertible st mw zero w m one v then f () else
63             error2 err mw w m v
64          end
65       | _                                -> assert false (**)
66
67 let rec b_validate err f st m x =
68    if !G.trace >= level then log1 st "Now checking" m x;
69    match x with
70    | B.Sort _         -> f ()
71    | B.LRef (_, i)    ->
72       begin match BR.get m i with
73          | B.Abst _
74          | B.Abbr _ -> f ()
75          | B.Void   -> 
76             error1 err "reference to excluded variable" m x
77       end
78    | B.GRef (_, uri)  ->
79       begin match BE.get_entity uri with
80          | _, _, _, E.Abst _
81          | _, _, _, E.Abbr _ -> f ()
82          | _, _, _, E.Void   ->
83             error1 err "reference to unknown entry" m x
84       end
85    | B.Bind (a, b, t) ->
86       let f () = b_validate err f st (BR.push m a b) t in
87       begin match b with 
88          | B.Abst (_, n, u) -> validate err f st m u
89          | B.Abbr v         -> validate err f st m v
90          | B.Void           -> f ()
91       end
92    | B.Appl (_, v, t)        ->
93       let f () = assert_applicability err f st m v t in
94       let f () = b_validate err f st m t in
95       validate err f st m v
96    | B.Cast (_, u, t)        ->
97       let f () = assert_convertibility err f st m u t in
98       let f () = b_validate err f st m t in
99       validate err f st m u
100
101 (* Interface functions ******************************************************)
102
103 and validate err f st m x = b_validate err f st m x