src/HOL/Tools/res_atp.ML
author paulson
Mon, 23 Jan 2006 11:41:54 +0100
changeset 18753 aa82bd41555d
parent 18700 f04a8755d6ca
child 18798 ca02a2077955
permissions -rw-r--r--
ResClasimp.get_clasimp_lemmas now takes all subgoals rather than only the first
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
15608
f161fa6f8fd5 bug fixes involving typechecking clauses
paulson
parents: 15603
diff changeset
     1
(*  Author: Jia Meng, Cambridge University Computer Laboratory
f161fa6f8fd5 bug fixes involving typechecking clauses
paulson
parents: 15603
diff changeset
     2
    ID: $Id$
f161fa6f8fd5 bug fixes involving typechecking clauses
paulson
parents: 15603
diff changeset
     3
    Copyright 2004 University of Cambridge
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
     4
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
     5
ATPs with TPTP format input.
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
     6
*)
15452
e2a721567f67 Jia Meng: delta simpsets and clasets
paulson
parents: 15347
diff changeset
     7
16802
6eeee59dac4c use Toplevel.print_state_hook instead of adhoc Proof.atp_hook;
wenzelm
parents: 16767
diff changeset
     8
signature RES_ATP =
6eeee59dac4c use Toplevel.print_state_hook instead of adhoc Proof.atp_hook;
wenzelm
parents: 16767
diff changeset
     9
sig
17306
5cde710a8a23 Progress on eprover linkup, also massive tidying
paulson
parents: 17305
diff changeset
    10
  val prover: string ref
16802
6eeee59dac4c use Toplevel.print_state_hook instead of adhoc Proof.atp_hook;
wenzelm
parents: 16767
diff changeset
    11
  val custom_spass: string list ref
17484
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
    12
  val destdir: string ref
17849
d7619ccf22e6 signature changes
paulson
parents: 17845
diff changeset
    13
  val helper_path: string -> string -> string
17484
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
    14
  val problem_name: string ref
17690
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17525
diff changeset
    15
  val time_limit: int ref
18003
2aecb2d68c00 Added "writeln_strs" to the signature
mengj
parents: 17888
diff changeset
    16
  val writeln_strs: TextIO.outstream -> TextIO.vector list -> unit
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
    17
end;
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
    18
16802
6eeee59dac4c use Toplevel.print_state_hook instead of adhoc Proof.atp_hook;
wenzelm
parents: 16767
diff changeset
    19
structure ResAtp: RES_ATP =
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
    20
struct
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
    21
17150
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 17091
diff changeset
    22
val call_atp = ref false;
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 17091
diff changeset
    23
val hook_count = ref 0;
18675
333a73034023 more practical time limit
paulson
parents: 18404
diff changeset
    24
val time_limit = ref 30;
17150
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 17091
diff changeset
    25
17404
d16c3a62c396 the experimental tagging system, and the usual tidying
paulson
parents: 17317
diff changeset
    26
val prover = ref "E";   (* use E as the default prover *)
17305
6cef3aedd661 axioms now included in tptp files, no /bin/cat and various tidying
paulson
parents: 17235
diff changeset
    27
val custom_spass =   (*specialized options for SPASS*)
17690
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17525
diff changeset
    28
      ref ["-Auto=0","-FullRed=0","-IORe","-IOFc","-RTaut","-RFSub","-RBSub"];
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
    29
17484
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
    30
val destdir = ref "";   (*Empty means write files to /tmp*)
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
    31
val problem_name = ref "prob";
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
    32
17819
1241e5d31d5b small tidy-up of utility functions
paulson
parents: 17775
diff changeset
    33
(*Return the path to a "helper" like SPASS or tptp2X, first checking that
1241e5d31d5b small tidy-up of utility functions
paulson
parents: 17775
diff changeset
    34
  it exists.  FIXME: modify to use Path primitives and move to some central place.*)  
1241e5d31d5b small tidy-up of utility functions
paulson
parents: 17775
diff changeset
    35
fun helper_path evar base =
1241e5d31d5b small tidy-up of utility functions
paulson
parents: 17775
diff changeset
    36
  case getenv evar of
