]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/ng_paramodulation/orderings.ml
two cases should be assert false at least in TPTP
[helm.git] / helm / software / components / ng_paramodulation / orderings.ml
index 7c8a80995d697479fa9d15540fa84fc39433d5aa..27b3ac6472395e9dda0d151cf032a6c4d81d5957 100644 (file)
@@ -15,7 +15,18 @@ type aux_comparison = XEQ | XLE | XGE | XLT | XGT | XINCOMPARABLE
 
 module Orderings (B : Terms.Blob) = struct
 
+  module Pp = Pp.Pp(B)
+
   type weight = int * (int * int) list;;
+
+let rec eq_foterm x y =
+    x == y ||
+    match x, y with
+    | Terms.Leaf t1, Terms.Leaf t2 -> B.eq t1 t2
+    | Terms.Var i, Terms.Var j -> i = j
+    | Terms.Node l1, Terms.Node l2 -> List.for_all2 eq_foterm l1 l2
+    | _ -> false
+  ;;
   
   let string_of_weight (cw, mw) =
     let s =
@@ -49,12 +60,12 @@ module Orderings (B : Terms.Blob) = struct
     (w, List.sort compare l) (* from the smallest meta to the bigest *)
   ;;
   
-  let compute_unit_clause_weight = 
+  let compute_unit_clause_weight (_,l, _, _) 
     let weight_of_polynomial w m =
       let factor = 2 in      
       w + factor * List.fold_left (fun acc (_,occ) -> acc+occ) 0 m
     in
-    function
+    match l with
     | Terms.Predicate t -> 
         let w, m = weight_of_term t in 
         weight_of_polynomial w m
@@ -68,6 +79,23 @@ module Orderings (B : Terms.Blob) = struct
         let wr, mr = weight_of_term r in 
         weight_of_polynomial (wl+wr) (ml@mr)
   ;;
+
+let compute_goal_weight (_,l, _, _) = 
+    let weight_of_polynomial w m =
+      let factor = 2 in      
+      w + factor * List.fold_left (fun acc (_,occ) -> acc+occ) 0 m
+    in
+    match l with
+    | Terms.Predicate t -> 
+        let w, m = weight_of_term t in 
+        weight_of_polynomial w m
+    | Terms.Equation (l,r,_,_) ->
+        let wl, ml = weight_of_term l in 
+        let wr, mr = weight_of_term r in 
+        let wl = weight_of_polynomial wl ml in
+        let wr = weight_of_polynomial wr mr in
+          - (abs (wl-wr))
+  ;;
   
   (* Riazanov: 3.1.5 pag 38 *)
 (* Compare weights normalized in a new way :
@@ -78,36 +106,36 @@ module Orderings (B : Terms.Blob) = struct
   let compare_weights (h1, w1) (h2, w2) =
     let rec aux hdiff (lt, gt) diffs w1 w2 =
       match w1, w2 with
-       | ((var1, w1)::tl1) as l1, (((var2, w2)::tl2) as l2) ->
-           if var1 = var2 then
-             let diffs = (w1 - w2) + diffs in
-             let r = compare w1 w2 in
-             let lt = lt or (r < 0) in
-             let gt = gt or (r > 0) in
-               if lt && gt then XINCOMPARABLE else
-                 aux hdiff (lt, gt) diffs tl1 tl2
-           else if var1 < var2 then
-             if lt then XINCOMPARABLE else
-               aux hdiff (false,true) (diffs+w1) tl1 l2        
-           else
-             if gt then XINCOMPARABLE else
-               aux hdiff (true,false) (diffs-w2) l1 tl2
-       | [], (_,w2)::tl2 ->
-           if gt then XINCOMPARABLE else
-             aux hdiff (true,false) (diffs-w2) [] tl2
-       | (_,w1)::tl1, [] ->
-           if lt then XINCOMPARABLE else
-             aux hdiff (false,true) (diffs+w1) tl1 []
-       | [], [] ->
-           if lt then
-             if hdiff <= 0 then XLT
+        | ((var1, w1)::tl1) as l1, (((var2, w2)::tl2) as l2) ->
+            if var1 = var2 then
+              let diffs = (w1 - w2) + diffs in
+              let r = compare w1 w2 in
+              let lt = lt or (r < 0) in
+              let gt = gt or (r > 0) in
+                if lt && gt then XINCOMPARABLE else
+                  aux hdiff (lt, gt) diffs tl1 tl2
+            else if var1 < var2 then
+              if lt then XINCOMPARABLE else
+                aux hdiff (false,true) (diffs+w1) tl1 l2        
+            else
+              if gt then XINCOMPARABLE else
+                aux hdiff (true,false) (diffs-w2) l1 tl2
+        | [], (_,w2)::tl2 ->
+            if gt then XINCOMPARABLE else
+              aux hdiff (true,false) (diffs-w2) [] tl2
+        | (_,w1)::tl1, [] ->
+            if lt then XINCOMPARABLE else
+              aux hdiff (false,true) (diffs+w1) tl1 []
+        | [], [] ->
+            if lt then
+              if hdiff <= 0 then XLT
               else if (- diffs) >= hdiff then XLE else XINCOMPARABLE
-           else if gt then
-             if hdiff >= 0 then XGT
+            else if gt then
+              if hdiff >= 0 then XGT
               else if diffs >= (- hdiff) then XGE else XINCOMPARABLE
-           else
-             if hdiff < 0 then XLT
-             else if hdiff > 0 then XGT
+            else
+              if hdiff < 0 then XLT
+              else if hdiff > 0 then XGT
               else XEQ
     in
       aux (h1-h2) (false,false) 0 w1 w2
@@ -117,6 +145,11 @@ module Orderings (B : Terms.Blob) = struct
    * if head_only=true then it is not >>> but helps case 2 of 3.14 p 39 *)
   let rec aux_ordering ?(head_only=false) t1 t2 =
     match t1, t2 with
