]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/binaries/matitaprover/matitaprover.ml
parallel
[helm.git] / helm / software / components / binaries / matitaprover / matitaprover.ml
index b80091e810701b15ad5cb0b0b300e8772e3143a3..3bec2c9c18c3f5e9a2efe17d5e2ab64d3275f577 100644 (file)
@@ -1,3 +1,16 @@
+(*
+    ||M||  This file is part of HELM, an Hypertextual, Electronic        
+    ||A||  Library of Mathematics, developed at the Computer Science     
+    ||T||  Department, University of Bologna, Italy.                     
+    ||I||                                                                
+    ||T||  HELM is free software; you can redistribute it and/or         
+    ||A||  modify it under the terms of the GNU General Public License   
+    \   /  version 2 or (at your option) any later version.      
+     \ /   This software is distributed as is, NO WARRANTY.     
+      V_______________________________________________________________ *)
+
+(* $Id: orderings.ml 9869 2009-06-11 22:52:38Z denes $ *)
+
 module OT = struct type t = string  let compare = Pervasives.compare end 
 module HC = Map.Make(OT)
 
@@ -17,18 +30,26 @@ let hash s =
 hash "==";;
 hash "_";;
 
-let main () =
-  let problem_file = ref "no-file-given" in
-  let tptppath = ref "./" in
-  Arg.parse [
-   "--tptppath", Arg.String (fun p -> tptppath := p), "[path]  TPTP lib root"
-   ] (fun x -> problem_file := x) "matitaprover [problemfile]";
-  let hypotheses, goals = Tptp_cnf.parse ~tptppath:!tptppath !problem_file in
-  let goal = match goals with [x] -> x | _ -> assert false in
-  let module B : Terms.Blob with type t = leaf and type input = Ast.term = struct
+let problem_file = ref "no-file-given";;
+let tptppath = ref "/";;
+let seconds = ref 300;;
+
+let fail_msg () =
+      print_endline ("% SZS status Timeout for " ^ 
+        Filename.basename !problem_file)
+;;
+  
+module type LeafComparer =
+  sig
+    val cmp : leaf -> leaf -> int
+  end
+;;
+
+module MakeBlob(C:LeafComparer) : Terms.Blob 
+  with type t = leaf and type input = Ast.term = struct
         type t = leaf
         let eq a b = a == b
-        let compare (a,_) (b,_) = Pervasives.compare a b
+        let compare a b = C.cmp a b
         let eqP = hash "=="
         let pp (_,a) =  a 
         type input = Ast.term
@@ -55,22 +76,103 @@ let main () =
         let embed t = snd(embed [] t);;
 
   end
-  in
-  let module P = Paramod.Paramod(B) in
-  let module Pp = Pp.Pp(B) in
-  let bag = Terms.M.empty, 0 in
-  let bag, g_passives = P.mk_goal bag goal in
-  let bag, passives = 
-    HExtlib.list_mapi_acc (fun x _ b -> P.mk_passive b x) bag hypotheses 
-  in
-  prerr_endline "Order";
-  HC.iter (fun _ (w,x) -> prerr_endline (" " ^ x ^ " is " ^ string_of_int w)) !cache;
+;;
+
+let success_msg bag l (pp : ?margin:int -> leaf Terms.unit_clause -> string) =
+  print_endline ("% SZS status Unsatisfiable for " ^ 
+    Filename.basename !problem_file);
+  print_endline ("% SZS output start CNFRefutation for " ^ 
+    Filename.basename !problem_file);
+  flush stdout;
+  List.iter (fun x ->
+    print_endline (pp ~margin:max_int 
+      (fst(Terms.M.find x bag)))) l;
+  print_endline ("% SZS output end CNFRefutation for " ^ 
+    Filename.basename !problem_file)
+;;
+
+let start_msg passives g_passives (pp : leaf Terms.unit_clause -> string) =
+        prerr_endline (string_of_int (Unix.getpid ()));
+(*
   prerr_endline "Facts";
-  List.iter (fun x -> prerr_endline (" " ^ Pp.pp_unit_clause x)) passives;
+  List.iter (fun x -> prerr_endline (" " ^ pp x)) passives;
   prerr_endline "Goal";
-  prerr_endline (" " ^ Pp.pp_unit_clause g_passives);
-  ignore(P.paramod bag ~g_passives:[g_passives] ~passives);
-  ()
+  prerr_endline (" " ^ pp g_passives)
+*)
+;;
+
+module Main(C:LeafComparer) = struct
+ let main goal hypotheses =
+   let module B = MakeBlob(C) in
+   let module Pp = Pp.Pp(B) in
+   let module P = Paramod.Paramod(B) in
+   let bag = Terms.M.empty, 0 in
+   let bag, g_passives = P.mk_goal bag goal in
+   let bag, passives = 
+     HExtlib.list_mapi_acc (fun x _ b -> P.mk_passive b x) bag hypotheses 
+   in
+   start_msg passives g_passives Pp.pp_unit_clause;
+   match 
+     P.paramod 
+      ~max_steps:max_int bag ~g_passives:[g_passives] ~passives 
+   with
+   | [] -> ()
+   | (bag,_,l)::_ -> success_msg bag l Pp.pp_unit_clause
+ ;;
+end
+
+let killall l = 
+  List.iter (fun pid -> try Unix.kill pid 9 with _ -> ()) l
+;;
+
+let main () =
+  let childs = ref [] in
+  let _ =
+    Sys.signal 24 (Sys.Signal_handle 
+      (fun _ -> fail_msg (); killall !childs; exit 1)) 
+  in
+  let _ =
+    Sys.signal Sys.sigalrm 
+      (Sys.Signal_handle (fun _ -> fail_msg (); killall !childs; exit 1)) 
+  in
+  Arg.parse [
+   "--tptppath", Arg.String (fun p -> tptppath := p), 
+     ("[path]  TPTP lib root, default " ^ !tptppath);
+   "--timeout", Arg.Int (fun p -> seconds := p), 
+     ("[seconds]  timeout, default " ^ string_of_int !seconds);
+   ] (fun x -> problem_file := x) "
+Matitaprover is the first order automatic prover that equips the 
+Matita interactive theorem prover (http://matita.cs.unibo.it).
+
+Developed by A.Asperti, M.Denes and E.Tassi, released under GPL-2.1
+
+If --tptppath is given, instead of the problem file you can just give the 
+problem name with the .p suffix (e.g. BOO001-1.p)
+
+If --tptppath is not given, included files (i.e. axiom sets) are searched 
+in the current directory only.
+
+usage: matitaprover [options] problemfile";
+  let hypotheses, goals = Tptp_cnf.parse ~tptppath:!tptppath !problem_file in
+  let goal = match goals with [x] -> x | _ -> assert false in
+  let _ = Unix.alarm !seconds in
+  childs := 
+    List.map 
+      (fun f -> 
+         let pid = Unix.fork () in 
+         if pid = 0 then (f ();exit 0) else pid)
+    [ 
+      (fun () ->     
+        let module M = Main(struct let cmp (a,_) (b,_) = compare a b end) in
+        M.main goal hypotheses)
+    ;
+      (fun () ->     
+        let module M = Main(struct let cmp (a,_) (b,_) = compare b a end) in
+        M.main goal hypotheses)
+    ];
+  let _ = Unix.wait () in
+  killall !childs;
+  exit 0;
 ;;
 
 main ()