1241e5d31d5b small tidy-up of utility functions
paulson
parents: 17775
diff changeset
    37
      "" => error  ("Isabelle environment variable " ^ evar ^ " not defined")
1241e5d31d5b small tidy-up of utility functions
paulson
parents: 17775
diff changeset
    38
    | home => 
1241e5d31d5b small tidy-up of utility functions
paulson
parents: 17775
diff changeset
    39
        let val path = home ^ "/" ^ base
1241e5d31d5b small tidy-up of utility functions
paulson
parents: 17775
diff changeset
    40
        in  if File.exists (File.unpack_platform_path path) then path 
1241e5d31d5b small tidy-up of utility functions
paulson
parents: 17775
diff changeset
    41
	    else error ("Could not find the file " ^ path)
1241e5d31d5b small tidy-up of utility functions
paulson
parents: 17775
diff changeset
    42
	end;  
1241e5d31d5b small tidy-up of utility functions
paulson
parents: 17775
diff changeset
    43
17717
7c6a96cbc966 improvements for problem generation
paulson
parents: 17690
diff changeset
    44
fun probfile_nosuffix _ = 
17484
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
    45
  if !destdir = "" then File.platform_path (File.tmp_path (Path.basic (!problem_name)))
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
    46
  else if File.exists (File.unpack_platform_path (!destdir))
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
    47
  then !destdir ^ "/" ^ !problem_name
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
    48
  else error ("No such directory: " ^ !destdir);
15644
f2ef8c258fa4 *** empty log message ***
quigley
parents: 15608
diff changeset
    49
17717
7c6a96cbc966 improvements for problem generation
paulson
parents: 17690
diff changeset
    50
fun prob_pathname n = probfile_nosuffix n ^ "_" ^ Int.toString n;
7c6a96cbc966 improvements for problem generation
paulson
parents: 17690
diff changeset
    51
16802
6eeee59dac4c use Toplevel.print_state_hook instead of adhoc Proof.atp_hook;
wenzelm
parents: 16767
diff changeset
    52
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
    53
(**** For running in Isar ****)
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
    54
17764
fde495b9e24b improved process handling. tidied
paulson
parents: 17746
diff changeset
    55
fun writeln_strs _   []      = ()
fde495b9e24b improved process handling. tidied
paulson
parents: 17746
diff changeset
    56
  | writeln_strs out (s::ss) = (TextIO.output (out, s); TextIO.output (out, "\n"); writeln_strs out ss);
16925
0fd7b1438d28 simpler variable names, and no types for monomorphic constants
paulson
parents: 16904
diff changeset
    57
17502
8836793df947 further tidying; killing of old Watcher loops
paulson
parents: 17488
diff changeset
    58
(* write out a subgoal as tptp clauses to the file "xxxx_N"*)
17888
116a8d1c7a67 new interface to make_conjecture_clauses
paulson
parents: 17849
diff changeset
    59
fun tptp_inputs_tfrees ths pf n (axclauses,classrel_clauses,arity_clauses) =
17775
2679ba74411f minor code tidyig
paulson
parents: 17773
diff changeset
    60
  let
17888
116a8d1c7a67 new interface to make_conjecture_clauses
paulson
parents: 17849
diff changeset
    61
    val clss = ResClause.make_conjecture_clauses (map prop_of ths)
17775
2679ba74411f minor code tidyig
paulson
parents: 17773
diff changeset
    62
    val (tptp_clss,tfree_litss) = ListPair.unzip (map ResClause.clause2tptp clss)
2679ba74411f minor code tidyig
paulson
parents: 17773
diff changeset
    63
    val tfree_clss = map ResClause.tfree_clause (foldl (op union_string) [] tfree_litss)
2679ba74411f minor code tidyig
paulson
parents: 17773
diff changeset
    64
    val classrel_cls = map ResClause.tptp_classrelClause classrel_clauses
2679ba74411f minor code tidyig
paulson
parents: 17773
diff changeset
    65
    val arity_cls = map ResClause.tptp_arity_clause arity_clauses
2679ba74411f minor code tidyig
paulson
parents: 17773
diff changeset
    66
    val out = TextIO.openOut(pf n)