+    (* We want to discard any identity equality. *
+     * If we give back XEQ, no inference rule    *
+     * will be applied on this equality          *)
+    | Terms.Var i, Terms.Var j when i = j ->
+        XEQ
     (* 1. *)
     | Terms.Var _, _
     | _, Terms.Var _ -> XINCOMPARABLE
@@ -131,8 +164,8 @@ module Orderings (B : Terms.Blob) = struct
         let rec cmp t1 t2 =
           match t1, t2 with
           | [], [] -> XEQ
-          | _, [] -> XGT
-          | [], _ -> XLT
+          | _, [] -> (* XGT *) assert false (* hd symbols were eq *)
+          | [], _ -> (* XLT *) assert false (* hd symbols were eq *)
           | hd1::tl1, hd2::tl2 ->
               let o = aux_ordering ~head_only hd1 hd2 in
               if o = XEQ && not head_only then cmp tl1 tl2 else o
@@ -197,14 +230,79 @@ module Orderings (B : Terms.Blob) = struct
         ) else r 
     | res -> res
   ;;
+
+  let rec lpo s t =
+    match s,t with
+      | s, t when eq_foterm s t ->
+          XEQ
+      | Terms.Var _, Terms.Var _ ->
+          XINCOMPARABLE
+      | _, Terms.Var i ->
+          if (List.mem i (Terms.vars_of_term s)) then XGT
+          else XINCOMPARABLE
+      | Terms.Var i,_ ->
+          if (List.mem i (Terms.vars_of_term t)) then XLT
+          else XINCOMPARABLE
+      | Terms.Node (hd1::tl1), Terms.Node (hd2::tl2) ->
+          let rec ge_subterm t ol = function
+            | [] -> (false, ol)
+            | x::tl ->
+                let res = lpo x t in
+                match res with
+                  | XGT | XEQ -> (true,res::ol)
+                  | o -> ge_subterm t (o::ol) tl
+          in
+          let (res, l_ol) = ge_subterm t [] tl1 in
+            if res then XGT
+            else let (res, r_ol) = ge_subterm s [] tl2 in
+              if res then XLT
+              else begin
+                let rec check_subterms t = function
+                  | _,[] -> true
+                  | o::ol,_::tl ->
+                      if o = XLT then check_subterms t (ol,tl)
+                      else false
+                  | [], x::tl ->
+                      if lpo x t = XLT then check_subterms t ([],tl)
+                      else false
+                in
+                match aux_ordering hd1 hd2 with
+                  | XGT -> if check_subterms s (r_ol,tl2) then XGT
+                    else XINCOMPARABLE
+                  | XLT -> if check_subterms t (l_ol,tl1) then XLT
+                    else XINCOMPARABLE
+                  | XEQ -> 
+                      let lex = List.fold_left2
+                        (fun acc si ti -> if acc = XEQ then lpo si ti else acc)
+                        XEQ tl1 tl2
+                      in
+                 (match lex with
+                    | XGT ->
+                        if List.for_all (fun x -> lpo s x = XGT) tl2 then XGT
+                      else XINCOMPARABLE
+                    | XLT ->
+                        if List.for_all (fun x -> lpo x t = XLT) tl1 then XLT
+                      else XINCOMPARABLE
+                    | o -> o)   
+              | XINCOMPARABLE -> XINCOMPARABLE
+              | _ -> assert false
+          end
+      | _,_ -> aux_ordering s t
             
+  ;;
+
   let compare_terms x y = 
-    match nonrec_kbo x y with
-    | XINCOMPARABLE -> Terms.Incomparable
-    | XGT -> Terms.Gt
-    | XLT -> Terms.Lt
-    | XEQ -> Terms.Eq
-    | _ -> assert false
-  ;; 
+      match nonrec_kbo x y with
+        | XINCOMPARABLE -> Terms.Incomparable
+        | XGT -> Terms.Gt
+        | XLT -> Terms.Lt
+        | XEQ -> Terms.Eq
+        | _ -> assert false
+  ;;
+
+  let profiler = HExtlib.profile ~enable:true "compare_terms";;
+  let compare_terms x y =
+    profiler.HExtlib.profile (compare_terms x) y
+  ;;
 
 end