]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/mathql_interpreter/intersect.ml
* New operators (Subset, SetEqual and RVarOccurrence) added to MathQL
[helm.git] / helm / ocaml / mathql_interpreter / intersect.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 exception NotCompatible;;
27
28 (* intersect_attributes is successful iff there is no attribute with *)
29 (* two different values in the two lists. The returned list is the   *)
30 (* union of the two lists.                                           *)
31 let rec intersect_attributes (attr1, attr2) =
32  match attr1, attr2 with
33     [],_ -> attr2
34   | _,[] -> attr1
35   | (key1,value1)::tl1, (key2,_)::_ when key1 < key2 ->
36       (key1,value1)::(intersect_attributes (tl1,attr2))
37   | (key1,_)::_, (key2,value2)::tl2 when key2 < key1 ->
38       (key2,value2)::(intersect_attributes (attr1,tl2))
39   | entry1::tl1, entry2::tl2 when entry1 = entry2 ->
40      entry1::(intersect_attributes (tl1,tl2))
41   | _, _ -> raise NotCompatible  (* same keys, different values *)
42 ;;
43
44 (* preserves order and gets rid of duplicates *)
45 let rec intersect_ex l1 l2 =
46  let module S = Mathql_semantics in
47   match (l1, l2) with
48      [],_
49    | _,[] -> []
50    | {S.uri = uri1}::tl1,
51      {S.uri = uri2}::_ when uri1 < uri2 -> intersect_ex tl1 l2
52    | {S.uri = uri1}::_,
53      {S.uri = uri2}::tl2 when uri2 < uri1 -> intersect_ex l1 tl2
54    | {S.uri = uri1 ; S.attributes = attributes1}::tl1,
55      {S.uri = uri2 ; S.attributes = attributes2}::tl2 ->
56        try
57         let attributes' = intersect_attributes (attributes1,attributes2) in
58          {S.uri = uri1 ; S.attributes = attributes'}::(intersect_ex tl1 tl2)
59        with
60         NotCompatible ->
61          intersect_ex tl1 tl2
62 ;;
63
64 let intersect_ex l1 l2 =
65  let before = Unix.time () in
66  let res = intersect_ex l1 l2 in
67  let after = Unix.time () in
68   let ll1 = string_of_int (List.length l1) in
69   let ll2 = string_of_int (List.length l2) in
70   let diff = string_of_float (after -. before) in
71   prerr_endline
72    ("INTERSECT(" ^ ll1 ^ "," ^ ll2 ^ ") = " ^ string_of_int (List.length res) ^
73     ": " ^ diff ^ "s") ;
74   flush stderr ;
75   res
76 ;;