2679ba74411f minor code tidyig
paulson
parents: 17773
diff changeset
    67
  in
2679ba74411f minor code tidyig
paulson
parents: 17773
diff changeset
    68
    writeln_strs out (List.concat (map ResClause.tptp_clause axclauses));
2679ba74411f minor code tidyig
paulson
parents: 17773
diff changeset
    69
    writeln_strs out (tfree_clss @ tptp_clss @ classrel_cls @ arity_cls);
2679ba74411f minor code tidyig
paulson
parents: 17773
diff changeset
    70
    TextIO.closeOut out
2679ba74411f minor code tidyig
paulson
parents: 17773
diff changeset
    71
  end;
15452
e2a721567f67 Jia Meng: delta simpsets and clasets
paulson
parents: 15347
diff changeset
    72
17502
8836793df947 further tidying; killing of old Watcher loops
paulson
parents: 17488
diff changeset
    73
(* write out a subgoal in DFG format to the file "xxxx_N"*)
17888
116a8d1c7a67 new interface to make_conjecture_clauses
paulson
parents: 17849
diff changeset
    74
fun dfg_inputs_tfrees ths pf n (axclauses,classrel_clauses,arity_clauses) = 
116a8d1c7a67 new interface to make_conjecture_clauses
paulson
parents: 17849
diff changeset
    75
    let val clss = ResClause.make_conjecture_clauses (map prop_of ths)
17525
ae5bb6001afb tidying, and support for axclass/classrel clauses
paulson
parents: 17502
diff changeset
    76
        (*FIXME: classrel_clauses and arity_clauses*)
ae5bb6001afb tidying, and support for axclass/classrel clauses
paulson
parents: 17502
diff changeset
    77
        val probN = ResClause.clauses2dfg clss (!problem_name ^ "_" ^ Int.toString n)
17422
3b237822985d massive tidy-up and simplification
paulson
parents: 17404
diff changeset
    78
                        axclauses [] [] []    
17717
7c6a96cbc966 improvements for problem generation
paulson
parents: 17690
diff changeset
    79
	val out = TextIO.openOut(pf n)
16767
2d4433759b8d Fixed some problems with the signal handler.
quigley
parents: 16741
diff changeset
    80
    in
17764
fde495b9e24b improved process handling. tidied
paulson
parents: 17746
diff changeset
    81
	writeln_strs out [probN]; TextIO.closeOut out
17150
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 17091
diff changeset
    82
    end;
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 17091
diff changeset
    83
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16259
diff changeset
    84
17306
5cde710a8a23 Progress on eprover linkup, also massive tidying
paulson
parents: 17305
diff changeset
    85
(* call prover with settings and problem file for the current subgoal *)
17764
fde495b9e24b improved process handling. tidied
paulson
parents: 17746
diff changeset
    86
fun watcher_call_provers sign sg_terms (childin, childout, pid) =
16802
6eeee59dac4c use Toplevel.print_state_hook instead of adhoc Proof.atp_hook;
wenzelm
parents: 16767
diff changeset
    87
  let
17422
3b237822985d massive tidy-up and simplification
paulson
parents: 17404
diff changeset
    88
    fun make_atp_list [] n = []
17717
7c6a96cbc966 improvements for problem generation
paulson
parents: 17690
diff changeset
    89
      | make_atp_list (sg_term::xs) n =
16802
6eeee59dac4c use Toplevel.print_state_hook instead of adhoc Proof.atp_hook;
wenzelm
parents: 16767
diff changeset
    90
          let
17717
7c6a96cbc966 improvements for problem generation
paulson
parents: 17690
diff changeset
    91
            val probfile = prob_pathname n
17690
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17525
diff changeset
    92
            val time = Int.toString (!time_limit)
16802
6eeee59dac4c use Toplevel.print_state_hook instead of adhoc Proof.atp_hook;
wenzelm
parents: 16767
diff changeset
    93
          in
18680
677e2bdd75f0 Output.debug;
wenzelm
parents: 18675
diff changeset
    94
            Output.debug ("problem file in watcher_call_provers is " ^ probfile);
