]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/library/coercGraph.ml
test branch
[helm.git] / helm / ocaml / library / coercGraph.ml
1 (* Copyright (C) 2000, HELM Team.
2  * 
3  * This file is part of HELM, an Hypertextual, Electronic
4  * Library of Mathematics, developed at the Computer Science
5  * Department, University of Bologna, Italy.
6  * 
7  * HELM is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  * 
12  * HELM is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with HELM; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
20  * MA  02111-1307, USA.
21  * 
22  * For details, see the HELM World-Wide-Web page,
23  * http://cs.unibo.it/helm/.
24  *)
25
26 (* $Id$ *)
27
28 open Printf;;
29
30 type coercion_search_result = 
31   | SomeCoercion of Cic.term
32   | NoCoercion
33   | NotMetaClosed
34   | NotHandled of string Lazy.t
35
36 let debug = false
37 let debug_print s = if debug then prerr_endline (Lazy.force s) else ()
38
39 (* searches a coercion fron src to tgt in the !coercions list *)
40 let look_for_coercion src tgt =
41   try 
42     let l = 
43       CoercDb.find_coercion 
44         (fun (s,t) -> CoercDb.eq_carr s src && CoercDb.eq_carr t tgt) 
45     in
46     match l with
47     | [] -> 
48         debug_print 
49           (lazy 
50             (sprintf ":-( coercion non trovata da %s a %s" 
51               (CoercDb.name_of_carr src) 
52               (CoercDb.name_of_carr tgt)));
53         NoCoercion
54     | [u] -> 
55         debug_print (lazy (
56           sprintf ":-) TROVATA 1 coercion da %s a %s: %s" 
57             (CoercDb.name_of_carr src) 
58             (CoercDb.name_of_carr tgt)
59             (UriManager.name_of_uri u)));
60         SomeCoercion (CicUtil.term_of_uri u)
61     | u::_ -> 
62         debug_print (lazy (
63           sprintf ":-/ TROVATE %d coercion(s) da %s a %s, prendo la prima: %s" 
64             (List.length l)
65             (CoercDb.name_of_carr src) 
66             (CoercDb.name_of_carr tgt)
67             (UriManager.name_of_uri u)));
68         SomeCoercion (CicUtil.term_of_uri u)
69   with
70     | CoercDb.EqCarrNotImplemented s -> NotHandled s
71     | CoercDb.EqCarrOnNonMetaClosed -> NotMetaClosed
72 ;;
73
74 let look_for_coercion src tgt = 
75   let src_uri = CoercDb.coerc_carr_of_term src in
76   let tgt_uri = CoercDb.coerc_carr_of_term tgt in
77   look_for_coercion src_uri tgt_uri
78
79 let is_a_coercion t = 
80   try
81     let uri = CicUtil.uri_of_term t in
82     CoercDb.is_a_coercion uri
83   with Invalid_argument _ -> false
84
85 let source_of t = 
86   try
87     let uri = CicUtil.uri_of_term t in
88     CoercDb.term_of_carr (fst (CoercDb.get_carr uri))
89   with Invalid_argument _ -> assert false (* t must be a coercion *)
90   
91 let target_of t =
92   try
93     let uri = CicUtil.uri_of_term t in
94     CoercDb.term_of_carr (snd (CoercDb.get_carr uri))
95   with Invalid_argument _ -> assert false (* t must be a coercion *)
96     
97 (* EOF *)