]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/ng_paramodulation/nCicBlob.ml
fb9ee62457b2c2e20257ac08368ac4f09fffa6f1
[helm.git] / helm / software / components / ng_paramodulation / nCicBlob.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 (* $Id: terms.mli 9822 2009-06-03 15:37:06Z tassi $ *)
13
14 let eqPref = ref (fun _ -> assert false);;
15 let set_eqP t = eqPref := fun _ -> t;;
16
17 let default_eqP() = 
18   let uri = NUri.uri_of_string "cic:/matita/ng/Plogic/equality/eq.ind" in
19   let ref = NReference.reference_of_spec uri (NReference.Ind(true,0,2)) in
20     NCic.Const ref
21 ;;
22
23 let equivalence_relation =
24   let uri = NUri.uri_of_string "cic:/matita/ng/properties/relations/eq_rel.con"
25   in
26   let ref = NReference.reference_of_spec uri (NReference.Fix(0,1,2)) 
27   in NCic.Const ref
28
29 let setoid_eq =
30   let uri = NUri.uri_of_string "cic:/matita/ng/sets/setoids/eq.con" in
31   let ref = NReference.reference_of_spec uri (NReference.Fix(0,0,2)) 
32   in NCic.Const ref
33
34 let set_default_eqP() = eqPref := default_eqP
35
36 let set_reference_of_oxuri f = 
37   let eqnew = function 
38       _ -> 
39         let r = f(UriManager.uri_of_string 
40           "cic:/matita/logic/equality/eq.ind#xpointer(1/1)")
41         in
42           NCic.Const r
43   in
44     eqPref := eqnew
45 ;;
46
47
48 module type NCicContext =
49   sig
50     val metasenv : NCic.metasenv
51     val subst : NCic.substitution
52     val context : NCic.context
53   end
54
55 module NCicBlob(C : NCicContext) : Terms.Blob 
56 with type t = NCic.term and type input = NCic.term = struct
57
58   type t = NCic.term
59
60   let eq x y = x = y;;
61     (* NCicReduction.alpha_eq C.metasenv C.subst C.context x y;; *)
62
63   let height_of_ref = function
64     | NReference.Def h -> h
65     | NReference.Fix(_,_,h) -> h
66     | _ -> 0
67
68   let compare_refs (NReference.Ref (u1,r1)) (NReference.Ref (u2,r2)) =
69     let x = height_of_ref r2 - height_of_ref r1 in
70       if x = 0 then 
71         Hashtbl.hash (NUri.string_of_uri u1,r1) - 
72           Hashtbl.hash (NUri.string_of_uri u2,r2)
73       else x 
74
75   let rec compare x y = 
76     match x,y with
77     | NCic.Rel i, NCic.Rel j -> j-i
78     | NCic.Meta (i,_), NCic.Meta (j,_) -> i-j
79     | NCic.Const r1, NCic.Const r2 -> compare_refs r1 r2
80     (*NReference.compare r1 r2*)
81     | NCic.Appl l1, NCic.Appl l2 -> FoUtils.lexicograph compare l1 l2
82     | NCic.Rel _, ( NCic.Meta _ | NCic.Const _ | NCic.Appl _ ) -> ~-1
83     | ( NCic.Meta _ | NCic.Const _ | NCic.Appl _ ), NCic.Rel _ -> 1
84     | NCic.Const _, ( NCic.Meta _ | NCic.Appl _ ) -> ~-1
85     | ( NCic.Meta _ | NCic.Appl _ ), NCic.Const _ -> 1
86     | NCic.Appl _, NCic.Meta _ -> ~-1
87     | NCic.Meta _, NCic.Appl _ -> 1
88     | _ -> Pervasives.compare x y
89         (* was assert false, but why? *)
90         
91   ;;
92   
93   let compare x y = 
94     if NCicReduction.alpha_eq [] [] [] x y  then 0 
95     (* if x = y  then 0 *)
96     else compare x y
97   ;;
98
99   let eqP = (!eqPref)()
100   ;;
101
102   let is_eq = function
103     | Terms.Node [ Terms.Leaf eqt ; ty; l; r ] when eq eqP eqt ->
104         Some (ty,l,r) 
105 (*
106     | Terms.Node [ Terms.Leaf eqt ; _; Terms.Node [Terms.Leaf eqt2 ; ty]; l; r]
107         when eq equivalence_relation eqt && eq setoid_eq eqt2 ->
108         Some (ty,l,r) *)
109     | _ -> None
110
111   let pp t = 
112     NCicPp.ppterm ~context:C.context ~metasenv:C.metasenv ~subst:C.subst t;;
113
114   type input = NCic.term
115
116   let rec embed = function
117     | NCic.Meta (i,_) -> Terms.Var i, [i]
118     | NCic.Appl l ->
119         let rec aux acc l = function
120           |[] -> acc@l
121           |hd::tl -> if List.mem hd l then aux acc l tl else aux (hd::acc) l tl
122         in
123         let res,vars = List.fold_left
124           (fun (r,v) t -> let r1,v1 = embed t in (r1::r),aux [] v v1) ([],[]) l
125         in (Terms.Node (List.rev res)), vars
126     | t -> Terms.Leaf t, []
127   ;;
128
129   let embed t = fst (embed t) ;;
130
131   let saturate t ty = 
132     let sty, _, args = 
133       NCicMetaSubst.saturate ~delta:0 C.metasenv C.subst C.context
134         ty 0
135     in
136     let proof = 
137       if args = [] then Terms.Leaf t 
138       else Terms.Node (Terms.Leaf t :: List.map embed args)
139     in
140     let sty = embed sty in
141     proof, sty
142   ;;
143   
144  end