17317
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17306
diff changeset
    95
            (*Avoid command arguments containing spaces: Poly/ML and SML/NJ
3f12de2e2e6e Isabelle-ATP link: sortable axiom names; no spaces in switches; general tidying
paulson
parents: 17306
diff changeset
    96
              versions of Unix.execute treat them differently!*)
17764
fde495b9e24b improved process handling. tidied
paulson
parents: 17746
diff changeset
    97
            (*options are separated by Watcher.setting_sep, currently #"%"*)
17306
5cde710a8a23 Progress on eprover linkup, also massive tidying
paulson
parents: 17305
diff changeset
    98
            if !prover = "spass"
16802
6eeee59dac4c use Toplevel.print_state_hook instead of adhoc Proof.atp_hook;
wenzelm
parents: 16767
diff changeset
    99
            then
18700
f04a8755d6ca improved SPASS support
paulson
parents: 18680
diff changeset
   100
              let val baseopts = "%-PGiven=0%-PProblem=0%-Splits=0%-FullRed=0%-DocProof%-TimeLimit=" ^ time
f04a8755d6ca improved SPASS support
paulson
parents: 18680
diff changeset
   101
              val infopts = 
17484
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
   102
		      if !AtpCommunication.reconstruct 
18700
f04a8755d6ca improved SPASS support
paulson
parents: 18680
diff changeset
   103
		          (*Proof reconstruction needs a limited set of inf rules*)
f04a8755d6ca improved SPASS support
paulson
parents: 18680
diff changeset
   104
                      then space_implode "%" (!custom_spass)                           
f04a8755d6ca improved SPASS support
paulson
parents: 18680
diff changeset
   105
                      else "-Auto%-SOS=1"
f04a8755d6ca improved SPASS support
paulson
parents: 18680
diff changeset
   106
                  val spass = helper_path "SPASS_HOME" "SPASS"
f04a8755d6ca improved SPASS support
paulson
parents: 18680
diff changeset
   107
            in 
f04a8755d6ca improved SPASS support
paulson
parents: 18680
diff changeset
   108
                ([("spass", spass, infopts ^ baseopts, probfile)] @ 
17422
3b237822985d massive tidy-up and simplification
paulson
parents: 17404
diff changeset
   109
                  (make_atp_list xs (n+1)))
16802
6eeee59dac4c use Toplevel.print_state_hook instead of adhoc Proof.atp_hook;
wenzelm
parents: 16767
diff changeset
   110
              end
17306
5cde710a8a23 Progress on eprover linkup, also massive tidying
paulson
parents: 17305
diff changeset
   111
            else if !prover = "vampire"
17235
8e55ad29b690 Added ECommunication.ML and modified res_atp.ML, Reconstruction.thy, and
quigley
parents: 17234
diff changeset
   112
	    then 
17819
1241e5d31d5b small tidy-up of utility functions
paulson
parents: 17775
diff changeset
   113
              let val vampire = helper_path "VAMPIRE_HOME" "vampire"
16802
6eeee59dac4c use Toplevel.print_state_hook instead of adhoc Proof.atp_hook;
wenzelm
parents: 16767
diff changeset
   114
              in
17772
818cec5f82a4 major simplification: removal of the goalstring argument
paulson
parents: 17764
diff changeset
   115
                ([("vampire", vampire, "-m 100000%-t " ^ time, probfile)] @
17435
0eed5a1c00c1 PARTIAL conversion to Vampire8
paulson
parents: 17422
diff changeset
   116
                 (make_atp_list xs (n+1)))       (*BEWARE! spaces in options!*)
16802
6eeee59dac4c use Toplevel.print_state_hook instead of adhoc Proof.atp_hook;
wenzelm
parents: 16767
diff changeset
   117
              end
17306
5cde710a8a23 Progress on eprover linkup, also massive tidying
paulson
parents: 17305
diff changeset
   118
      	     else if !prover = "E"
5cde710a8a23 Progress on eprover linkup, also massive tidying
paulson
parents: 17305
diff changeset
   119
      	     then
17819
1241e5d31d5b small tidy-up of utility functions
paulson
parents: 17775
diff changeset
   120
	       let val Eprover = helper_path "E_HOME" "eproof"
17306
5cde710a8a23 Progress on eprover linkup, also massive tidying
paulson
parents: 17305
diff changeset
   121
	       in
17772
818cec5f82a4 major simplification: removal of the goalstring argument
paulson
parents: 17764
diff changeset
   122
		  ([("E", Eprover, 
17690
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17525
diff changeset
   123
		     "--tptp-in%-l5%-xAuto%-tAuto%--cpu-limit=" ^ time,
17422
3b237822985d massive tidy-up and simplification
paulson
parents: 17404
diff changeset
   124
		     probfile)] @
3b237822985d massive tidy-up and simplification
paulson
parents: 17404
diff changeset
   125
		   (make_atp_list xs (n+1)))
17306
5cde710a8a23 Progress on eprover linkup, also massive tidying
paulson
parents: 17305
diff changeset
   126
	       end
5cde710a8a23 Progress on eprover linkup, also massive tidying
paulson
parents: 17305
diff changeset
   127
	     else error ("Invalid prover name: " ^ !prover)
16802
6eeee59dac4c use Toplevel.print_state_hook instead of adhoc Proof.atp_hook;
wenzelm
parents: 16767
diff changeset
   128
          end
15452
e2a721567f67 Jia Meng: delta simpsets and clasets
paulson
parents: 15347
diff changeset
   129
17422
3b237822985d massive tidy-up and simplification
paulson
parents: 17404
diff changeset
   130
    val atp_list = make_atp_list sg_terms 1
16802
6eeee59dac4c use Toplevel.print_state_hook instead of adhoc Proof.atp_hook;
wenzelm
parents: 16767
diff changeset
   131
  in
6eeee59dac4c use Toplevel.print_state_hook instead of adhoc Proof.atp_hook;
wenzelm
parents: 16767
diff changeset
   132
    Watcher.callResProvers(childout,atp_list);
18680
677e2bdd75f0 Output.debug;
wenzelm
parents: 18675
diff changeset
   133
    Output.debug "Sent commands to watcher!"
16802
6eeee59dac4c use Toplevel.print_state_hook instead of adhoc Proof.atp_hook;
wenzelm
parents: 16767
diff changeset
   134
  end
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16259
diff changeset
   135
17717
7c6a96cbc966 improvements for problem generation
paulson
parents: 17690
diff changeset
   136
(*We write out problem files for each subgoal. Argument pf generates filenames,
7c6a96cbc966 improvements for problem generation
paulson
parents: 17690
diff changeset
   137
  and allows the suppression of the suffix "_1" in problem-generation mode.*)
7c6a96cbc966 improvements for problem generation
paulson
parents: 17690
diff changeset
   138
fun write_problem_files pf (ctxt,th)  =
18753
aa82bd41555d ResClasimp.get_clasimp_lemmas now takes all subgoals rather than only the first
paulson
parents: 18700
diff changeset
   139
  let val goals = Thm.prems_of th
aa82bd41555d ResClasimp.get_clasimp_lemmas now takes all subgoals rather than only the first
paulson
parents: 18700
diff changeset
   140
      val (clause_arr, axclauses) = ResClasimp.get_clasimp_lemmas ctxt goals 
18680
677e2bdd75f0 Output.debug;
wenzelm
parents: 18675
diff changeset
   141
      val _ = Output.debug ("claset and simprules total clauses = " ^ 
17717
7c6a96cbc966 improvements for problem generation
paulson
parents: 17690
diff changeset
   142
                     Int.toString (Array.length clause_arr))
7c6a96cbc966 improvements for problem generation
paulson
parents: 17690
diff changeset
   143
      val thy = ProofContext.theory_of ctxt
18270
27227433cb42 Only output arities and class relations if !ResClause.keep_types is true.
mengj
parents: 18003
diff changeset
   144
      val classrel_clauses = if !ResClause.keep_types then ResClause.classrel_clauses_thy thy else []
18680
677e2bdd75f0 Output.debug;
wenzelm
parents: 18675
diff changeset
   145
      val _ = Output.debug ("classrel clauses = " ^ Int.toString (length classrel_clauses))
18270
27227433cb42 Only output arities and class relations if !ResClause.keep_types is true.
mengj
parents: 18003
diff changeset
   146
      val arity_clauses = if !ResClause.keep_types then ResClause.arity_clause_thy thy else []
18680
677e2bdd75f0 Output.debug;
wenzelm
parents: 18675
diff changeset
   147
      val _ = Output.debug ("arity clauses = " ^ Int.toString (length arity_clauses))
17717
7c6a96cbc966 improvements for problem generation
paulson
parents: 17690
diff changeset
   148
      val write = if !prover = "spass" then dfg_inputs_tfrees else tptp_inputs_tfrees
7c6a96cbc966 improvements for problem generation
paulson
parents: 17690
diff changeset
   149
      fun writenext n =
17772
818cec5f82a4 major simplification: removal of the goalstring argument
paulson
parents: 17764
diff changeset
   150
	if n=0 then []
17717
7c6a96cbc966 improvements for problem generation
paulson
parents: 17690
diff changeset
   151
	 else
7c6a96cbc966 improvements for problem generation
paulson
parents: 17690
diff changeset
   152
	   (SELECT_GOAL
7c6a96cbc966 improvements for problem generation
paulson
parents: 17690
diff changeset
   153
	    (EVERY1 [rtac ccontr, ObjectLogic.atomize_tac, skolemize_tac, 
7c6a96cbc966 improvements for problem generation
paulson
parents: 17690
diff changeset
   154
	      METAHYPS(fn negs => 
7c6a96cbc966 improvements for problem generation
paulson
parents: 17690
diff changeset
   155
		(write (make_clauses negs) pf n 
7c6a96cbc966 improvements for problem generation
paulson
parents: 17690
diff changeset
   156
		       (axclauses,classrel_clauses,arity_clauses);
7c6a96cbc966 improvements for problem generation
paulson
parents: 17690
diff changeset
   157
		 all_tac))]) n th;
17772
818cec5f82a4 major simplification: removal of the goalstring argument
paulson
parents: 17764
diff changeset
   158
	    pf n :: writenext (n-1))
18753
aa82bd41555d ResClasimp.get_clasimp_lemmas now takes all subgoals rather than only the first
paulson
parents: 18700
diff changeset
   159
      in (writenext (length goals), clause_arr) end;
15644
f2ef8c258fa4 *** empty log message ***
quigley
parents: 15608
diff changeset
   160
17775
2679ba74411f minor code tidyig
paulson
parents: 17773
diff changeset
   161
val last_watcher_pid = ref (NONE : (TextIO.instream * TextIO.outstream * 
2679ba74411f minor code tidyig
paulson
parents: 17773
diff changeset
   162
                                    Posix.Process.pid * string list) option);
2679ba74411f minor code tidyig
paulson
parents: 17773
diff changeset
   163
2679ba74411f minor code tidyig
paulson
parents: 17773
diff changeset
   164
fun kill_last_watcher () =
2679ba74411f minor code tidyig
paulson
parents: 17773
diff changeset
   165
    (case !last_watcher_pid of 
2679ba74411f minor code tidyig
paulson
parents: 17773
diff changeset
   166
         NONE => ()
2679ba74411f minor code tidyig
paulson
parents: 17773
diff changeset
   167
       | SOME (_, childout, pid, files) => 
18680
677e2bdd75f0 Output.debug;
wenzelm
parents: 18675
diff changeset
   168
	  (Output.debug ("Killing old watcher, pid = " ^ string_of_pid pid);
17775
2679ba74411f minor code tidyig
paulson
parents: 17773
diff changeset
   169
	   Watcher.killWatcher pid;  
2679ba74411f minor code tidyig
paulson
parents: 17773
diff changeset
   170
	   ignore (map (try OS.FileSys.remove) files)))
18680
677e2bdd75f0 Output.debug;
wenzelm
parents: 18675
diff changeset
   171
     handle OS.SysErr _ => Output.debug "Attempt to kill watcher failed";
17525
ae5bb6001afb tidying, and support for axclass/classrel clauses
paulson
parents: 17502
diff changeset
   172
ae5bb6001afb tidying, and support for axclass/classrel clauses
paulson
parents: 17502
diff changeset
   173
(*writes out the current clasimpset to a tptp file;
ae5bb6001afb tidying, and support for axclass/classrel clauses
paulson
parents: 17502
diff changeset
   174
  turns off xsymbol at start of function, restoring it at end    *)
17484
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17435
diff changeset
   175
val isar_atp = setmp print_mode [] 
17717
7c6a96cbc966 improvements for problem generation
paulson
parents: 17690
diff changeset
   176
 (fn (ctxt, th) =>
7c6a96cbc966 improvements for problem generation
paulson
parents: 17690
diff changeset
   177
  if Thm.no_prems th then ()
16802
6eeee59dac4c use Toplevel.print_state_hook instead of adhoc Proof.atp_hook;
wenzelm
parents: 16767
diff changeset
   178
  else
6eeee59dac4c use Toplevel.print_state_hook instead of adhoc Proof.atp_hook;
wenzelm
parents: 16767
diff changeset
   179
    let
17775
2679ba74411f minor code tidyig
paulson
parents: 17773
diff changeset
   180
      val _ = kill_last_watcher()
17772
818cec5f82a4 major simplification: removal of the goalstring argument
paulson
parents: 17764
diff changeset
   181
      val (files,clause_arr) = write_problem_files prob_pathname (ctxt,th)
17717
7c6a96cbc966 improvements for problem generation
paulson
parents: 17690
diff changeset
   182
      val (childin, childout, pid) = Watcher.createWatcher (th, clause_arr)
15608
f161fa6f8fd5 bug fixes involving typechecking clauses
paulson
parents: 15603
diff changeset
   183
    in
17772
818cec5f82a4 major simplification: removal of the goalstring argument
paulson
parents: 17764
diff changeset
   184
      last_watcher_pid := SOME (childin, childout, pid, files);
18680
677e2bdd75f0 Output.debug;
wenzelm
parents: 18675
diff changeset
   185
      Output.debug ("problem files: " ^ space_implode ", " files); 
677e2bdd75f0 Output.debug;
wenzelm
parents: 18675
diff changeset
   186
      Output.debug ("pid: " ^ string_of_pid pid);
17717
7c6a96cbc966 improvements for problem generation
paulson
parents: 17690
diff changeset
   187
      watcher_call_provers (sign_of_thm th) (Thm.prems_of th) (childin, childout, pid)
16802
6eeee59dac4c use Toplevel.print_state_hook instead of adhoc Proof.atp_hook;
wenzelm
parents: 16767
diff changeset
   188
    end);
15608
f161fa6f8fd5 bug fixes involving typechecking clauses
paulson
parents: 15603
diff changeset
   189
17422
3b237822985d massive tidy-up and simplification
paulson
parents: 17404
diff changeset
   190
val isar_atp_writeonly = setmp print_mode [] 
17717
7c6a96cbc966 improvements for problem generation
paulson
parents: 17690
diff changeset
   191
      (fn (ctxt,th) =>
7c6a96cbc966 improvements for problem generation
paulson
parents: 17690
diff changeset
   192
       if Thm.no_prems th then ()
7c6a96cbc966 improvements for problem generation
paulson
parents: 17690
diff changeset
   193
       else 
7c6a96cbc966 improvements for problem generation
paulson
parents: 17690
diff changeset
   194
         let val pf = if Thm.nprems_of th = 1 then probfile_nosuffix 
7c6a96cbc966 improvements for problem generation
paulson
parents: 17690
diff changeset
   195
         	      else prob_pathname
7c6a96cbc966 improvements for problem generation
paulson
parents: 17690
diff changeset
   196
         in ignore (write_problem_files pf (ctxt,th)) end);
15452
e2a721567f67 Jia Meng: delta simpsets and clasets
paulson
parents: 15347
diff changeset
   197
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16259
diff changeset
   198
16802
6eeee59dac4c use Toplevel.print_state_hook instead of adhoc Proof.atp_hook;
wenzelm
parents: 16767
diff changeset
   199
(** the Isar toplevel hook **)
6eeee59dac4c use Toplevel.print_state_hook instead of adhoc Proof.atp_hook;
wenzelm
parents: 16767
diff changeset
   200
17091
13593aa6a546 new command to invoke ATPs
paulson
parents: 16955
diff changeset
   201
val invoke_atp = Toplevel.unknown_proof o Toplevel.keep (fn state =>
16802
6eeee59dac4c use Toplevel.print_state_hook instead of adhoc Proof.atp_hook;
wenzelm
parents: 16767
diff changeset
   202
  let
17091
13593aa6a546 new command to invoke ATPs
paulson
parents: 16955
diff changeset
   203
    val proof = Toplevel.proof_of state
18680
677e2bdd75f0 Output.debug;
wenzelm
parents: 18675
diff changeset
   204
    val (ctxt, (_, goal)) = Proof.get_goal proof;
16802
6eeee59dac4c use Toplevel.print_state_hook instead of adhoc Proof.atp_hook;
wenzelm
parents: 16767
diff changeset
   205
    val thy = ProofContext.theory_of ctxt;
6eeee59dac4c use Toplevel.print_state_hook instead of adhoc Proof.atp_hook;
wenzelm
parents: 16767
diff changeset
   206
  in
18680
677e2bdd75f0 Output.debug;
wenzelm
parents: 18675
diff changeset
   207
    Output.debug ("subgoals in isar_atp:\n" ^ 
17091
13593aa6a546 new command to invoke ATPs
paulson
parents: 16955
diff changeset
   208
           Pretty.string_of (ProofContext.pretty_term ctxt
13593aa6a546 new command to invoke ATPs
paulson
parents: 16955
diff changeset
   209
             (Logic.mk_conjunction_list (Thm.prems_of goal))));
18680
677e2bdd75f0 Output.debug;
wenzelm
parents: 18675
diff changeset
   210
    Output.debug ("number of subgoals in isar_atp: " ^ Int.toString (Thm.nprems_of goal));
677e2bdd75f0 Output.debug;
wenzelm
parents: 18675
diff changeset
   211
    Output.debug ("current theory: " ^ Context.theory_name thy);
17150
ce2a1aeb42aa DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents: 17091
diff changeset
   212
    hook_count := !hook_count +1;
18680
677e2bdd75f0 Output.debug;
wenzelm
parents: 18675
diff changeset
   213
    Output.debug ("in hook for time: " ^ Int.toString (!hook_count));
16925
0fd7b1438d28 simpler variable names, and no types for monomorphic constants
paulson
parents: 16904
diff changeset
   214
    ResClause.init thy;
17690
8ba7c3cd24a8 time limit option; fixed bug concerning first line of ATP output
paulson
parents: 17525
diff changeset
   215
    if !destdir = "" andalso !time_limit > 0 then isar_atp (ctxt, goal)
17502
8836793df947 further tidying; killing of old Watcher loops
paulson
parents: 17488
diff changeset
   216
    else isar_atp_writeonly (ctxt, goal)
16802
6eeee59dac4c use Toplevel.print_state_hook instead of adhoc Proof.atp_hook;
wenzelm
parents: 16767
diff changeset
   217
  end);
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16259
diff changeset
   218
17091
13593aa6a546 new command to invoke ATPs
paulson
parents: 16955
diff changeset
   219
val call_atpP =
17746
af59c748371d fixed the ascii-armouring of goalstring
paulson
parents: 17717
diff changeset
   220
  OuterSyntax.command 
17091
13593aa6a546 new command to invoke ATPs
paulson
parents: 16955
diff changeset
   221
    "ProofGeneral.call_atp" 
13593aa6a546 new command to invoke ATPs
paulson
parents: 16955
diff changeset
   222
    "call automatic theorem provers" 
13593aa6a546 new command to invoke ATPs
paulson
parents: 16955
diff changeset
   223
    OuterKeyword.diag
13593aa6a546 new command to invoke ATPs
paulson
parents: 16955
diff changeset
   224
    (Scan.succeed (Toplevel.no_timing o invoke_atp));
13593aa6a546 new command to invoke ATPs
paulson
parents: 16955
diff changeset
   225
13593aa6a546 new command to invoke ATPs
paulson
parents: 16955
diff changeset
   226
val _ = OuterSyntax.add_parsers [call_atpP];
13593aa6a546 new command to invoke ATPs
paulson
parents: 16955
diff changeset
   227
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   228
end;