src/HOL/Tools/ATP/recon_transfer_proof.ML
author paulson
Thu, 08 Sep 2005 17:35:02 +0200
changeset 17315 5bf0e0aacc24
parent 17312 159783c74f75
child 17317 3f12de2e2e6e
permissions -rw-r--r--
consolidation of duplicate code in Isabelle-ATP linkup
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
(*  ID:         $Id$
16259
aed1a8ae4b23 File.platform_path;
wenzelm
parents: 16157
diff changeset
     2
    Author:     Claire Quigley
aed1a8ae4b23 File.platform_path;
wenzelm
parents: 16157
diff changeset
     3
    Copyright   2004  University of Cambridge
15789
4cb16144c81b added hearder lines and deleted some redundant material
paulson
parents: 15787
diff changeset
     4
*)
4cb16144c81b added hearder lines and deleted some redundant material
paulson
parents: 15787
diff changeset
     5
15684
5ec4d21889d6 Reconstruction code, now packaged to avoid name clashes
paulson
parents: 15658
diff changeset
     6
structure Recon_Transfer =
5ec4d21889d6 Reconstruction code, now packaged to avoid name clashes
paulson
parents: 15658
diff changeset
     7
struct
16803
wenzelm
parents: 16548
diff changeset
     8
15684
5ec4d21889d6 Reconstruction code, now packaged to avoid name clashes
paulson
parents: 15658
diff changeset
     9
open Recon_Parse
16803
wenzelm
parents: 16548
diff changeset
    10
15684
5ec4d21889d6 Reconstruction code, now packaged to avoid name clashes
paulson
parents: 15658
diff changeset
    11
