src/HOL/Tools/ATP/watcher.ML
author quigley
Mon, 20 Jun 2005 18:39:24 +0200
changeset 16478 d0a1f6231e2f
parent 16475 8f3ba52a7937
child 16515 7896ea4f3a87
permissions -rw-r--r--
Added VampCommunication.ML. Changed small set of Spass rules to Ordered version. Fixed printing out of resolution proofs if parsing/translation fails.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
15789
4cb16144c81b added hearder lines and deleted some redundant material
paulson
parents: 15787
diff changeset
     1
(*  Title:      Watcher.ML
16156
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
     2
15789
4cb16144c81b added hearder lines and deleted some redundant material
paulson
parents: 15787
diff changeset
     3
    ID:         $Id$
4cb16144c81b added hearder lines and deleted some redundant material
paulson
parents: 15787
diff changeset
     4
    Author:     Claire Quigley
4cb16144c81b added hearder lines and deleted some redundant material
paulson
parents: 15787
diff changeset
     5
    Copyright   2004  University of Cambridge
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
     6
 *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
     7
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
     8
 (***************************************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
     9
 (*  The watcher process starts a resolution process when it receives a     *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    10
(*  message from Isabelle                                                  *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    11
(*  Signals Isabelle, puts output of child into pipe to Isabelle,          *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    12
(*  and removes dead processes.  Also possible to kill all the resolution  *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    13
(*  processes currently running.                                           *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    14
(*  Hardwired version of where to pick up the tptp files for the moment    *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    15
(***************************************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    16
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    17
(*use "Proof_Transfer";
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    18
use "VampireCommunication";
16089
9169bdf930f8 trying to set up portable calling sequences for SPASS and tptp2X
paulson
parents: 16061
diff changeset
    19
use "SpassCommunication";*)
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    20
(*use "/homes/clq20/Jia_Code/TransStartIsar";*)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    21
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    22
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    23
structure Watcher: WATCHER =
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    24
  struct
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    25
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    26
val goals_being_watched = ref 0;
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    27
16039
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    28
(*****************************************)
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    29
(*  The result of calling createWatcher  *)
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    30
(*****************************************)
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    31
16039
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    32
datatype proc = PROC of {
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    33
        pid : Posix.Process.pid,
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    34
        instr : TextIO.instream,
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    35
        outstr : TextIO.outstream
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    36
      };
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    37
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    38
(*****************************************)
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    39
(*  The result of calling executeToList  *)
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    40
(*****************************************)
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    41
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    42
datatype cmdproc = CMDPROC of {
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    43
        prover: string,             (* Name of the resolution prover used, e.g. Vampire, SPASS *)
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    44
        cmd:  string,              (* The file containing the goal for res prover to prove *)     
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    45
        thmstring: string,         (* string representation of subgoal after negation, skolemization*) 
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    46
        goalstring: string,         (* string representation of subgoal*) 
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    47
        proc_handle : (TextIO.instream,TextIO.outstream) Unix.proc,
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    48
        instr : TextIO.instream,   (*  Input stream to child process *)
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    49
        outstr : TextIO.outstream  (*  Output stream from child process *)
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    50
      };
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    51
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    52
type signal = Posix.Signal.signal
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    53
datatype exit_status = datatype Posix.Process.exit_status
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    54
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    55
val fromStatus = Posix.Process.fromStatus
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    56
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    57
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    58
fun reap(pid, instr, outstr) =
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    59
        let
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    60
		val u = TextIO.closeIn instr;
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    61
	        val u = TextIO.closeOut outstr;
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    62
	
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    63
		val (_, status) =
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    64
			Posix.Process.waitpid(Posix.Process.W_CHILD pid, [])
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    65
	in
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    66
		status
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    67
	end
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    68
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    69
fun fdReader (name : string, fd : Posix.IO.file_desc) =
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    70
	  Posix.IO.mkTextReader {initBlkMode = true,name = name,fd = fd };
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    71
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    72
fun fdWriter (name, fd) =
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    73
          Posix.IO.mkTextWriter {
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    74
	      appendMode = false,
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    75
              initBlkMode = true,
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    76
              name = name,  
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    77
              chunkSize=4096,
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    78
              fd = fd
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    79
            };
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    80
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    81
fun openOutFD (name, fd) =
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    82
	  TextIO.mkOutstream (
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    83
	    TextIO.StreamIO.mkOutstream (
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    84
	      fdWriter (name, fd), IO.BLOCK_BUF));
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    85
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    86
fun openInFD (name, fd) =
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    87
	  TextIO.mkInstream (
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    88
	    TextIO.StreamIO.mkInstream (
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    89
	      fdReader (name, fd), ""));
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    90
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    91
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    92
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    93
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    94
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    95
fun killChild child_handle = Unix.reap child_handle 
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    96
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    97
fun childInfo (PROC{pid,instr,outstr }) = (pid,(instr,outstr));
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    98
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
    99
fun cmdstreamsOf (CMDPROC{instr,outstr,...}) = (instr, outstr);
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   100
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   101
fun cmdInStream (CMDPROC{instr,outstr,...}) = (instr);
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   102
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   103
fun cmdchildInfo (CMDPROC{prover,cmd,thmstring,proc_handle,goalstring,instr,outstr}) = (prover,(cmd, (instr,outstr)));
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   104
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   105
fun cmdchildHandle (CMDPROC{prover,cmd,thmstring,goalstring,proc_handle,instr,outstr})  = proc_handle;
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   106
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   107
fun cmdProver (CMDPROC{prover,cmd,thmstring,goalstring,proc_handle,instr,outstr})  = (prover);
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   108
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   109
fun cmdThm (CMDPROC{prover,cmd,thmstring,goalstring,proc_handle,instr,outstr})  = (thmstring);
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   110
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   111
fun cmdGoal (CMDPROC{prover,cmd,thmstring,goalstring,proc_handle,instr,outstr})  = (goalstring);
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   112
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   113
fun sendOutput (outstr,str) = (TextIO.outputSubstr (outstr, (Substring.all str));TextIO.flushOut outstr);
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   114
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   115
(********************************************************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   116
(*  takes a list of arguments and sends them individually to the watcher process by pipe    *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   117
(********************************************************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   118
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   119
fun outputArgs (toWatcherStr, []) = ()
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   120
|   outputArgs (toWatcherStr, (x::xs)) = (TextIO.output (toWatcherStr, x); 
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   121
                                          TextIO.flushOut toWatcherStr;
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   122
                                         outputArgs (toWatcherStr, xs))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   123
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   124
(********************************************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   125
(*    gets individual args from instream and concatenates them into a list      *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   126
(********************************************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   127
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   128
fun getArgs (fromParentStr, toParentStr,ys) =  let 
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   129
                                       val thisLine = TextIO.input fromParentStr
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   130
                                    in
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   131
                                        ((ys@[thisLine]))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   132
                                    end
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   133
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   134
(********************************************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   135
(*  Remove the \n character from the end of each filename                       *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   136
(********************************************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   137
16478
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   138
(*fun getCmd cmdStr = let val backList = ((rev(explode cmdStr))) 
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   139
                    in
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   140
                        if (String.isPrefix "\n"  (implode backList )) 
16089
9169bdf930f8 trying to set up portable calling sequences for SPASS and tptp2X
paulson
parents: 16061
diff changeset
   141
                        then (implode (rev ((tl backList))))
9169bdf930f8 trying to set up portable calling sequences for SPASS and tptp2X
paulson
parents: 16061
diff changeset
   142
                        else cmdStr
16478
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   143
                    end*)
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   144
                            
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   145
(********************************************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   146
(*  Send request to Watcher for a vampire to be called for filename in arg      *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   147
(********************************************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   148
                    
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   149
fun callResProver (toWatcherStr,  arg) = (sendOutput (toWatcherStr, arg^"\n"); 
16089
9169bdf930f8 trying to set up portable calling sequences for SPASS and tptp2X
paulson
parents: 16061
diff changeset
   150
                                     TextIO.flushOut toWatcherStr)
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   151
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   152
(*****************************************************************************************)
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   153
(*  Send request to Watcher for multiple provers to be called for filenames in arg       *)
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   154
(*  need to do the dfg stuff in the watcher, not here! send over the clasimp and stuff files too*)
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   155
(*****************************************************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   156
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   157
    
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   158
(* need to modify to send over hyps file too *)
16475
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   159
fun callResProvers (toWatcherStr,  []) = 
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   160
      (sendOutput (toWatcherStr, "End of calls\n");  TextIO.flushOut toWatcherStr)
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   161
|   callResProvers (toWatcherStr,
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   162
                    (prover,thmstring,goalstring, proverCmd,settings,clasimpfile, 
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   163
                     axfile, hypsfile,probfile)  ::  args) =
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   164
      let val _ = File.write (File.tmp_path (Path.basic "tog_comms"))
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   165
                             (prover^thmstring^goalstring^proverCmd^settings^
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   166
                              clasimpfile^hypsfile^probfile)
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   167
      in sendOutput (toWatcherStr,    
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   168
            (prover^"*"^thmstring^"*"^goalstring^"*"^proverCmd^"*"^
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   169
             settings^"*"^clasimpfile^"*"^hypsfile^"*"^probfile^"\n"));
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   170
         goals_being_watched := (!goals_being_watched) + 1;
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   171
	 TextIO.flushOut toWatcherStr;
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   172
	 callResProvers (toWatcherStr,args)
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   173
      end   
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   174
                                                
16156
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   175
15782
a1863ea9052b Corrected the problem with the ATP directory.
quigley
parents: 15774
diff changeset
   176
(*
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   177
fun callResProversStr (toWatcherStr,  []) =  "End of calls\n" 
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   178
                                     
15782
a1863ea9052b Corrected the problem with the ATP directory.
quigley
parents: 15774
diff changeset
   179
|   callResProversStr (toWatcherStr,(prover,thmstring,goalstring, proverCmd,settings,clasimpfile, axfile, hypsfile, probfile)::args) =
a1863ea9052b Corrected the problem with the ATP directory.
quigley
parents: 15774
diff changeset
   180
                                            ((prover^"*"^thmstring^"*"^goalstring^"*"^proverCmd^"*"^settings^"*"^clasimpfile^"*"^axfile^"*"^hypsfile^"*"^probfile^"\n")
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   181
                                            
15782
a1863ea9052b Corrected the problem with the ATP directory.
quigley
parents: 15774
diff changeset
   182
     *)                                      
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   183
 
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   184
(**************************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   185
(* Send message to watcher to kill currently running vampires *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   186
(**************************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   187
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   188
fun callSlayer (toWatcherStr) = (sendOutput (toWatcherStr, "Kill vampires\n"); 
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   189
                            TextIO.flushOut toWatcherStr)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   190
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   191
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   192
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   193
(**************************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   194
(* Remove \n token from a vampire goal filename and extract   *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   195
(* prover, proverCmd, settings and file from input string     *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   196
(**************************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   197
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   198
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   199
 fun takeUntil ch [] res  = (res, [])
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   200
 |   takeUntil ch (x::xs) res = if   x = ch 
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   201
                                then
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   202
                                     (res, xs)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   203
                                else
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   204
                                     takeUntil ch xs (res@[x])
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   205
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   206
 fun getSettings [] settings = settings
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   207
|    getSettings (xs) settings = let val (set, rest ) = takeUntil "%" xs []
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   208
                                 in
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   209
                                     getSettings rest (settings@[(implode set)])
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   210
                                 end
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   211
16475
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   212
fun separateFields str =
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   213
  let val  outfile = TextIO.openAppend(*("sep_field")*)(File.platform_path(File.tmp_path (Path.basic "sep_field")))                                                                         
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   214
      val _ = TextIO.output (outfile,("In separateFields, str is: "^(implode str)^"\n\n") )
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   215
      val _ =  TextIO.closeOut outfile
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   216
      val (prover, rest) = takeUntil "*" str []
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   217
      val prover = implode prover
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   218
16475
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   219
      val (thmstring, rest) =  takeUntil "*" rest []
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   220
      val thmstring = implode thmstring
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   221
16475
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   222
      val (goalstring, rest) =  takeUntil "*" rest []
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   223
      val goalstring = implode goalstring
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   224
16475
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   225
      val (proverCmd, rest ) =  takeUntil "*" rest []
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   226
      val proverCmd = implode proverCmd
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   227
      
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   228
      val (settings, rest) =  takeUntil "*" rest []
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   229
      val settings = getSettings settings []
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   230
16475
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   231
      val (clasimpfile, rest ) =  takeUntil "*" rest []
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   232
      val clasimpfile = implode clasimpfile
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   233
      
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   234
      val (hypsfile, rest ) =  takeUntil "*" rest []
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   235
      val hypsfile = implode hypsfile
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   236
16475
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   237
      val (file, rest) =  takeUntil "*" rest []
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   238
      val file = implode file
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   239
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   240
      val _ = File.append (File.tmp_path (Path.basic "sep_comms"))                                                                                
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   241
                  ("Sep comms are: "^(implode str)^"**"^
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   242
                   prover^thmstring^goalstring^proverCmd^clasimpfile^hypsfile^file^"\n\n")
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   243
  in
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   244
     (prover,thmstring,goalstring, proverCmd, settings, clasimpfile, hypsfile, file)
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   245
  end
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   246
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   247
                      
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   248
(***********************************************************************************)
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   249
(* do tptp2x and cat to turn clasimpfile, hypsfile and probfile into one .dfg file *)
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   250
(***********************************************************************************)
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   251
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   252
fun formatCmd (prover,thmstring,goalstring, proverCmd, settings, clasimpfile, hypsfile ,probfile) = 
16475
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   253
  let
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   254
    (*** want to cat clasimp ax hyps prob, then send the resulting file to tptp2x ***)
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   255
    val probID = List.last(explode probfile)
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   256
    val wholefile = File.tmp_path (Path.basic ("ax_prob_" ^ probID))
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   257
    
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   258
    (*** only include problem and clasimp for the moment, not sure 
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   259
	 how to refer to hyps/local axioms just now ***)
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   260
    val whole_prob_file = Unix.execute("/bin/cat", 
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   261
	     [clasimpfile,(*axfile, hypsfile,*)probfile,  ">",
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   262
	      File.platform_path wholefile])
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   263
    
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   264
    val dfg_dir = File.tmp_path (Path.basic "dfg"); 
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   265
    (*** check if the directory exists and, if not, create it***)
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   266
    val dfg_create =
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   267
	  if File.exists dfg_dir then warning("dfg dir exists")
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   268
	  else File.mkdir dfg_dir; 
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   269
    val dfg_path = File.platform_path dfg_dir;
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   270
    
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   271
    val tptp2X = getenv "TPTP2X_HOME" ^ "/tptp2X"
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   272
16478
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   273
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   274
  		(*** need to check here if the directory exists and, if not, create it***)
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   275
  		
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   276
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   277
 		(*** want to cat clasimp ax hyps prob, then send the resulting file to tptp2x ***)
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   278
		val probID = List.last(explode probfile)
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   279
    		val wholefile = File.tmp_path (Path.basic ("ax_prob_"^probID))
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   280
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   281
    		(*** only include problem and clasimp for the moment, not sure how to refer to ***)
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   282
   		(*** hyps/local axioms just now                                                ***)
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   283
   		val whole_prob_file = Unix.execute("/bin/cat", [clasimpfile,(*axfile, hypsfile,*)probfile,  ">", (File.platform_path wholefile)])
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   284
    		val dfg_create = 
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   285
		    if !SpassComm.spass
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   286
                    then 
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   287
 	     		if File.exists dfg_dir 
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   288
     	        	then
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   289
     	           	    ((warning("dfg dir exists"));())
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   290
 			else
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   291
 		    	    File.mkdir dfg_dir
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   292
		    else
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   293
			(warning("not converting to dfg");())
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   294
   		val dfg_path = File.platform_path dfg_dir;
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   295
   		
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   296
   		val bar = if !SpassComm.spass then system ("/usr/groups/theory/tptp/TPTP-v3.0.1/TPTP2X/tptp2X -fdfg "^
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   297
                                 (File.platform_path wholefile)^" -d "^dfg_path)
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   298
			  else
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   299
				7
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   300
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   301
    		val newfile =   if !SpassComm.spass 
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   302
				then 
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   303
					dfg_path^"/ax_prob"^"_"^(probID)^".dfg" 
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   304
			        else
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   305
					(File.platform_path wholefile)
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   306
				  
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   307
                val  outfile = TextIO.openAppend(File.platform_path(File.tmp_path (Path.basic"thmstring_in_watcher")));   
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   308
   		val _ = TextIO.output (outfile, (thmstring^"\n goals_watched"^(string_of_int(!goals_being_watched))^newfile^"\n"))
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   309
 		val _ =  TextIO.closeOut outfile
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   310
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   311
 	     in
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   312
 		(prover,thmstring,goalstring, proverCmd, settings,newfile)	
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   313
	     end;
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   314
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   315
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   316
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   317
(* remove \n from end of command and put back into tuple format *)
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   318
             
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   319
16478
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   320
(*  val cmdStr = "spass*((ALL xa. (~ P x | P xa) & (~ P xa | P x)) & (P xa | (ALL x. P x)) & ((ALL x. ~ P x) | ~ P xb) [.])*(EX x. ALL y. P x = P y) --> (EX x. P x) = (ALL y. P y)*/homes/clq20/bin/SPASS*-DocProof*/local/scratch/clq20/27023/clasimp*/local/scratch/clq20/27023/hyps*/local/scratch/clq20/27023/prob_1\n"
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   321
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   322
val cmdStr = "vampire*(length (rev xs) = length xs  [.]) & (length (rev (a # xs)) ~= length (a # xs) [.])*length (rev []) = length []*/homes/jm318/Vampire8/vkernel*-t 300%-m 100000*/local/scratch/clq20/23523/clasimp*/local/scratch/clq20/23523/hyps*/local/scratch/clq20/23523/prob_1\n"
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   323
 *)
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   324
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   325
(*FIX:  are the two getCmd procs getting confused?  Why do I have two anyway? *)
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   326
16475
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   327
 fun getCmd cmdStr = 
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   328
       let val backList = rev(explode cmdStr)
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   329
	   val _ = File.append (File.tmp_path (Path.basic"cmdStr")) cmdStr
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   330
       in
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   331
	   if (String.isPrefix "\n"  (implode backList )) 
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   332
	   then 
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   333
	       let val newCmdStr = (rev(tl backList))
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   334
	       in  File.write (File.tmp_path (Path.basic"backlist")) 
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   335
	                      ("about to call sepfields with "^(implode newCmdStr));
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   336
		   formatCmd (separateFields newCmdStr)
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   337
	       end
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   338
	   else formatCmd (separateFields (explode cmdStr))
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   339
       end
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   340
                      
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   341
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   342
fun getProofCmd (a,b,c,d,e,f) = d
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   343
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   344
                        
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   345
(**************************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   346
(* Get commands from Isabelle                                 *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   347
(**************************************************************)
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   348
(* FIX: or perhaps do the tptp2x stuff here - so it's get commands and then format them, before passing them to spass *)
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   349
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   350
fun getCmds (toParentStr,fromParentStr, cmdList) = 
16475
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   351
  let val thisLine = TextIO.inputLine fromParentStr 
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   352
      val _ = File.append (File.tmp_path (Path.basic "parent_comms")) thisLine
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   353
  in
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   354
     if (thisLine = "End of calls\n") 
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   355
     then cmdList
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   356
     else if (thisLine = "Kill children\n") 
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   357
     then 
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   358
	 (   TextIO.output (toParentStr,thisLine ); 
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   359
	     TextIO.flushOut toParentStr;
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   360
	   (("","","","Kill children",[],"")::cmdList)
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   361
	  )
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   362
     else  let val thisCmd = getCmd (thisLine) 
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   363
	       (*********************************************************)
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   364
	       (* thisCmd = (prover,thmstring,proverCmd, settings, file)*)
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   365
	       (* i.e. put back into tuple format                       *)
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   366
	       (*********************************************************)
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   367
	   in
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   368
	     (*TextIO.output (toParentStr, thisCmd); 
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   369
	       TextIO.flushOut toParentStr;*)
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   370
	       getCmds (toParentStr,fromParentStr, (thisCmd::cmdList))
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   371
	   end
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   372
  end
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   373
	    
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   374
                                                                  
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   375
(**************************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   376
(*  Get Io-descriptor for polling of an input stream          *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   377
(**************************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   378
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   379
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   380
fun getInIoDesc someInstr = 
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   381
    let val (rd, buf) = TextIO.StreamIO.getReader(TextIO.getInstream someInstr)
15702
2677db44c795 new signalling primmitives for sml/nj compatibility
paulson
parents: 15684
diff changeset
   382
        val _ = TextIO.output (TextIO.stdOut, buf)
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   383
        val ioDesc = 
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   384
	    case rd
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   385
	      of TextPrimIO.RD{ioDesc = SOME iod, ...} =>SOME iod
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   386
	       | _ => NONE
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   387
     in (* since getting the reader will have terminated the stream, we need
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   388
	 * to build a new stream. *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   389
	TextIO.setInstream(someInstr, TextIO.StreamIO.mkInstream(rd, buf));
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   390
	ioDesc
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   391
    end
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   392
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   393
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   394
(*************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   395
(*  Set up a Watcher Process         *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   396
(*************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   397
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   398
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   399
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   400
fun setupWatcher (thm,clause_arr, num_of_clauses) = 
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   401
  let
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   402
    (** pipes for communication between parent and watcher **)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   403
    val p1 = Posix.IO.pipe ()
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   404
    val p2 = Posix.IO.pipe ()
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   405
    fun closep () = (
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   406
	  Posix.IO.close (#outfd p1); 
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   407
	  Posix.IO.close (#infd p1);
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   408
	  Posix.IO.close (#outfd p2); 
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   409
	  Posix.IO.close (#infd p2)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   410
	)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   411
    (***********************************************************)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   412
    (****** fork a watcher process and get it set up and going *)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   413
    (***********************************************************)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   414
    fun startWatcher (procList) =
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   415
	     (case  Posix.Process.fork() (***************************************)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   416
	   of SOME pid =>  pid           (* parent - i.e. main Isabelle process *)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   417
					 (***************************************)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   418
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   419
					   (*************************)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   420
	    | NONE => let                  (* child - i.e. watcher  *)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   421
		val oldchildin = #infd p1  (*************************)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   422
		val fromParent = Posix.FileSys.wordToFD 0w0
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   423
		val oldchildout = #outfd p2
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   424
		val toParent = Posix.FileSys.wordToFD 0w1
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   425
		val fromParentIOD = Posix.FileSys.fdToIOD fromParent
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   426
		val fromParentStr = openInFD ("_exec_in_parent", fromParent)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   427
		val toParentStr = openOutFD ("_exec_out_parent", toParent)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   428
		val sign = sign_of_thm thm
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   429
		val prems = prems_of thm
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   430
		val prems_string =  Meson.concat_with_and (map (Sign.string_of_term sign) prems) 
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   431
		val _ = (warning ("subgoals forked to startWatcher: "^prems_string));
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   432
	       (* tracing *)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   433
	      (*val tenth_ax = fst( Array.sub(clause_arr, 1))  
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   434
		val tenth_ax_thms = memo_find_clause (tenth_ax, clause_tab)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   435
		val clause_str = Meson.concat_with_and (map string_of_thm tenth_ax_thms)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   436
		val _ = (warning ("tenth axiom in array in watcher is: "^tenth_ax))         
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   437
		val _ = (warning ("tenth axiom in table in watcher is: "^clause_str))         
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   438
		val _ = (warning ("num_of_clauses in watcher is: "^(string_of_int (num_of_clauses))) )       
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   439
			 *)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   440
		(*val goalstr = string_of_thm (the_goal)
16260
4a1f36eafe17 File.platform_path vs. File.shell_path;
wenzelm
parents: 16185
diff changeset
   441
		 val  outfile = TextIO.openOut(File.platform_path(File.tmp_path (Path.basic "goal_in_watcher")));  
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   442
		val _ = TextIO.output (outfile,goalstr )
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   443
		val _ =  TextIO.closeOut outfile*)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   444
		fun killChildren [] = ()
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   445
	     |      killChildren  (child_handle::children) = (killChild child_handle; killChildren children)
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   446
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   447
	       
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   448
     
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   449
	      (*************************************************************)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   450
	      (* take an instream and poll its underlying reader for input *)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   451
	      (*************************************************************)
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   452
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   453
	      fun pollParentInput () = 
16475
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   454
		 let val pd = OS.IO.pollDesc (fromParentIOD)
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   455
		 in 
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   456
		   if (isSome pd ) then 
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   457
		       let val pd' = OS.IO.pollIn (valOf pd)
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   458
			   val pdl = OS.IO.poll ([pd'], SOME (Time.fromMilliseconds 2000)) 
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   459
			   val _ = File.append (File.tmp_path (Path.basic "parent_poll")) 
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   460
			     ("In parent_poll\n")	
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   461
		       in
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   462
			  if null pdl 
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   463
			  then
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   464
			     NONE
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   465
			  else if (OS.IO.isIn (hd pdl)) 
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   466
			       then
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   467
				  (SOME ( getCmds (toParentStr, fromParentStr, [])))
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   468
			       else
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   469
				   NONE
16475
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   470
		       end
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   471
		     else
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   472
			 NONE
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   473
		 end
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   474
		      
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   475
	       fun pollChildInput (fromStr) = 
16478
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   476
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   477
		     let val _ = File.append (File.tmp_path (Path.basic "child_poll")) 
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   478
			           ("In child_poll\n")
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   479
                       val iod = getInIoDesc fromStr
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   480
		     in 
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   481
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   482
		 
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   483
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   484
		     if isSome iod 
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   485
		     then 
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   486
			 let val pd = OS.IO.pollDesc (valOf iod)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   487
			 in 
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   488
			 if (isSome pd ) then 
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   489
			     let val pd' = OS.IO.pollIn (valOf pd)
16156
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   490
				 val pdl = OS.IO.poll ([pd'], SOME (Time.fromMilliseconds 2000)) 
16478
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   491
                                 
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   492
			     in
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   493
				if null pdl 
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   494
				then
16478
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   495
				  ( File.append (File.tmp_path (Path.basic "child_poll_res")) 
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   496
			           ("Null pdl \n");NONE)
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   497
				else if (OS.IO.isIn (hd pdl)) 
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   498
				     then
16478
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   499
					 (let val inval =  (TextIO.inputLine fromStr)
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   500
                              	              val _ = File.append (File.tmp_path (Path.basic "child_poll_res")) (inval^"\n")
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   501
					  in
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   502
						SOME inval
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   503
					  end)
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   504
				     else
16478
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   505
					   ( File.append (File.tmp_path (Path.basic "child_poll_res")) 
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   506
			           ("Null pdl \n");NONE)
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   507
			     end
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   508
			   else
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   509
			       NONE
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   510
			   end
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   511
		       else 
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   512
			   NONE
16475
8f3ba52a7937 using TPTP2X_HOME; indentation, etc
paulson
parents: 16357
diff changeset
   513
		 end
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   514
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   515
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   516
	     (****************************************************************************)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   517
	     (* Check all vampire processes currently running for output                 *)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   518
	     (****************************************************************************) 
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   519
							(*********************************)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   520
	      fun checkChildren ([], toParentStr) = []  (*** no children to check ********)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   521
							(*********************************)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   522
	      |   checkChildren ((childProc::otherChildren), toParentStr) = 
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   523
		    let val _ = File.append (File.tmp_path (Path.basic "child_check")) 
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   524
			           ("In check child, length of queue:"^(string_of_int (length (childProc::otherChildren)))^"\n")
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   525
                        val (childInput,childOutput) =  cmdstreamsOf childProc
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   526
			val child_handle= cmdchildHandle childProc
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   527
			(* childCmd is the .dfg file that the problem is in *)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   528
			val childCmd = fst(snd (cmdchildInfo childProc))
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   529
                        val _ = File.append (File.tmp_path (Path.basic "child_command")) 
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   530
			           (childCmd^"\n")
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   531
			(* now get the number of the subgoal from the filename *)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   532
			val sg_num = int_of_string(ReconOrderClauses.get_nth 5 (rev(explode childCmd)))
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   533
			val childIncoming = pollChildInput childInput
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   534
 			val _ = File.append (File.tmp_path (Path.basic "child_check_polled")) 
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   535
			           ("finished polling child \n")
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   536
			val parentID = Posix.ProcEnv.getppid()
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   537
			val prover = cmdProver childProc
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   538
			val thmstring = cmdThm childProc
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   539
			val sign = sign_of_thm thm
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   540
			val prems = prems_of thm
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   541
			val prems_string =  Meson.concat_with_and (map (Sign.string_of_term sign) prems) 
16100
f80fc4bff933 Now uses File.write and File.append
paulson
parents: 16091
diff changeset
   542
			val _ = warning("subgoals forked to checkChildren: "^prems_string)
f80fc4bff933 Now uses File.write and File.append
paulson
parents: 16091
diff changeset
   543
			val goalstring = cmdGoal childProc							
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   544
			val _ = File.append (File.tmp_path (Path.basic "child_comms")) 
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   545
			           (prover^thmstring^goalstring^childCmd^"\n")
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   546
		    in 
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   547
		      if (isSome childIncoming) 
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   548
		      then 
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   549
			  (* check here for prover label on child*)
16100
f80fc4bff933 Now uses File.write and File.append
paulson
parents: 16091
diff changeset
   550
			  let val _ = File.write (File.tmp_path (Path.basic "child_incoming"))  ("subgoals forked to checkChildren: "^prems_string^prover^thmstring^goalstring^childCmd) 
16478
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   551
		              val childDone = (case prover of
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   552
	                          "vampire" => (VampComm.checkVampProofFound(childInput, toParentStr, parentID,thmstring,goalstring, childCmd, thm, sg_num,clause_arr, num_of_clauses) )                                              
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   553
                                 |"spass" => (SpassComm.checkSpassProofFound(childInput, toParentStr, parentID,thmstring,goalstring, childCmd, thm, sg_num,clause_arr, num_of_clauses)     ) )
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   554
			   in
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   555
			    if childDone      (**********************************************)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   556
			    then              (* child has found a proof and transferred it *)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   557
					      (**********************************************)
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   558
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   559
			       (**********************************************)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   560
			       (* Remove this child and go on to check others*)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   561
			       (**********************************************)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   562
			       ( Unix.reap child_handle;
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   563
				 checkChildren(otherChildren, toParentStr))
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   564
			    else 
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   565
			       (**********************************************)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   566
			       (* Keep this child and go on to check others  *)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   567
			       (**********************************************)
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   568
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   569
				 (childProc::(checkChildren (otherChildren, toParentStr)))
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   570
			 end
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   571
		       else
16100
f80fc4bff933 Now uses File.write and File.append
paulson
parents: 16091
diff changeset
   572
			 (File.append (File.tmp_path (Path.basic "child_incoming")) "No child output ";
f80fc4bff933 Now uses File.write and File.append
paulson
parents: 16091
diff changeset
   573
			  childProc::(checkChildren (otherChildren, toParentStr)))
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   574
		    end
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   575
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   576
	     
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   577
	  (********************************************************************)                  
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   578
	  (* call resolution processes                                        *)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   579
	  (* settings should be a list of strings                             *)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   580
	  (* e.g. ["-t 300", "-m 100000"]                                     *)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   581
	  (* takes list of (string, string, string list, string)list proclist *)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   582
	  (********************************************************************)
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   583
16039
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   584
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   585
(*** add subgoal id num to this *)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   586
	     fun execCmds  [] procList = procList
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   587
	     |   execCmds  ((prover, thmstring,goalstring,proverCmd,settings,file)::cmds) procList  =             let val _ = File.append (File.tmp_path (Path.basic "pre_exec_child"))  ("About to execute command for goal:\n"^goalstring^proverCmd^(concat settings)^file^" at "^(Date.toString(Date.fromTimeLocal(Time.now()))))
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   588
	       in 
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   589
		 if (prover = "spass") 
16100
f80fc4bff933 Now uses File.write and File.append
paulson
parents: 16091
diff changeset
   590
		   then 
f80fc4bff933 Now uses File.write and File.append
paulson
parents: 16091
diff changeset
   591
		       let val childhandle:(TextIO.instream,TextIO.outstream) Unix.proc  = (Unix.execute(proverCmd, (["-FullRed=0"]@settings@[file])))
f80fc4bff933 Now uses File.write and File.append
paulson
parents: 16091
diff changeset
   592
			   val (instr, outstr)=Unix.streamsOf childhandle
f80fc4bff933 Now uses File.write and File.append
paulson
parents: 16091
diff changeset
   593
			   val newProcList =    (((CMDPROC{
f80fc4bff933 Now uses File.write and File.append
paulson
parents: 16091
diff changeset
   594
						prover = prover,
f80fc4bff933 Now uses File.write and File.append
paulson
parents: 16091
diff changeset
   595
						cmd = file,
f80fc4bff933 Now uses File.write and File.append
paulson
parents: 16091
diff changeset
   596
						thmstring = thmstring,
f80fc4bff933 Now uses File.write and File.append
paulson
parents: 16091
diff changeset
   597
						goalstring = goalstring,
f80fc4bff933 Now uses File.write and File.append
paulson
parents: 16091
diff changeset
   598
						proc_handle = childhandle,
f80fc4bff933 Now uses File.write and File.append
paulson
parents: 16091
diff changeset
   599
						instr = instr,
f80fc4bff933 Now uses File.write and File.append
paulson
parents: 16091
diff changeset
   600
						outstr = outstr })::procList))
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   601
			    val _ = File.append (File.tmp_path (Path.basic "exec_child"))  ("executing command for goal:\n"^goalstring^proverCmd^(concat settings)^file^" at "^(Date.toString(Date.fromTimeLocal(Time.now()))))
16100
f80fc4bff933 Now uses File.write and File.append
paulson
parents: 16091
diff changeset
   602
		       in
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   603
			  Posix.Process.sleep (Time.fromSeconds 1);execCmds cmds newProcList
16100
f80fc4bff933 Now uses File.write and File.append
paulson
parents: 16091
diff changeset
   604
		       end
f80fc4bff933 Now uses File.write and File.append
paulson
parents: 16091
diff changeset
   605
		   else 
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   606
		       let val childhandle:(TextIO.instream,TextIO.outstream) Unix.proc  = (Unix.execute(proverCmd, (settings@[file])))
16100
f80fc4bff933 Now uses File.write and File.append
paulson
parents: 16091
diff changeset
   607
			   val (instr, outstr)=Unix.streamsOf childhandle
16478
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   608
                           
16100
f80fc4bff933 Now uses File.write and File.append
paulson
parents: 16091
diff changeset
   609
			   val newProcList =    (((CMDPROC{
f80fc4bff933 Now uses File.write and File.append
paulson
parents: 16091
diff changeset
   610
						prover = prover,
f80fc4bff933 Now uses File.write and File.append
paulson
parents: 16091
diff changeset
   611
						cmd = file,
f80fc4bff933 Now uses File.write and File.append
paulson
parents: 16091
diff changeset
   612
						thmstring = thmstring,
f80fc4bff933 Now uses File.write and File.append
paulson
parents: 16091
diff changeset
   613
						goalstring = goalstring,
f80fc4bff933 Now uses File.write and File.append
paulson
parents: 16091
diff changeset
   614
						proc_handle = childhandle,
f80fc4bff933 Now uses File.write and File.append
paulson
parents: 16091
diff changeset
   615
						instr = instr,
f80fc4bff933 Now uses File.write and File.append
paulson
parents: 16091
diff changeset
   616
						outstr = outstr })::procList))
16478
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   617
              
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   618
                           val _ = File.append (File.tmp_path (Path.basic "exec_child"))  ("executing command for goal:\n"^goalstring^proverCmd^(concat settings)^file^(TextIO.input instr)^" at "^(Date.toString(Date.fromTimeLocal(Time.now()))))
16100
f80fc4bff933 Now uses File.write and File.append
paulson
parents: 16091
diff changeset
   619
		       in
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   620
			 Posix.Process.sleep (Time.fromSeconds 1); execCmds cmds newProcList
16100
f80fc4bff933 Now uses File.write and File.append
paulson
parents: 16091
diff changeset
   621
		       end
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   622
		end
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   623
16039
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   624
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   625
	  (****************************************)                  
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   626
	  (* call resolution processes remotely   *)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   627
	  (* settings should be a list of strings *)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   628
	  (* e.g. ["-t 300", "-m 100000"]         *)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   629
	  (****************************************)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   630
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   631
	   (*  fun execRemoteCmds  [] procList = procList
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   632
	     |   execRemoteCmds ((prover, thmstring,goalstring,proverCmd ,settings,file)::cmds) procList  =  
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   633
				       let val  newProcList =  mySshExecuteToList ("/usr/bin/ssh",([prover,thmstring,goalstring,"-t", "shep"]@[proverCmd]@settings@[file]), procList)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   634
					   in
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   635
						execRemoteCmds  cmds newProcList
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   636
					   end
16039
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   637
*)
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   638
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   639
	     fun printList (outStr, []) = ()
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   640
	     |   printList (outStr, (x::xs)) = (TextIO.output (outStr, x);TextIO.flushOut outStr; printList (outStr,xs))                  
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   641
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   642
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   643
	  (**********************************************)                  
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   644
	  (* Watcher Loop                               *)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   645
	  (**********************************************)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   646
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   647
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   648
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   649
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   650
	      fun keepWatching (toParentStr, fromParentStr,procList) = 
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   651
		    let    fun loop (procList) =  
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   652
			   (
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   653
			   let val cmdsFromIsa = pollParentInput ()
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   654
			       fun killchildHandler (n:int)  = (TextIO.output(toParentStr, "Killing child proof processes!\n");
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   655
					    TextIO.flushOut toParentStr;
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   656
					     killChildren (map (cmdchildHandle) procList);
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   657
					      ())
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   658
			       
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   659
			   in 
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   660
			      (*Signal.signal (Posix.Signal.usr2, Signal.SIG_HANDLE killchildHandler);*)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   661
										 (**********************************)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   662
			      if (isSome cmdsFromIsa) then                       (*  deal with input from Isabelle *)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   663
				   (                                             (**********************************)                             
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   664
				    if (getProofCmd(hd(valOf cmdsFromIsa)) = "Kill children" )
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   665
				    then 
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   666
				      (
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   667
					let val child_handles = map cmdchildHandle procList 
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   668
					in
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   669
					   killChildren child_handles;
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   670
					   (*Posix.Process.kill(Posix.Process.K_PROC (Posix.ProcEnv.getppid()), Posix.Signal.usr2);*)                                                              loop ([])
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   671
					end
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   672
					   
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   673
				       )
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   674
				    else
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   675
				      ( 
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   676
					if ((length procList)<10)    (********************)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   677
					then                        (* Execute locally  *)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   678
					   (                        (********************)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   679
					    let 
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   680
					      val newProcList = execCmds (valOf cmdsFromIsa) procList
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   681
					      val parentID = Posix.ProcEnv.getppid()
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   682
          					 val _ = (File.append (File.tmp_path (Path.basic "prekeep_watch")) "Just execed a child\n ")
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   683
					      val newProcList' =checkChildren (newProcList, toParentStr) 
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   684
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   685
					      val _ = warning("off to keep watching...")
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   686
					     val _ = (File.append (File.tmp_path (Path.basic "keep_watch")) "Off to keep watching...\n ")
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   687
					    in
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   688
					      (*Posix.Process.sleep (Time.fromSeconds 1);*)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   689
					      loop (newProcList') 
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   690
					    end
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   691
					    )
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   692
					else                         (*********************************)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   693
								     (* Execute remotely              *)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   694
								     (* (actually not remote for now )*)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   695
					    (                        (*********************************)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   696
					    let 
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   697
					      val newProcList = execCmds (valOf cmdsFromIsa) procList
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   698
					      val parentID = Posix.ProcEnv.getppid()
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   699
					      val newProcList' =checkChildren (newProcList, toParentStr) 
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   700
					    in
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   701
					      (*Posix.Process.sleep (Time.fromSeconds 1);*)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   702
					      loop (newProcList') 
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   703
					    end
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   704
					    )
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   705
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   706
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   707
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   708
					)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   709
				     )                                              (******************************)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   710
			      else                                                  (* No new input from Isabelle *)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   711
										    (******************************)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   712
				  (    let val newProcList = checkChildren ((procList), toParentStr)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   713
				       in
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   714
					 (*Posix.Process.sleep (Time.fromSeconds 1);*)
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   715
					(File.append (File.tmp_path (Path.basic "keep_watch")) "Off to keep watching.2..\n ");
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   716
					 loop (newProcList)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   717
				       end
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   718
				   
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   719
				   )
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   720
			    end)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   721
		    in  
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   722
			loop (procList)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   723
		    end
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   724
		
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   725
    
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   726
		in
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   727
		 (***************************)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   728
		 (*** Sort out pipes ********)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   729
		 (***************************)
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   730
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   731
		  Posix.IO.close (#outfd p1);
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   732
		  Posix.IO.close (#infd p2);
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   733
		  Posix.IO.dup2{old = oldchildin, new = fromParent};
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   734
		  Posix.IO.close oldchildin;
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   735
		  Posix.IO.dup2{old = oldchildout, new = toParent};
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   736
		  Posix.IO.close oldchildout;
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   737
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   738
		  (***************************)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   739
		  (* start the watcher loop  *)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   740
		  (***************************)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   741
		  keepWatching (toParentStr, fromParentStr, procList);
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   742
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   743
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   744
		  (****************************************************************************)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   745
		  (* fake return value - actually want the watcher to loop until killed       *)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   746
		  (****************************************************************************)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   747
		  Posix.Process.wordToPid 0w0
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   748
		  
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   749
		end);
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   750
	  (* end case *)
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   751
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   752
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   753
    val _ = TextIO.flushOut TextIO.stdOut
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   754
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   755
    (*******************************)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   756
    (***  set watcher going ********)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   757
    (*******************************)
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   758
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   759
    val procList = []
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   760
    val pid = startWatcher (procList)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   761
    (**************************************************)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   762
    (* communication streams to watcher               *)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   763
    (**************************************************)
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   764
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   765
    val instr = openInFD ("_exec_in", #infd p2)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   766
    val outstr = openOutFD ("_exec_out", #outfd p1)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   767
    
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   768
    in
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   769
     (*******************************)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   770
     (* close the child-side fds    *)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   771
     (*******************************)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   772
      Posix.IO.close (#outfd p2);
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   773
      Posix.IO.close (#infd p1);
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   774
      (* set the fds close on exec *)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   775
      Posix.IO.setfd (#infd p2, Posix.IO.FD.flags [Posix.IO.FD.cloexec]);
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   776
      Posix.IO.setfd (#outfd p1, Posix.IO.FD.flags [Posix.IO.FD.cloexec]);
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   777
       
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   778
     (*******************************)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   779
     (* return value                *)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   780
     (*******************************)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   781
      PROC{pid = pid,
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   782
	instr = instr,
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   783
	outstr = outstr
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   784
      }
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   785
   end;
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   786
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   787
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   788
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   789
(**********************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   790
(* Start a watcher and set up signal handlers             *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   791
(**********************************************************)
16039
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   792
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   793
fun killWatcher pid= Posix.Process.kill(Posix.Process.K_PROC pid, Posix.Signal.kill);
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   794
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   795
fun reapWatcher(pid, instr, outstr) =
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   796
        let
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   797
		val u = TextIO.closeIn instr;
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   798
	        val u = TextIO.closeOut outstr;
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   799
	
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   800
		val (_, status) =
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   801
			Posix.Process.waitpid(Posix.Process.W_CHILD pid, [])
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   802
	in
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   803
		status
dfe264950511 Moved some of the clausify functions from ATP/res_clasimpset.ML to res_axioms.ML.
quigley
parents: 15919
diff changeset
   804
	end
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   805
16156
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   806
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   807
fun createWatcher (thm,clause_arr, ( num_of_clauses:int)) = let val mychild = childInfo (setupWatcher(thm,clause_arr,  num_of_clauses))
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   808
			   val streams =snd mychild
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   809
                           val childin = fst streams
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   810
                           val childout = snd streams
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   811
                           val childpid = fst mychild
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   812
                           val sign = sign_of_thm thm
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   813
                           val prems = prems_of thm
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   814
                           val prems_string =  Meson.concat_with_and (map (Sign.string_of_term sign) prems) 
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   815
                           val _ = (warning ("subgoals forked to createWatcher: "^prems_string));
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   816
                           fun vampire_proofHandler (n) =
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   817
                           (Pretty.writeln(Pretty.str ( (concat[(oct_char "360"), (oct_char "377")])));
16478
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   818
                           VampComm.getVampInput childin; Pretty.writeln(Pretty.str  (oct_char "361"));() )               
16156
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   819
                          
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   820
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   821
fun spass_proofHandler (n) = (
16260
4a1f36eafe17 File.platform_path vs. File.shell_path;
wenzelm
parents: 16185
diff changeset
   822
                                 let  val  outfile = TextIO.openOut(File.platform_path(File.tmp_path (Path.basic "foo_signal1")));
16156
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   823
                                      val _ = TextIO.output (outfile, ("In signal handler now\n"))
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   824
                                      val _ =  TextIO.closeOut outfile
16478
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   825
                                      val (reconstr, goalstring, thmstring) = SpassComm.getSpassInput childin
16260
4a1f36eafe17 File.platform_path vs. File.shell_path;
wenzelm
parents: 16185
diff changeset
   826
                                      val  outfile = TextIO.openAppend(File.platform_path(File.tmp_path (Path.basic "foo_signal")));
16156
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   827
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   828
                                      val _ = TextIO.output (outfile, ("In signal handler  "^reconstr^thmstring^goalstring^"goals_being_watched is: "^(string_of_int (!goals_being_watched))))
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   829
                                      val _ =  TextIO.closeOut outfile
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   830
                                      in          (* if a proof has been found and sent back as a reconstruction proof *)
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   831
                                                  if ( (substring (reconstr, 0,1))= "[")
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   832
                                                  then 
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   833
16156
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   834
                                                            (
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   835
                                                                 Pretty.writeln(Pretty.str ( (concat[(oct_char "360"), (oct_char "377")])));
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   836
                                                                 Recon_Transfer.apply_res_thm reconstr goalstring;
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   837
                                                                 Pretty.writeln(Pretty.str  (oct_char "361"));
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   838
                                                                 
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   839
                                                                 goals_being_watched := ((!goals_being_watched) - 1);
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   840
                                                         
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   841
                                                                 if ((!goals_being_watched) = 0)
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   842
                                                                 then 
16260
4a1f36eafe17 File.platform_path vs. File.shell_path;
wenzelm
parents: 16185
diff changeset
   843
                                                                    (let val  outfile = TextIO.openOut(File.platform_path(File.tmp_path (Path.basic "foo_reap_found")));
16156
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   844
                                                                         val _ = TextIO.output (outfile, ("Reaping a watcher, goals watched is: "^(string_of_int (!goals_being_watched))^"\n"))
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   845
                                                                         val _ =  TextIO.closeOut outfile
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   846
                                                                     in
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   847
                                                                         killWatcher (childpid); reapWatcher (childpid,childin, childout); ()
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   848
                                                                     end)
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   849
                                                                 else
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   850
                                                                    ()
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   851
                                                            )
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   852
                                                    (* if there's no proof, but a message from Spass *)
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   853
                                                    else if ((substring (reconstr, 0,5))= "SPASS")
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   854
                                                         then
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   855
                                                                 (
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   856
                                                                     goals_being_watched := (!goals_being_watched) -1;
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   857
                                                                     Pretty.writeln(Pretty.str ( (concat[(oct_char "360"), (oct_char "377")])));
16478
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16475
diff changeset
   858
                                                                      Pretty.writeln(Pretty.str ((Recon_Transfer.restore_linebreaks goalstring)^reconstr));
16156
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   859
                                                                      Pretty.writeln(Pretty.str  (oct_char "361"));
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   860
                                                                      if (!goals_being_watched = 0)
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   861
                                                                      then 
16260
4a1f36eafe17 File.platform_path vs. File.shell_path;
wenzelm
parents: 16185
diff changeset
   862
                                                                          (let val  outfile = TextIO.openOut(File.platform_path(File.tmp_path (Path.basic "foo_reap_comp")));
16156
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   863
                                                                               val _ = TextIO.output (outfile, ("Reaping a watcher, goals watched is: "^(string_of_int (!goals_being_watched))^"\n"))
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   864
                                                                               val _ =  TextIO.closeOut outfile
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   865
                                                                           in
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   866
                                                                              killWatcher (childpid); reapWatcher (childpid,childin, childout); ()
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   867
                                                                           end )
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   868
                                                                      else
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   869
                                                                         ()
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   870
                                                                ) 
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   871
						   (* print out a list of rules used from clasimpset*)
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   872
                                                    else if ((substring (reconstr, 0,5))= "Rules")
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   873
                                                         then
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   874
                                                                 (
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   875
                                                                     goals_being_watched := (!goals_being_watched) -1;
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   876
                                                                     Pretty.writeln(Pretty.str ( (concat[(oct_char "360"), (oct_char "377")])));
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   877
                                                                      Pretty.writeln(Pretty.str (goalstring^reconstr));
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   878
                                                                      Pretty.writeln(Pretty.str  (oct_char "361"));
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   879
                                                                      if (!goals_being_watched = 0)
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   880
                                                                      then 
16260
4a1f36eafe17 File.platform_path vs. File.shell_path;
wenzelm
parents: 16185
diff changeset
   881
                                                                          (let val  outfile = TextIO.openOut(File.platform_path(File.tmp_path (Path.basic "foo_reap_comp")));
16156
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   882
                                                                               val _ = TextIO.output (outfile, ("Reaping a watcher, goals watched is: "^(string_of_int (!goals_being_watched))^"\n"))
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   883
                                                                               val _ =  TextIO.closeOut outfile
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   884
                                                                           in
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   885
                                                                              killWatcher (childpid);  reapWatcher (childpid,childin, childout);()
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   886
                                                                           end )
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   887
                                                                      else
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   888
                                                                         ()
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   889
                                                                )
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   890
							
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   891
                                                          (* if proof translation failed *)
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   892
                                                          else if ((substring (reconstr, 0,5)) = "Proof")
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   893
                                                               then 
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   894
                                                                   (
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   895
                                                                     goals_being_watched := (!goals_being_watched) -1;
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   896
                                                                     Pretty.writeln(Pretty.str ( (concat[(oct_char "360"), (oct_char "377")])));
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   897
                                                                      Pretty.writeln(Pretty.str (goalstring^(Recon_Transfer.restore_linebreaks reconstr)));
16156
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   898
                                                                      Pretty.writeln(Pretty.str  (oct_char "361"));
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   899
                                                                      if (!goals_being_watched = 0)
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   900
                                                                      then 
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16260
diff changeset
   901
                                                                          (let val  outfile = TextIO.openOut(File.platform_path (File.tmp_path (Path.basic "foo_reap_comp")));
16156
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   902
                                                                               val _ = TextIO.output (outfile, ("Reaping a watcher, goals watched is: "^(string_of_int (!goals_being_watched))^"\n"))
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   903
                                                                               val _ =  TextIO.closeOut outfile
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   904
                                                                           in
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   905
                                                                              killWatcher (childpid); reapWatcher (childpid,childin, childout); ()
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   906
                                                                           end )
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   907
                                                                      else
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   908
                                                                         ()
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   909
                                                                )
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   910
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   911
16156
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   912
                                                                else  (* add something here ?*)
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   913
                                                                   ()
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   914
                                                             
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   915
                                       end)
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   916
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   917
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   918
                        
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   919
                       in IsaSignal.signal (IsaSignal.usr1, IsaSignal.SIG_HANDLE vampire_proofHandler);
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   920
                          IsaSignal.signal (IsaSignal.usr2, IsaSignal.SIG_HANDLE spass_proofHandler);
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   921
                          (childin, childout, childpid)
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16100
diff changeset
   922
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   923
16100
f80fc4bff933 Now uses File.write and File.append
paulson
parents: 16091
diff changeset
   924
  end
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   925
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   926
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   927
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   928
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   929
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   930
end (* structure Watcher *)