infixr 8 ++; infixr 7 >>; infixr 6 ||;
5ec4d21889d6 Reconstruction code, now packaged to avoid name clashes
paulson
parents: 15658
diff changeset
    12
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    13
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    14
(* Versions that include type information *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    15
 
16803
wenzelm
parents: 16548
diff changeset
    16
(* FIXME rename to str_of_thm *)
16157
1764cc98bafd minor tidying and sml/nj compatibility
paulson
parents: 16156
diff changeset
    17
fun string_of_thm thm =
16803
wenzelm
parents: 16548
diff changeset
    18
  setmp show_sorts true (Pretty.str_of o Display.pretty_thm) thm;
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    19
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    20
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    21
(* check separate args in the watcher program for separating strings with a * or ; or something *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    22
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    23
fun clause_strs_to_string [] str = str
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    24
|   clause_strs_to_string (x::xs) str = clause_strs_to_string xs (str^x^"%")
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    25
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    26
fun thmvars_to_string [] str = str
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    27
|   thmvars_to_string (x::xs) str = thmvars_to_string xs (str^x^"%")
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    28
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    29
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    30
fun proofstep_to_string Axiom = "Axiom()"
16091
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
    31
|   proofstep_to_string  (Binary ((a,b), (c,d)))=
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
    32
      "Binary(("^(string_of_int a)^","^(string_of_int b)^"),("^(string_of_int c)^","^(string_of_int d)^"))"
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
    33
|   proofstep_to_string (Factor (a,b,c)) =
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
    34
      "Factor("^(string_of_int a)^","^(string_of_int b)^","^(string_of_int c)^")"
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
    35
|   proofstep_to_string  (Para ((a,b), (c,d)))= 
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
    36
      "Para(("^(string_of_int a)^","^(string_of_int b)^"),("^(string_of_int c)^","^(string_of_int d)^"))"
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
    37
|   proofstep_to_string  (MRR ((a,b), (c,d))) =
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
    38
      "MRR(("^(string_of_int a)^","^(string_of_int b)^"),("^(string_of_int c)^","^(string_of_int d)^"))"
16548
aa36ae6b955e Temporarily removed Rewrite from the translation code so that parsing with work on lists of numbers.
quigley
parents: 16520
diff changeset
    39
(*|   proofstep_to_string (Rewrite((a,b),(c,d))) =
aa36ae6b955e Temporarily removed Rewrite from the translation code so that parsing with work on lists of numbers.
quigley
parents: 16520
diff changeset
    40
      "Rewrite(("^(string_of_int a)^","^(string_of_int b)^"),("^(string_of_int c)^","^(string_of_int d)^"))"*)
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    41
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    42
fun list_to_string [] liststr = liststr
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    43
|   list_to_string (x::[]) liststr = liststr^(string_of_int x)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    44
|   list_to_string (x::xs) liststr = list_to_string xs (liststr^(string_of_int x)^",")
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    45
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    46
16091
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
    47
fun proof_to_string (num,(step,clause_strs, thmvars)) = (string_of_int num)^(proofstep_to_string step)^"["^(clause_strs_to_string clause_strs "")^"]["^(thmvars_to_string thmvars "")^"]"
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    48
 
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    49
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    50
fun proofs_to_string [] str = str
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    51
|   proofs_to_string (x::xs) str = let val newstr = proof_to_string x 
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    52
                                   in
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    53
                                       proofs_to_string xs (str^newstr)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    54
                                   end
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    55
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    56
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    57
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    58
fun init_proofstep_to_string (num, step, clause_strs) = (string_of_int num)^" "^(proofstep_to_string step)^" "^(clause_strs_to_string clause_strs "")^" "
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    59
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    60
fun init_proofsteps_to_string [] str = str
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    61
|   init_proofsteps_to_string (x::xs) str = let val newstr = init_proofstep_to_string x 
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    62
                                   in
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    63
                                       init_proofsteps_to_string xs (str^newstr)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    64
                                   end
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    65
  
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    66
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    67
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    68
(*** get a string representing the Isabelle ordered axioms ***)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    69
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
    70
fun origAx_to_string (num,(meta,thmvars)) =
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
    71
    let val clause_strs = ReconOrderClauses.get_meta_lits_bracket meta
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
    72
    in
16091
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
    73
       (string_of_int num)^"OrigAxiom()["^
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
    74
       (clause_strs_to_string clause_strs "")^"]["^
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
    75
       (thmvars_to_string thmvars "")^"]"
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
    76
    end
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    77
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    78
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    79
fun  origAxs_to_string [] str = str
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    80
|   origAxs_to_string (x::xs) str = let val newstr = origAx_to_string x 
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    81
                                   in
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    82
                                       origAxs_to_string xs (str^newstr)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    83
                                   end
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    84
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    85
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    86
(*** get a string representing the Isabelle ordered axioms not used in the spass proof***)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    87
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
    88
fun extraAx_to_string (num, (meta,thmvars)) =
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
    89
   let val clause_strs = ReconOrderClauses.get_meta_lits_bracket meta
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
    90
   in
16091
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
    91
      (string_of_int num)^"ExtraAxiom()["^
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
    92
      (clause_strs_to_string clause_strs "")^"]"^
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
    93
      "["^(thmvars_to_string thmvars "")^"]"
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
    94
   end;
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
    95
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
    96
fun extraAxs_to_string [] str = str
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
    97
|   extraAxs_to_string (x::xs) str =
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
    98
      let val newstr = extraAx_to_string x 
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
    99
      in
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   100
	  extraAxs_to_string xs (str^newstr)
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   101
      end;
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   102
17312
159783c74f75 yet more tidying of Isabelle-ATP link
paulson
parents: 17306
diff changeset
   103
fun is_axiom (_,Axiom,str) = true
159783c74f75 yet more tidying of Isabelle-ATP link
paulson
parents: 17306
diff changeset
   104
|   is_axiom (_,_,_) = false
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   105
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   106
fun get_step_nums [] nums = nums
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   107
|   get_step_nums (( num:int,Axiom, str)::xs) nums = get_step_nums xs (nums@[num])
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   108
15774
9df37a0e935d more tidying of libraries in Reconstruction
paulson
parents: 15739
diff changeset
   109
exception Noassoc;
9df37a0e935d more tidying of libraries in Reconstruction
paulson
parents: 15739
diff changeset
   110
9df37a0e935d more tidying of libraries in Reconstruction
paulson
parents: 15739
diff changeset
   111
fun assoc_snd a [] = raise Noassoc
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   112
  | assoc_snd a ((x, y)::t) = if a = y then x else assoc_snd a t;
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   113
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   114
(* change to be something using check_order  instead of a = y --> returns true if ASSERTION not raised in checkorder, false otherwise *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   115
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   116
(*fun get_assoc_snds [] xs assocs= assocs
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   117
|   get_assoc_snds (x::xs) ys assocs = get_assoc_snds xs ys (assocs@[((assoc_snd x ys))])
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   118
*)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   119
(*FIX - should this have vars in it? *)
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   120
fun there_out_of_order xs ys = (ReconOrderClauses.checkorder xs ys [] ([],[],[]); true) 
15774
9df37a0e935d more tidying of libraries in Reconstruction
paulson
parents: 15739
diff changeset
   121
                               handle _ => false
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   122
15774
9df37a0e935d more tidying of libraries in Reconstruction
paulson
parents: 15739
diff changeset
   123
fun assoc_out_of_order a [] = raise Noassoc
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   124
|   assoc_out_of_order a ((b,c)::t) = if there_out_of_order a c then b else assoc_out_of_order a t;
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   125
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   126
fun get_assoc_snds [] xs assocs= assocs
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   127
|   get_assoc_snds (x::xs) ys assocs = get_assoc_snds xs ys (assocs@[((assoc_out_of_order x ys))])
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   128
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   129
fun add_if_not_inlist [] xs newlist = newlist
16157
1764cc98bafd minor tidying and sml/nj compatibility
paulson
parents: 16156
diff changeset
   130
|   add_if_not_inlist (y::ys) xs newlist = if (not (y mem xs)) then 
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   131
                                      add_if_not_inlist ys xs (y::newlist)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   132
                                        else add_if_not_inlist ys xs (newlist)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   133
15700
970e0293dfb3 tweaks mainly to achieve sml/nj compatibility
paulson
parents: 15697
diff changeset
   134
(*Flattens a list of list of strings to one string*)
970e0293dfb3 tweaks mainly to achieve sml/nj compatibility
paulson
parents: 15697
diff changeset
   135
fun onestr ls = String.concat (map String.concat ls);
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   136
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   137
fun thmstrings [] str = str
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   138
|   thmstrings (x::xs) str = thmstrings xs (str^(string_of_thm x))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   139
17315
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   140
fun is_clasimp_ax clasimp_num n = n <= clasimp_num 
15919
b30a35432f5a Replaced reference to SPASS with general one - set SPASS_HOME in settings file.
quigley
parents: 15817
diff changeset
   141
16156
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16091
diff changeset
   142
fun subone x = x - 1
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16091
diff changeset
   143
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16091
diff changeset
   144
fun numstr [] = ""
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16091
diff changeset
   145
|   numstr (x::xs) = (string_of_int x)^"%"^(numstr xs)
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16091
diff changeset
   146
15919
b30a35432f5a Replaced reference to SPASS with general one - set SPASS_HOME in settings file.
quigley
parents: 15817
diff changeset
   147
b30a35432f5a Replaced reference to SPASS with general one - set SPASS_HOME in settings file.
quigley
parents: 15817
diff changeset
   148
(* retrieve the axioms that were obtained from the clasimpset *)
b30a35432f5a Replaced reference to SPASS with general one - set SPASS_HOME in settings file.
quigley
parents: 15817
diff changeset
   149
17312
159783c74f75 yet more tidying of Isabelle-ATP link
paulson
parents: 17306
diff changeset
   150
fun get_clasimp_cls (clause_arr: (ResClause.clause * thm) array) clasimp_num step_nums = 
16157
1764cc98bafd minor tidying and sml/nj compatibility
paulson
parents: 16156
diff changeset
   151
    let val realnums = map subone step_nums	
1764cc98bafd minor tidying and sml/nj compatibility
paulson
parents: 16156
diff changeset
   152
	val clasimp_nums = List.filter (is_clasimp_ax (clasimp_num - 1)) realnums
16478
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16357
diff changeset
   153
(*	val axnums = TextIO.openOut(File.platform_path(File.tmp_path (Path.basic "axnums")))     
16157
1764cc98bafd minor tidying and sml/nj compatibility
paulson
parents: 16156
diff changeset
   154
	val _ = TextIO.output(axnums,(numstr clasimp_nums))
16478
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16357
diff changeset
   155
	val _ = TextIO.closeOut(axnums)*)
16157
1764cc98bafd minor tidying and sml/nj compatibility
paulson
parents: 16156
diff changeset
   156
    in
17315
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   157
	map (fn x =>  Array.sub(clause_arr, x)) clasimp_nums
16157
1764cc98bafd minor tidying and sml/nj compatibility
paulson
parents: 16156
diff changeset
   158
    end
15919
b30a35432f5a Replaced reference to SPASS with general one - set SPASS_HOME in settings file.
quigley
parents: 15817
diff changeset
   159
16156
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16091
diff changeset
   160
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16259
diff changeset
   161
(*****************************************************)
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16259
diff changeset
   162
(* get names of clasimp axioms used                  *)
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16259
diff changeset
   163
(*****************************************************)
16156
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16091
diff changeset
   164
17312
159783c74f75 yet more tidying of Isabelle-ATP link
paulson
parents: 17306
diff changeset
   165
 fun get_axiom_names step_nums thms clause_arr num_of_clauses =
16157
1764cc98bafd minor tidying and sml/nj compatibility
paulson
parents: 16156
diff changeset
   166
   let 
1764cc98bafd minor tidying and sml/nj compatibility
paulson
parents: 16156
diff changeset
   167
     (* not sure why this is necessary again, but seems to be *)
1764cc98bafd minor tidying and sml/nj compatibility
paulson
parents: 16156
diff changeset
   168
      val _ = (print_mode := (Library.gen_rems (op =) (! print_mode, ["xsymbols", "symbols"])))
1764cc98bafd minor tidying and sml/nj compatibility
paulson
parents: 16156
diff changeset
   169
  
1764cc98bafd minor tidying and sml/nj compatibility
paulson
parents: 16156
diff changeset
   170
     (***********************************************)
1764cc98bafd minor tidying and sml/nj compatibility
paulson
parents: 16156
diff changeset
   171
     (* here need to add the clauses from clause_arr*)
1764cc98bafd minor tidying and sml/nj compatibility
paulson
parents: 16156
diff changeset
   172
     (***********************************************)
1764cc98bafd minor tidying and sml/nj compatibility
paulson
parents: 16156
diff changeset
   173
  
17312
159783c74f75 yet more tidying of Isabelle-ATP link
paulson
parents: 17306
diff changeset
   174
      val clasimp_names_cls = get_clasimp_cls clause_arr num_of_clauses step_nums 
16157
1764cc98bafd minor tidying and sml/nj compatibility
paulson
parents: 16156
diff changeset
   175
      val clasimp_names = map (#1 o ResClause.clause_info o #1) clasimp_names_cls
1764cc98bafd minor tidying and sml/nj compatibility
paulson
parents: 16156
diff changeset
   176
  
1764cc98bafd minor tidying and sml/nj compatibility
paulson
parents: 16156
diff changeset
   177
      val _ = File.write (File.tmp_path (Path.basic "clasimp_names"))                                                               
1764cc98bafd minor tidying and sml/nj compatibility
paulson
parents: 16156
diff changeset
   178
                         (concat clasimp_names)
1764cc98bafd minor tidying and sml/nj compatibility
paulson
parents: 16156
diff changeset
   179
      val _ = (print_mode := (["xsymbols", "symbols"] @ ! print_mode))
1764cc98bafd minor tidying and sml/nj compatibility
paulson
parents: 16156
diff changeset
   180
   in
1764cc98bafd minor tidying and sml/nj compatibility
paulson
parents: 16156
diff changeset
   181
      clasimp_names
1764cc98bafd minor tidying and sml/nj compatibility
paulson
parents: 16156
diff changeset
   182
   end
17306
5cde710a8a23 Progress on eprover linkup, also massive tidying
paulson
parents: 17235
diff changeset
   183
   
17315
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   184
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   185
fun get_axiom_names_spass proofstr thms clause_arr num_of_clauses =
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   186
  let (* parse spass proof into datatype *)
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   187
      val tokens = #1(lex proofstr)
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   188
      val proof_steps = parse tokens
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   189
      val _ = File.write (File.tmp_path (Path.basic "parsing_done")) 
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   190
                         ("Did parsing on "^proofstr)
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   191
      (* get axioms as correctly numbered clauses w.r.t. the Spass proof *)
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   192
  in
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   193
    get_axiom_names (get_step_nums (List.filter is_axiom proof_steps) []) 
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   194
                    thms clause_arr num_of_clauses
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   195
  end;
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16259
diff changeset
   196
    
17306
5cde710a8a23 Progress on eprover linkup, also massive tidying
paulson
parents: 17235
diff changeset
   197
 fun get_axiom_names_vamp_E proofstr thms clause_arr num_of_clauses  =
5cde710a8a23 Progress on eprover linkup, also massive tidying
paulson
parents: 17235
diff changeset
   198
   get_axiom_names (get_linenums proofstr) thms clause_arr num_of_clauses;
5cde710a8a23 Progress on eprover linkup, also massive tidying
paulson
parents: 17235
diff changeset
   199
    
17235
8e55ad29b690 Added ECommunication.ML and modified res_atp.ML, Reconstruction.thy, and
quigley
parents: 17122
diff changeset
   200
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16259
diff changeset
   201
(***********************************************)
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16259
diff changeset
   202
(* get axioms for reconstruction               *)
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16259
diff changeset
   203
(***********************************************)
16156
2f6fc19aba1e Fixed array containing clasimpset rules. Added flags to turn on and off reconstruction and full spass
quigley
parents: 16091
diff changeset
   204
fun numclstr (vars, []) str = str
16157
1764cc98bafd minor tidying and sml/nj compatibility
paulson
parents: 16156
diff changeset
   205
|   numclstr ( vars, ((num, thm)::rest)) str =
1764cc98bafd minor tidying and sml/nj compatibility
paulson
parents: 16156
diff changeset
   206
      let val newstr = str^(string_of_int num)^" "^(string_of_thm thm)^" "
1764cc98bafd minor tidying and sml/nj compatibility
paulson
parents: 16156
diff changeset
   207
      in
1764cc98bafd minor tidying and sml/nj compatibility
paulson
parents: 16156
diff changeset
   208
        numclstr  (vars,rest) newstr
1764cc98bafd minor tidying and sml/nj compatibility
paulson
parents: 16156
diff changeset
   209
      end
15919
b30a35432f5a Replaced reference to SPASS with general one - set SPASS_HOME in settings file.
quigley
parents: 15817
diff changeset
   210
16157
1764cc98bafd minor tidying and sml/nj compatibility
paulson
parents: 16156
diff changeset
   211
fun addvars c (a,b)  = (a,b,c)
15919
b30a35432f5a Replaced reference to SPASS with general one - set SPASS_HOME in settings file.
quigley
parents: 15817
diff changeset
   212
17315
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   213
fun get_axioms_used proof_steps thms clause_arr num_of_clauses  =
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   214
  let 
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   215
     val _=  (print_mode := (Library.gen_rems (op =) (! print_mode, ["xsymbols", "symbols"])))
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   216
     val axioms = (List.filter is_axiom) proof_steps
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   217
     val step_nums = get_step_nums axioms []
15919
b30a35432f5a Replaced reference to SPASS with general one - set SPASS_HOME in settings file.
quigley
parents: 15817
diff changeset
   218
17315
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   219
     val clauses =(*(clasimp_cls)@*)( make_clauses thms)
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   220
     
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   221
     val vars = map thm_vars clauses
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   222
    
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   223
     val distvars = distinct (fold append vars [])
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   224
     val clause_terms = map prop_of clauses  
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   225
     val clause_frees = List.concat (map term_frees clause_terms)
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   226
17315
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   227
     val frees = map lit_string_with_nums clause_frees;
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   228
17315
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   229
     val distfrees = distinct frees
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   230
17315
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   231
     val metas = map Meson.make_meta_clause clauses
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   232
     val ax_strs = map #3 axioms
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   233
17315
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   234
     (* literals of -all- axioms, not just those used by spass *)
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   235
     val meta_strs = map ReconOrderClauses.get_meta_lits metas
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   236
    
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   237
     val metas_and_strs = ListPair.zip (metas,meta_strs)
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   238
     val _ = File.write(File.tmp_path (Path.basic "foo_clauses")) (onestr ax_strs)
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   239
     val _ = File.write(File.tmp_path (Path.basic "foo_metastrs")) (onestr meta_strs)
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   240
17315
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   241
     (* get list of axioms as thms with their variables *)
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   242
17315
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   243
     val ax_metas = get_assoc_snds ax_strs metas_and_strs []
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   244
     val ax_vars = map thm_vars ax_metas
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   245
     val ax_with_vars = ListPair.zip (ax_metas,ax_vars)
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   246
17315
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   247
     (* get list of extra axioms as thms with their variables *)
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   248
     val extra_metas = add_if_not_inlist metas ax_metas []
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   249
     val extra_vars = map thm_vars extra_metas
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   250
     val extra_with_vars = if (not (extra_metas = []) ) 
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   251
			   then ListPair.zip (extra_metas,extra_vars)
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   252
			   else []
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   253
  in
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   254
     (distfrees,distvars, extra_with_vars,ax_with_vars, ListPair.zip (step_nums,ax_metas))
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   255
  end;
16905
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   256
                                            
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   257
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   258
(*********************************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   259
(* Pass in spass string of proof and string version of isabelle goal *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   260
(* Get out reconstruction steps as a string to be sent to Isabelle   *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   261
(*********************************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   262
17122
278eb6251dc0 nicer list of axioms used
paulson
parents: 16905
diff changeset
   263
fun rules_to_string [] = "NONE"
278eb6251dc0 nicer list of axioms used
paulson
parents: 16905
diff changeset
   264
  | rules_to_string xs = "[" ^ space_implode ", " xs ^ "]"
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16259
diff changeset
   265
16905
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   266
fun subst_for a b = String.translate (fn c => str (if c=a then b else c));
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16259
diff changeset
   267
16905
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   268
val remove_linebreaks = subst_for #"\n" #"\t";
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   269
val restore_linebreaks = subst_for #"\t" #"\n";
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16259
diff changeset
   270
16478
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16357
diff changeset
   271
17315
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   272
fun proverString_to_lemmaString_aux proofstr thmstring goalstring toParent ppid thms clause_arr num_of_clauses getax = 
16905
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   273
 let val _ = File.append(File.tmp_path (Path.basic "thmstringfile"))
17315
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   274
               ("thmstring is " ^ thmstring ^ 
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   275
                "\nproofstr is " ^ proofstr ^
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   276
                "\ngoalstr is " ^ goalstring ^
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   277
                "\nnum of clauses is " ^ string_of_int num_of_clauses)
16478
d0a1f6231e2f Added VampCommunication.ML.
quigley
parents: 16357
diff changeset
   278
17315
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   279
     val axiom_names = getax proofstr thms clause_arr num_of_clauses
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   280
     val ax_str = "Rules from clasimpset used in automatic proof: " ^
17235
8e55ad29b690 Added ECommunication.ML and modified res_atp.ML, Reconstruction.thy, and
quigley
parents: 17122
diff changeset
   281
                  rules_to_string axiom_names
8e55ad29b690 Added ECommunication.ML and modified res_atp.ML, Reconstruction.thy, and
quigley
parents: 17122
diff changeset
   282
    in 
17312
159783c74f75 yet more tidying of Isabelle-ATP link
paulson
parents: 17306
diff changeset
   283
	 File.append(File.tmp_path (Path.basic "reconstrfile"))
159783c74f75 yet more tidying of Isabelle-ATP link
paulson
parents: 17306
diff changeset
   284
	            ("reconstring is: "^ax_str^"  "^goalstring);
17235
8e55ad29b690 Added ECommunication.ML and modified res_atp.ML, Reconstruction.thy, and
quigley
parents: 17122
diff changeset
   285
         TextIO.output (toParent, ax_str^"\n");
17312
159783c74f75 yet more tidying of Isabelle-ATP link
paulson
parents: 17306
diff changeset
   286
	 TextIO.output (toParent, "goalstring: "^goalstring^"\n");
17235
8e55ad29b690 Added ECommunication.ML and modified res_atp.ML, Reconstruction.thy, and
quigley
parents: 17122
diff changeset
   287
	 TextIO.output (toParent, "thmstring: "^thmstring^"\n");
8e55ad29b690 Added ECommunication.ML and modified res_atp.ML, Reconstruction.thy, and
quigley
parents: 17122
diff changeset
   288
	 TextIO.flushOut toParent;
8e55ad29b690 Added ECommunication.ML and modified res_atp.ML, Reconstruction.thy, and
quigley
parents: 17122
diff changeset
   289
8e55ad29b690 Added ECommunication.ML and modified res_atp.ML, Reconstruction.thy, and
quigley
parents: 17122
diff changeset
   290
	 Posix.Process.kill(Posix.Process.K_PROC ppid, Posix.Signal.usr2);
8e55ad29b690 Added ECommunication.ML and modified res_atp.ML, Reconstruction.thy, and
quigley
parents: 17122
diff changeset
   291
	(* Attempt to prevent several signals from turning up simultaneously *)
17306
5cde710a8a23 Progress on eprover linkup, also massive tidying
paulson
parents: 17235
diff changeset
   292
	 Posix.Process.sleep(Time.fromSeconds 1) ; all_tac
17235
8e55ad29b690 Added ECommunication.ML and modified res_atp.ML, Reconstruction.thy, and
quigley
parents: 17122
diff changeset
   293
    end
17315
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   294
    handle _ => (*FIXME: exn handler is too general!*)
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   295
     (File.write(File.tmp_path (Path.basic "proverString_handler")) "In exception handler";
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   296
      TextIO.output (toParent, "Proof found but translation failed : " ^ 
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   297
                     remove_linebreaks proofstr ^ "\n");
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   298
      TextIO.output (toParent, remove_linebreaks thmstring ^ "\n");
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   299
      TextIO.output (toParent, remove_linebreaks goalstring ^ "\n");
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   300
      TextIO.flushOut toParent;
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   301
      Posix.Process.kill(Posix.Process.K_PROC ppid, Posix.Signal.usr2);
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   302
      (* Attempt to prevent several signals from turning up simultaneously *)
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   303
      Posix.Process.sleep(Time.fromSeconds 1); all_tac);
17235
8e55ad29b690 Added ECommunication.ML and modified res_atp.ML, Reconstruction.thy, and
quigley
parents: 17122
diff changeset
   304
17315
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   305
fun proverString_to_lemmaString proofstr thmstring goalstring toParent ppid thms
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   306
      clause_arr num_of_clauses  = 
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   307
  proverString_to_lemmaString_aux proofstr thmstring goalstring toParent ppid thms        
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   308
       clause_arr num_of_clauses get_axiom_names_vamp_E;
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   309
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   310
fun spassString_to_lemmaString proofstr thmstring goalstring toParent ppid thms
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   311
      clause_arr  num_of_clauses  = 
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   312
  proverString_to_lemmaString_aux proofstr thmstring goalstring toParent ppid thms        
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   313
       clause_arr num_of_clauses get_axiom_names_spass;
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   314
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   315
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   316
(**** Full proof reconstruction for SPASS (not really working) ****)
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   317
15919
b30a35432f5a Replaced reference to SPASS with general one - set SPASS_HOME in settings file.
quigley
parents: 15817
diff changeset
   318
fun spassString_to_reconString proofstr thmstring goalstring toParent ppid thms clause_arr  num_of_clauses  = 
16905
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   319
  let val _ = File.write(File.tmp_path (Path.basic "thmstringfile")) 
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   320
                 (" thmstring is: "^thmstring^"proofstr is: "^proofstr)
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   321
      val tokens = #1(lex proofstr)
15782
a1863ea9052b Corrected the problem with the ATP directory.
quigley
parents: 15774
diff changeset
   322
16905
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   323
  (***********************************)
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   324
  (* parse spass proof into datatype *)
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   325
  (***********************************)
17306
5cde710a8a23 Progress on eprover linkup, also massive tidying
paulson
parents: 17235
diff changeset
   326
      val proof_steps = parse tokens
15919
b30a35432f5a Replaced reference to SPASS with general one - set SPASS_HOME in settings file.
quigley
parents: 15817
diff changeset
   327
16905
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   328
      val _ = File.write (File.tmp_path (Path.basic "foo_parse"))
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   329
                      ("Did parsing on "^proofstr)
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   330
    
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   331
      val _ = File.write (File.tmp_path (Path.basic "foo_thmstring_at_parse"))
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   332
                                ("Parsing for thmstring: "^thmstring)
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   333
  (************************************)
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   334
  (* recreate original subgoal as thm *)
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   335
  (************************************)
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   336
      (* get axioms as correctly numbered clauses w.r.t. the Spass proof *)
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   337
      (* need to get prems_of thm, then get right one of the prems, relating to whichever*)
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   338
      (* subgoal this is, and turn it into meta_clauses *)
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   339
      (* should prob add array and table here, so that we can get axioms*)
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   340
      (* produced from the clasimpset rather than the problem *)
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   341
      val (frees,vars,extra_with_vars ,ax_with_vars,numcls) = get_axioms_used proof_steps  thms clause_arr  num_of_clauses
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   342
      
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   343
      (*val numcls_string = numclstr ( vars, numcls) ""*)
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   344
      val _ = File.write (File.tmp_path (Path.basic "foo_axiom")) "got axioms"
16061
8a139c1557bf A new structure and reduced indentation
paulson
parents: 16039
diff changeset
   345
	
16905
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   346
  (************************************)
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   347
  (* translate proof                  *)
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   348
  (************************************)
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   349
      val _ = File.write (File.tmp_path (Path.basic "foo_steps"))                                                                           
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   350
                       ("about to translate proof, steps: "
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   351
                       ^(init_proofsteps_to_string proof_steps ""))
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   352
      val (newthm,proof) = translate_proof numcls  proof_steps vars
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   353
      val _ = File.write (File.tmp_path (Path.basic "foo_steps2"))                                                                       
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   354
                       ("translated proof, steps: "^(init_proofsteps_to_string proof_steps ""))
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   355
  (***************************************************)
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   356
  (* transfer necessary steps as strings to Isabelle *)
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   357
  (***************************************************)
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   358
      (* turn the proof into a string *)
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   359
      val reconProofStr = proofs_to_string proof ""
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   360
      (* do the bit for the Isabelle ordered axioms at the top *)
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   361
      val ax_nums = map #1 numcls
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   362
      val ax_strs = map ReconOrderClauses.get_meta_lits_bracket (map #2 numcls)
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   363
      val numcls_strs = ListPair.zip (ax_nums,ax_strs)
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   364
      val num_cls_vars =  map (addvars vars) numcls_strs;
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   365
      val reconIsaAxStr = origAxs_to_string (ListPair.zip (ax_nums,ax_with_vars)) ""
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   366
      
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   367
      val extra_nums = if (not (extra_with_vars = [])) then (1 upto (length extra_with_vars))
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   368
                       else []
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   369
      val reconExtraAxStr = extraAxs_to_string ( ListPair.zip (extra_nums,extra_with_vars)) ""
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   370
      val frees_str = "["^(thmvars_to_string frees "")^"]"
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   371
      val _ = File.write (File.tmp_path (Path.basic "reconstringfile"))
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   372
                          (frees_str^reconExtraAxStr^reconIsaAxStr^reconProofStr)
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   373
      val reconstr = (frees_str^reconExtraAxStr^reconIsaAxStr^reconProofStr)
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   374
  in 
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   375
       TextIO.output (toParent, reconstr^"\n");
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   376
       TextIO.flushOut toParent;
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   377
       TextIO.output (toParent, thmstring^"\n");
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   378
       TextIO.flushOut toParent;
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   379
       TextIO.output (toParent, goalstring^"\n");
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   380
       TextIO.flushOut toParent;
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   381
16905
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   382
       Posix.Process.kill(Posix.Process.K_PROC ppid, Posix.Signal.usr2);
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   383
      (* Attempt to prevent several signals from turning up simultaneously *)
17306
5cde710a8a23 Progress on eprover linkup, also massive tidying
paulson
parents: 17235
diff changeset
   384
       Posix.Process.sleep(Time.fromSeconds 1) ; all_tac
16905
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   385
  end
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   386
  handle _ => 
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   387
  let val _ = File.write(File.tmp_path (Path.basic "foo_handler")) "In exception handler"
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   388
  in 
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   389
       TextIO.output (toParent,"Proof found but translation failed for resolution proof:"^(remove_linebreaks proofstr) ^"\n");
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   390
      TextIO.flushOut toParent;
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   391
    TextIO.output (toParent, thmstring^"\n");
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   392
       TextIO.flushOut toParent;
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   393
       TextIO.output (toParent, goalstring^"\n");
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   394
       TextIO.flushOut toParent;
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   395
      Posix.Process.kill(Posix.Process.K_PROC ppid, Posix.Signal.usr2);
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   396
      (* Attempt to prevent several signals from turning up simultaneously *)
17306
5cde710a8a23 Progress on eprover linkup, also massive tidying
paulson
parents: 17235
diff changeset
   397
      Posix.Process.sleep(Time.fromSeconds 1); all_tac
16905
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   398
  end
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   399
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   400
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   401
(**********************************************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   402
(* At other end, want to turn back into datatype so can apply reconstruct_proof.  *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   403
(* This will be done by the signal handler                                        *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   404
(**********************************************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   405
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   406
(* Parse in the string version of the proof steps for reconstruction *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   407
(* Isar format: cl1 [BINARY 0 cl2 0];cl1 [PARAMOD 0 cl2 0]; cl1 [DEMOD 0 cl2];cl1 [FACTOR 1 2];*)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   408
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   409
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   410
 val term_numstep =
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   411
        (number ++ (a (Other ",")) ++ number) >> (fn (a, (_, c)) => (a, c))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   412
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   413
val extraaxiomstep = (a (Word "ExtraAxiom"))++ (a (Other "(")) ++(a (Other ")"))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   414
            >> (fn (_) => ExtraAxiom)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   415
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   416
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   417
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   418
val origaxiomstep = (a (Word "OrigAxiom"))++ (a (Other "(")) ++(a (Other ")"))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   419
            >> (fn (_) => OrigAxiom)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   420
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   421
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   422
 val axiomstep = (a (Word "Axiom"))++ (a (Other "(")) ++(a (Other ")"))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   423
            >> (fn (_) => Axiom)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   424
     
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   425
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   426
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   427
      
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   428
 val binarystep = (a (Word "Binary")) ++ (a (Other "(")) ++ (a (Other "(")) 
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   429
                   ++ term_numstep  ++ (a (Other ")")) ++ (a (Other ","))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   430
                   ++ (a (Other "(")) ++ term_numstep ++ (a (Other ")")) ++ (a (Other ")"))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   431
            >> (fn (_, (_, (_, (c, (_,(_,(_, (e,(_,_))))))))) => Binary (c,e))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   432
      
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   433
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   434
 val parastep = (a (Word "Para")) ++ (a (Other "(")) ++ (a (Other "(")) 
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   435
                   ++ term_numstep  ++ (a (Other ")")) ++ (a (Other ","))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   436
                   ++ (a (Other "(")) ++ term_numstep ++ (a (Other ")")) ++ (a (Other ")"))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   437
            >> (fn (_, (_, (_, (c, (_,(_,(_, (e,(_,_))))))))) => Para(c, e))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   438
      
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   439
 val mrrstep = (a (Word "MRR")) ++ (a (Other "(")) ++ (a (Other "(")) 
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   440
                   ++ term_numstep  ++ (a (Other ")")) ++ (a (Other ","))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   441
                   ++ (a (Other "(")) ++ term_numstep ++ (a (Other ")")) ++ (a (Other ")"))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   442
            >> (fn (_, (_, (_, (c, (_,(_,(_, (e,(_,_))))))))) => MRR(c, e))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   443
      
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   444
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   445
 val factorstep = (a (Word "Factor")) ++ (a (Other "("))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   446
                    ++ number ++ (a (Other ","))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   447
                       ++ number ++ (a (Other ","))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   448
                       ++ number ++  (a (Other ")"))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   449
                   
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   450
            >> (fn (_, (_, (c, (_, (e,(_,(f,_))))))) =>  Factor (c,e,f))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   451
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   452
16548
aa36ae6b955e Temporarily removed Rewrite from the translation code so that parsing with work on lists of numbers.
quigley
parents: 16520
diff changeset
   453
(*val rewritestep = (a (Word "Rewrite"))  ++ (a (Other "(")) ++ (a (Other "(")) 
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   454
                   ++ term_numstep  ++ (a (Other ")")) ++ (a (Other ","))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   455
                   ++ (a (Other "(")) ++ term_numstep ++ (a (Other ")")) ++ (a (Other ")"))
16548
aa36ae6b955e Temporarily removed Rewrite from the translation code so that parsing with work on lists of numbers.
quigley
parents: 16520
diff changeset
   456
            >> (fn (_, (_, (_, (c, (_,(_,(_, (e,(_,_))))))))) => Rewrite (c,e))*)
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   457
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   458
val obviousstep = (a (Word "Obvious")) ++ (a (Other "(")) 
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   459
                   ++ term_numstep  ++ (a (Other ")")) 
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   460
            >> (fn (_, (_, (c,_))) => Obvious (c))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   461
16548
aa36ae6b955e Temporarily removed Rewrite from the translation code so that parsing with work on lists of numbers.
quigley
parents: 16520
diff changeset
   462
 val methodstep = extraaxiomstep || origaxiomstep || axiomstep ||binarystep || factorstep|| parastep || mrrstep || (*rewritestep ||*) obviousstep
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   463
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   464
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   465
 val number_list_step =
15739
bb2acfed8212 yet more tidying up: removal of some references to Main
paulson
parents: 15700
diff changeset
   466
        ( number ++ many ((a (Other ",") ++ number)>> #2))
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   467
        >> (fn (a,b) => (a::b))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   468
        
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   469
 val numberlist_step = a (Other "[")  ++ a (Other "]")
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   470
                        >>(fn (_,_) => ([]:int list))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   471
                       || a (Other "[") ++ number_list_step ++ a (Other "]")
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   472
                        >>(fn (_,(a,_)) => a)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   473
                    
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   474
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   475
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   476
(** change this to allow P (x U) *)
17306
5cde710a8a23 Progress on eprover linkup, also massive tidying
paulson
parents: 17235
diff changeset
   477
 fun arglist_step input = 
5cde710a8a23 Progress on eprover linkup, also massive tidying
paulson
parents: 17235
diff changeset
   478
   ( word ++ many word >> (fn (a, b) => (a^" "^(space_implode " " b)))
5cde710a8a23 Progress on eprover linkup, also massive tidying
paulson
parents: 17235
diff changeset
   479
    ||word >> (fn (a) => (a)))input
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   480
                
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   481
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   482
fun literal_step input = (word ++ a (Other "(") ++ arglist_step ++  a (Other ")")
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   483
                                          >>(fn (a, (b, (c,d))) => (a^" ("^(c)^")"))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   484
                        || arglist_step >> (fn (a) => (a)))input
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   485
                           
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   486
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   487
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   488
(* fun term_step input = (a (Other "~") ++ arglist_step ++ a (Other "%")>> (fn (a,(b,c)) => ("~ "^b))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   489
                     ||  arglist_step ++ a (Other "%")>> (fn (a,b) => a ))input
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   490
*)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   491
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   492
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   493
 fun term_step input = (a (Other "~") ++ literal_step ++ a (Other "%")>> (fn (a,(b,c)) => ("~ "^b))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   494
                     ||  literal_step ++ a (Other "%")>> (fn (a,b) => a ))input
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   495
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   496
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   497
         
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   498
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   499
 val term_list_step =
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   500
        (  term_step ++ many ( term_step))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   501
        >> (fn (a,b) => (a::b))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   502
        
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   503
 
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   504
val term_lists_step = a (Other "[")  ++ a (Other "]")
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   505
                        >>(fn (_,_) => ([]:string list))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   506
                       || a (Other "[") ++ term_list_step ++ a (Other "]")
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   507
                        >>(fn (_,(a,_)) => a)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   508
                     
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   509
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   510
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   511
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   512
fun anytoken_step input  = (word>> (fn (a) => a)  ) input
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   513
                       handle NOPARSE_WORD => (number>> (fn (a) => string_of_int a)  ) input
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   514
                      handle NOPARSE_NUMBER => (other_char >> (fn(a) => a)) input
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   515
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   516
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   517
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   518
fun goalstring_step input= (anytoken_step ++ many (anytoken_step )
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   519
                  >> (fn (a,b) =>  (a^" "^(implode b)))) input
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   520
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   521
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   522
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   523
 val linestep = number ++ methodstep ++ term_lists_step ++ term_lists_step
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   524
                >> (fn (a, (b, (c,d))) => (a,(b,c,d)))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   525
    
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   526
 val lines_step = many linestep
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   527
15739
bb2acfed8212 yet more tidying up: removal of some references to Main
paulson
parents: 15700
diff changeset
   528
 val alllines_step = (term_lists_step ++ lines_step ) ++ finished >> #1
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   529
    
15739
bb2acfed8212 yet more tidying up: removal of some references to Main
paulson
parents: 15700
diff changeset
   530
 val parse_step = #1 o alllines_step
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   531
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   532
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   533
 (*
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   534
val reconstr ="[P%x%xa%xb%]1OrigAxiom()[P x%~ P U%][U%]3OrigAxiom()[P U%~ P x%][U%]5OrigAxiom()[~ P xa%~ P U%][U%]7OrigAxiom()[P U%P xb%][U%]1Axiom()[P x%~ P U%][U%]3Axiom()[P U%~ P x%][U%]5Axiom()[~ P U%~ P xa%][U%]7Axiom()[P U%P xb%][U%]9Factor(5,0,1)[~ P xa%][]10Binary((9,0),(3,0))[~ P x%][]11Binary((10,0),(1,0))[~ P U%][U%]12Factor(7,0,1)[P xb%][]14Binary((11,0),(12,0))[][]%(EX x::'a::type. ALL y::'a::type. (P::'a::type => bool) x = P y) -->(EX x::'a::type. P x) = (ALL y::'a::type. P y)"
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   535
*)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   536
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   537
(************************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   538
(* Construct an Isar style proof from a list of proof steps *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   539
(************************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   540
(* want to assume all axioms, then do haves for the other clauses*)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   541
(* then show for the last step *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   542
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   543
(* replace ~ by not here *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   544
fun change_nots [] = []
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   545
|   change_nots (x::xs) = if x = "~" 
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   546
                          then 
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   547
                             ["\\", "<", "n", "o", "t", ">"]@(change_nots xs)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   548
                          else (x::(change_nots xs))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   549
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   550
(*
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   551
fun clstrs_to_string [] str = str
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   552
|   clstrs_to_string (x::[]) str = str^x
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   553
|   clstrs_to_string (x::xs) str = clstrs_to_string xs (str^(x^"; "))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   554
*)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   555
fun clstrs_to_string [] str = implode (change_nots (explode str))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   556
|   clstrs_to_string (x::[]) str = implode (change_nots (explode (str^x)))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   557
|   clstrs_to_string (x::xs) str = implode (change_nots (explode (clstrs_to_string xs (str^(x^"; ")))))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   558
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   559
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   560
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   561
fun thmvars_to_quantstring [] str = str
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   562
|   thmvars_to_quantstring (x::[]) str =str^x^". "
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   563
|   thmvars_to_quantstring (x::xs) str = thmvars_to_quantstring xs (str^(x^" "))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   564
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   565
16091
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   566
fun clause_strs_to_isar clstrs [] =  "\"\\<lbrakk>"^(clstrs_to_string clstrs "")^"\\<rbrakk> \\<Longrightarrow> False\""
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   567
|   clause_strs_to_isar clstrs thmvars = "\"\\<And>"^(thmvars_to_quantstring thmvars "")^"\\<lbrakk>"^(clstrs_to_string clstrs "")^"\\<rbrakk> \\<Longrightarrow> False\""
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   568
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   569
fun frees_to_string [] str = implode (change_nots (explode str))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   570
|   frees_to_string (x::[]) str = implode (change_nots (explode (str^x)))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   571
|   frees_to_string  (x::xs) str = implode (change_nots (explode (frees_to_string xs (str^(x^" ")))))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   572
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   573
fun frees_to_isar_str [] =  ""
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   574
|   frees_to_isar_str  clstrs = (frees_to_string clstrs "")
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   575
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   576
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   577
(***********************************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   578
(* functions for producing assumptions for the Isabelle ordered axioms *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   579
(***********************************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   580
(*val str = "[P%x%xa%xb%]1OrigAxiom()[P x%~ P U%][U%]3OrigAxiom()[P U%~ P x%][U%]5OrigAxiom()[~ P xa%~ P U%][U%]7OrigAxiom()[P U%P xb%][U%]1Axiom()[P x%~ P U%][U%]3Axiom()[P U%~ P x%][U%]5Axiom()[~ P U%~ P xa%][U%]7Axiom()[P U%P xb%][U%]9Factor(5,0,1)[~ P xa%][]10Binary((9,0),(3,0))[~ P x%][]11Binary((10,0),(1,0))[~ P U%][U%]12Factor(7,0,1)[P xb%][]14Binary((11,0),(12,0))[][]";       
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   581
num, rule, clausestrs, vars*)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   582
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   583
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   584
(* assume the extra clauses - not used in Spass proof *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   585
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   586
fun is_extraaxiom_step ( num:int,(ExtraAxiom, str, tstr)) = true
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   587
|   is_extraaxiom_step (num, _) = false
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   588
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   589
fun get_extraaxioms xs = List.filter (is_extraaxiom_step) ( xs)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   590
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   591
fun assume_isar_extraaxiom [] str  = str
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   592
|   assume_isar_extraaxiom ((numb,(step, clstr, thmvars))::xs) str  = assume_isar_extraaxiom xs (str^"and cl"^(string_of_int numb)^"': "^(clause_strs_to_isar clstr thmvars)^"\n " )
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   593
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   594
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   595
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   596
fun assume_isar_extraaxioms  [] = ""
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   597
|assume_isar_extraaxioms ((numb,(step, clstrs, thmstrs))::xs) = let val str = "assume cl"^(string_of_int numb)^"': "^(clause_strs_to_isar clstrs thmstrs)^"\n" 
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   598
                                         in
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   599
                                             assume_isar_extraaxiom xs str
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   600
                                         end
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   601
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   602
(* assume the Isabelle ordered clauses *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   603
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   604
fun is_origaxiom_step ( num:int,(OrigAxiom, str, tstr)) = true
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   605
|   is_origaxiom_step (num, _) = false
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   606
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   607
fun get_origaxioms xs = List.filter (is_origaxiom_step) ( xs)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   608
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   609
fun assume_isar_origaxiom [] str  = str
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   610
|   assume_isar_origaxiom ((numb,(step, clstr, thmvars))::xs) str  = assume_isar_origaxiom xs (str^"and cl"^(string_of_int numb)^"': "^(clause_strs_to_isar clstr thmvars)^"\n " )
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   611
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   612
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   613
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   614
fun assume_isar_origaxioms ((numb,(step, clstrs, thmstrs))::xs) = let val str = "assume cl"^(string_of_int numb)^"': "^(clause_strs_to_isar clstrs thmstrs)^"\n" 
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   615
                                         in
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   616
                                             assume_isar_origaxiom xs str
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   617
                                         end
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   618
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   619
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   620
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   621
fun is_axiom_step ( num:int,(Axiom, str, tstr)) = true
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   622
|   is_axiom_step (num, _) = false
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   623
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   624
fun get_axioms xs = List.filter  (is_axiom_step) ( xs)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   625
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   626
fun have_isar_axiomline (numb,(step, clstrs, thmstrs))="have cl"^(string_of_int numb)^": "^(clause_strs_to_isar clstrs thmstrs)^"\n"
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   627
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   628
fun  by_isar_axiomline (numb,(step, clstrs, thmstrs))="by (rule cl"^ (string_of_int numb)^"') \n"
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   629
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   630
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   631
fun isar_axiomline (numb, (step, clstrs, thmstrs))  = (have_isar_axiomline (numb,(step,clstrs, thmstrs )))^( by_isar_axiomline(numb,(step,clstrs, thmstrs )) )
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   632
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   633
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   634
fun isar_axiomlines [] str = str
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   635
|   isar_axiomlines (x::xs) str = isar_axiomlines xs (str^(isar_axiomline x))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   636
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   637
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   638
fun have_isar_line (numb,(step, clstrs, thmstrs))="have cl"^(string_of_int numb)^": "^(clause_strs_to_isar clstrs thmstrs)^"\n"
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16259
diff changeset
   639
(*FIX: ask Larry to add and mrr attribute *)
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   640
16091
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   641
fun by_isar_line ((Binary ((a,b), (c,d)))) = 
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   642
    "by(rule cl"^
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   643
		(string_of_int a)^" [binary "^(string_of_int b)^" cl"^
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   644
		(string_of_int c)^" "^(string_of_int d)^"])\n"
16357
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16259
diff changeset
   645
|by_isar_line ((MRR ((a,b), (c,d)))) = 
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16259
diff changeset
   646
    "by(rule cl"^
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16259
diff changeset
   647
		(string_of_int a)^" [binary "^(string_of_int b)^" cl"^
f1275d2a1dee All subgoals sent to the watcher at once now.
quigley
parents: 16259
diff changeset
   648
		(string_of_int c)^" "^(string_of_int d)^"])\n"
16091
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   649
|   by_isar_line ( (Para ((a,b), (c,d)))) =
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   650
    "by (rule cl"^
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   651
		(string_of_int a)^" [paramod "^(string_of_int b)^" cl"^
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   652
		(string_of_int c)^" "^(string_of_int d)^"])\n"
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   653
|   by_isar_line ((Factor ((a,b,c)))) = 
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   654
    "by (rule cl"^(string_of_int a)^" [factor "^(string_of_int b)^" "^
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   655
		(string_of_int c)^" ])\n"
16548
aa36ae6b955e Temporarily removed Rewrite from the translation code so that parsing with work on lists of numbers.
quigley
parents: 16520
diff changeset
   656
(*|   by_isar_line ( (Rewrite ((a,b),(c,d)))) =
16091
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   657
    "by (rule cl"^(string_of_int a)^" [demod "^(string_of_int b)^" "^
16548
aa36ae6b955e Temporarily removed Rewrite from the translation code so that parsing with work on lists of numbers.
quigley
parents: 16520
diff changeset
   658
		(string_of_int c)^" "^(string_of_int d)^" ])\n"*)
16091
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   659
|   by_isar_line ( (Obvious ((a,b)))) =
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   660
    "by (rule cl"^(string_of_int a)^" [obvious "^(string_of_int b)^" ])\n"
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   661
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   662
fun isar_line (numb, (step, clstrs, thmstrs))  = (have_isar_line (numb,(step,clstrs, thmstrs )))^( by_isar_line step)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   663
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   664
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   665
fun isar_lines [] str = str
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   666
|   isar_lines (x::xs) str = isar_lines xs (str^(isar_line x))
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   667
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   668
fun last_isar_line (numb,( step, clstrs,thmstrs)) = "show \"False\"\n"^(by_isar_line step)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   669
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   670
16091
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   671
fun to_isar_proof (frees, xs, goalstring) =
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   672
    let val extraaxioms = get_extraaxioms xs
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   673
	val extraax_num = length extraaxioms
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   674
	val origaxioms_and_steps = Library.drop (extraax_num, xs)  
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   675
	
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   676
	val origaxioms = get_origaxioms origaxioms_and_steps
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   677
	val origax_num = length origaxioms
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   678
	val axioms_and_steps = Library.drop (origax_num + extraax_num, xs)  
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   679
	val axioms = get_axioms axioms_and_steps
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   680
	
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   681
	val steps = Library.drop (origax_num, axioms_and_steps)
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   682
	val firststeps = ReconOrderClauses.butlast steps
17312
159783c74f75 yet more tidying of Isabelle-ATP link
paulson
parents: 17306
diff changeset
   683
	val laststep = List.last steps
16091
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   684
	val goalstring = implode(ReconOrderClauses.butlast(explode goalstring))
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   685
	
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   686
	val isar_proof = 
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   687
		("show \""^goalstring^"\"\n")^
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   688
		("proof (rule ccontr,skolemize, make_clauses) \n")^
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   689
		("fix "^(frees_to_isar_str frees)^"\n")^
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   690
		(assume_isar_extraaxioms extraaxioms)^
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   691
		(assume_isar_origaxioms origaxioms)^
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   692
		(isar_axiomlines axioms "")^
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   693
		(isar_lines firststeps "")^
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   694
		(last_isar_line laststep)^
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   695
		("qed")
16905
fa26952fa7b6 reformatting and tidying
paulson
parents: 16803
diff changeset
   696
	val _ = File.write (File.tmp_path (Path.basic "isar_proof_file")) isar_proof
16091
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   697
    in
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   698
	isar_proof
3683f0486a11 further tweaks to the SPASS setup
paulson
parents: 16061
diff changeset
   699
    end;
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   700
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   701
(* get fix vars from axioms - all Frees *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   702
(* check each clause for meta-vars and /\ over them at each step*)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   703
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   704
(*******************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   705
(* This assumes the thm list  "numcls" is still there  *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   706
(* In reality, should probably label it with an        *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   707
(* ID number identifying the subgoal.  This could      *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   708
(* be passed over to the watcher, e.g.  numcls25       *)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   709
(*******************************************************)
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   710
17315
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   711
fun apply_res_thm str goalstring  = 
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   712
  let val tokens = #1 (lex str);
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   713
      val _ = File.append (File.tmp_path (Path.basic "apply_res_1")) 
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   714
	 ("str is: "^str^" goalstr is: "^goalstring^"\n")	
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   715
      val (frees,recon_steps) = parse_step tokens 
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   716
      val isar_str = to_isar_proof (frees, recon_steps, goalstring)
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   717
      val foo = File.write (File.tmp_path (Path.basic "apply_res_2")) isar_str
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   718
  in 
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   719
     Pretty.writeln(Pretty.str isar_str)
5bf0e0aacc24 consolidation of duplicate code in Isabelle-ATP linkup
paulson
parents: 17312
diff changeset
   720
  end 
15642
028059faa963 *** empty log message ***
quigley
parents:
diff changeset
   721
15684
5ec4d21889d6 Reconstruction code, now packaged to avoid name clashes
paulson
parents: 15658
diff changeset
   722
end;