src/HOL/ATP_Linkup.thy
author wenzelm
Fri, 03 Oct 2008 19:35:16 +0200
changeset 28483 9912ab2992f6
parent 28477 9339d4dcec8b
child 28573 6403f0e16269
permissions -rw-r--r--
perform atp_setups here;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
21254
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents:
diff changeset
     1
(*  Title:      HOL/ATP_Linkup.thy
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents:
diff changeset
     2
    ID:         $Id$
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents:
diff changeset
     3
    Author:     Lawrence C Paulson
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents:
diff changeset
     4
    Author:     Jia Meng, NICTA
28483
9912ab2992f6 perform atp_setups here;
wenzelm
parents: 28477
diff changeset
     5
    Author:     Fabian Immler, TUM
21254
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents:
diff changeset
     6
*)
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents:
diff changeset
     7
28477
9339d4dcec8b version of sledgehammer using threads instead of processes, misc cleanup;
wenzelm
parents: 28476
diff changeset
     8
header {* The Isabelle-ATP Linkup *}
21254
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents:
diff changeset
     9
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents:
diff changeset
    10
theory ATP_Linkup
27368
9f90ac19e32b established Plain theory and image
haftmann
parents: 27182
diff changeset
    11
imports Record Hilbert_Choice
21254
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents:
diff changeset
    12
uses
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents:
diff changeset
    13
  "Tools/polyhash.ML"
21977
7f7177a95189 first version of structured proof reconstruction
paulson
parents: 21453
diff changeset
    14
  "Tools/res_clause.ML"
28477
9339d4dcec8b version of sledgehammer using threads instead of processes, misc cleanup;
wenzelm
parents: 28476
diff changeset
    15
  ("Tools/res_axioms.ML")
21254
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents:
diff changeset
    16
  ("Tools/res_hol_clause.ML")
21999
0cf192e489e2 improvements to proof reconstruction. Some files loaded in a different order
paulson
parents: 21977
diff changeset
    17
  ("Tools/res_reconstruct.ML")
21254
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents:
diff changeset
    18
  ("Tools/res_atp.ML")
28477
9339d4dcec8b version of sledgehammer using threads instead of processes, misc cleanup;
wenzelm
parents: 28476
diff changeset
    19
  ("Tools/atp_manager.ML")
9339d4dcec8b version of sledgehammer using threads instead of processes, misc cleanup;
wenzelm
parents: 28476
diff changeset
    20
  ("Tools/atp_thread.ML")
23444
6d4703843f93 added Metis setup (from Metis.thy);
wenzelm
parents: 21999
diff changeset
    21
  "~~/src/Tools/Metis/metis.ML"
6d4703843f93 added Metis setup (from Metis.thy);
wenzelm
parents: 21999
diff changeset
    22
  ("Tools/metis_tools.ML")
21254
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents:
diff changeset
    23
begin
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents:
diff changeset
    24
24819
7d8e0a47392e modernized definitions;
wenzelm
parents: 24742
diff changeset
    25
definition COMBI :: "'a => 'a"
7d8e0a47392e modernized definitions;
wenzelm
parents: 24742
diff changeset
    26
  where "COMBI P == P"
7d8e0a47392e modernized definitions;
wenzelm
parents: 24742
diff changeset
    27
7d8e0a47392e modernized definitions;
wenzelm
parents: 24742
diff changeset
    28
definition COMBK :: "'a => 'b => 'a"
7d8e0a47392e modernized definitions;
wenzelm
parents: 24742
diff changeset
    29
  where "COMBK P Q == P"
21254
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents:
diff changeset
    30
24819
7d8e0a47392e modernized definitions;
wenzelm
parents: 24742
diff changeset
    31
definition COMBB :: "('b => 'c) => ('a => 'b) => 'a => 'c"
7d8e0a47392e modernized definitions;
wenzelm
parents: 24742
diff changeset
    32
  where "COMBB P Q R == P (Q R)"
21254
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents:
diff changeset
    33
24819
7d8e0a47392e modernized definitions;
wenzelm
parents: 24742
diff changeset
    34
definition COMBC :: "('a => 'b => 'c) => 'b => 'a => 'c"
7d8e0a47392e modernized definitions;
wenzelm
parents: 24742
diff changeset
    35
  where "COMBC P Q R == P R Q"
21254
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents:
diff changeset
    36
24819
7d8e0a47392e modernized definitions;
wenzelm
parents: 24742
diff changeset
    37
definition COMBS :: "('a => 'b => 'c) => ('a => 'b) => 'a => 'c"
7d8e0a47392e modernized definitions;
wenzelm
parents: 24742
diff changeset
    38
  where "COMBS P Q R == P R (Q R)"
21254
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents:
diff changeset
    39
24819
7d8e0a47392e modernized definitions;
wenzelm
parents: 24742
diff changeset
    40
definition fequal :: "'a => 'a => bool"
7d8e0a47392e modernized definitions;
wenzelm
parents: 24742
diff changeset
    41
  where "fequal X Y == (X=Y)"
21254
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents:
diff changeset
    42
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents:
diff changeset
    43
lemma fequal_imp_equal: "fequal X Y ==> X=Y"
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents:
diff changeset
    44
  by (simp add: fequal_def)
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents:
diff changeset
    45
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents:
diff changeset
    46
lemma equal_imp_fequal: "X=Y ==> fequal X Y"
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents:
diff changeset
    47
  by (simp add: fequal_def)
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents:
diff changeset
    48
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents:
diff changeset
    49
text{*These two represent the equivalence between Boolean equality and iff.
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents:
diff changeset
    50
They can't be converted to clauses automatically, as the iff would be
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents:
diff changeset
    51
expanded...*}
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents:
diff changeset
    52
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents:
diff changeset
    53
lemma iff_positive: "P | Q | P=Q"
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents:
diff changeset
    54
by blast
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents:
diff changeset
    55
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents:
diff changeset
    56
lemma iff_negative: "~P | ~Q | P=Q"
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents:
diff changeset
    57
by blast
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents:
diff changeset
    58
24827
646bdc51eb7d combinator translation
paulson
parents: 24819
diff changeset
    59
text{*Theorems for translation to combinators*}
646bdc51eb7d combinator translation
paulson
parents: 24819
diff changeset
    60
646bdc51eb7d combinator translation
paulson
parents: 24819
diff changeset
    61
lemma abs_S: "(%x. (f x) (g x)) == COMBS f g"
646bdc51eb7d combinator translation
paulson
parents: 24819
diff changeset
    62
apply (rule eq_reflection)
646bdc51eb7d combinator translation
paulson
parents: 24819
diff changeset
    63
apply (rule ext) 
646bdc51eb7d combinator translation
paulson
parents: 24819
diff changeset
    64
apply (simp add: COMBS_def) 
646bdc51eb7d combinator translation
paulson
parents: 24819
diff changeset
    65
done
646bdc51eb7d combinator translation
paulson
parents: 24819
diff changeset
    66
646bdc51eb7d combinator translation
paulson
parents: 24819
diff changeset
    67
lemma abs_I: "(%x. x) == COMBI"
646bdc51eb7d combinator translation
paulson
parents: 24819
diff changeset
    68
apply (rule eq_reflection)
646bdc51eb7d combinator translation
paulson
parents: 24819
diff changeset
    69
apply (rule ext) 
646bdc51eb7d combinator translation
paulson
parents: 24819
diff changeset
    70
apply (simp add: COMBI_def) 
646bdc51eb7d combinator translation
paulson
parents: 24819
diff changeset
    71
done
646bdc51eb7d combinator translation
paulson
parents: 24819
diff changeset
    72
646bdc51eb7d combinator translation
paulson
parents: 24819
diff changeset
    73
lemma abs_K: "(%x. y) == COMBK y"
646bdc51eb7d combinator translation
paulson
parents: 24819
diff changeset
    74
apply (rule eq_reflection)
646bdc51eb7d combinator translation
paulson
parents: 24819
diff changeset
    75
apply (rule ext) 
646bdc51eb7d combinator translation
paulson
parents: 24819
diff changeset
    76
apply (simp add: COMBK_def) 
646bdc51eb7d combinator translation
paulson
parents: 24819
diff changeset
    77
done
646bdc51eb7d combinator translation
paulson
parents: 24819
diff changeset
    78
646bdc51eb7d combinator translation
paulson
parents: 24819
diff changeset
    79
lemma abs_B: "(%x. a (g x)) == COMBB a g"
646bdc51eb7d combinator translation
paulson
parents: 24819
diff changeset
    80
apply (rule eq_reflection)
646bdc51eb7d combinator translation
paulson
parents: 24819
diff changeset
    81
apply (rule ext) 
646bdc51eb7d combinator translation
paulson
parents: 24819
diff changeset
    82
apply (simp add: COMBB_def) 
646bdc51eb7d combinator translation
paulson
parents: 24819
diff changeset
    83
done
646bdc51eb7d combinator translation
paulson
parents: 24819
diff changeset
    84
646bdc51eb7d combinator translation
paulson
parents: 24819
diff changeset
    85
lemma abs_C: "(%x. (f x) b) == COMBC f b"
646bdc51eb7d combinator translation
paulson
parents: 24819
diff changeset
    86
apply (rule eq_reflection)
646bdc51eb7d combinator translation
paulson
parents: 24819
diff changeset
    87
apply (rule ext) 
646bdc51eb7d combinator translation
paulson
parents: 24819
diff changeset
    88
apply (simp add: COMBC_def) 
646bdc51eb7d combinator translation
paulson
parents: 24819
diff changeset
    89
done
646bdc51eb7d combinator translation
paulson
parents: 24819
diff changeset
    90
27368
9f90ac19e32b established Plain theory and image
haftmann
parents: 27182
diff changeset
    91
9f90ac19e32b established Plain theory and image
haftmann
parents: 27182
diff changeset
    92
subsection {* Setup of Vampire, E prover and SPASS *}
9f90ac19e32b established Plain theory and image
haftmann
parents: 27182
diff changeset
    93
28477
9339d4dcec8b version of sledgehammer using threads instead of processes, misc cleanup;
wenzelm
parents: 28476
diff changeset
    94
use "Tools/res_axioms.ML" setup ResAxioms.setup
24827
646bdc51eb7d combinator translation
paulson
parents: 24819
diff changeset
    95
use "Tools/res_hol_clause.ML"
28477
9339d4dcec8b version of sledgehammer using threads instead of processes, misc cleanup;
wenzelm
parents: 28476
diff changeset
    96
use "Tools/res_reconstruct.ML" setup ResReconstruct.setup
21254
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents:
diff changeset
    97
use "Tools/res_atp.ML"
28477
9339d4dcec8b version of sledgehammer using threads instead of processes, misc cleanup;
wenzelm
parents: 28476
diff changeset
    98
use "Tools/atp_manager.ML"
28483
9912ab2992f6 perform atp_setups here;
wenzelm
parents: 28477
diff changeset
    99
use "Tools/atp_thread.ML"
9912ab2992f6 perform atp_setups here;
wenzelm
parents: 28477
diff changeset
   100
9912ab2992f6 perform atp_setups here;
wenzelm
parents: 28477
diff changeset
   101
text {* basic provers *}
9912ab2992f6 perform atp_setups here;
wenzelm
parents: 28477
diff changeset
   102
setup {* AtpManager.add_prover "spass" AtpThread.spass *}
9912ab2992f6 perform atp_setups here;
wenzelm
parents: 28477
diff changeset
   103
setup {* AtpManager.add_prover "vampire" AtpThread.vampire *}
9912ab2992f6 perform atp_setups here;
wenzelm
parents: 28477
diff changeset
   104
setup {* AtpManager.add_prover "e" AtpThread.eprover *}
9912ab2992f6 perform atp_setups here;
wenzelm
parents: 28477
diff changeset
   105
9912ab2992f6 perform atp_setups here;
wenzelm
parents: 28477
diff changeset
   106
text {* provers with stuctured output *}
9912ab2992f6 perform atp_setups here;
wenzelm
parents: 28477
diff changeset
   107
setup {* AtpManager.add_prover "vampire_full" AtpThread.vampire_full *}
9912ab2992f6 perform atp_setups here;
wenzelm
parents: 28477
diff changeset
   108
setup {* AtpManager.add_prover "e_full" AtpThread.eprover_full *}
9912ab2992f6 perform atp_setups here;
wenzelm
parents: 28477
diff changeset
   109
9912ab2992f6 perform atp_setups here;
wenzelm
parents: 28477
diff changeset
   110
text {* on some problems better results *}
9912ab2992f6 perform atp_setups here;
wenzelm
parents: 28477
diff changeset
   111
setup {* AtpManager.add_prover "spass_no_tc" (AtpThread.spass_filter_opts 40 false) *}
27182
9e4475b9d58c tuned setup;
wenzelm
parents: 26729
diff changeset
   112
23444
6d4703843f93 added Metis setup (from Metis.thy);
wenzelm
parents: 21999
diff changeset
   113
6d4703843f93 added Metis setup (from Metis.thy);
wenzelm
parents: 21999
diff changeset
   114
subsection {* The Metis prover *}
6d4703843f93 added Metis setup (from Metis.thy);
wenzelm
parents: 21999
diff changeset
   115
6d4703843f93 added Metis setup (from Metis.thy);
wenzelm
parents: 21999
diff changeset
   116
use "Tools/metis_tools.ML"
6d4703843f93 added Metis setup (from Metis.thy);
wenzelm
parents: 21999
diff changeset
   117
setup MetisTools.setup
6d4703843f93 added Metis setup (from Metis.thy);
wenzelm
parents: 21999
diff changeset
   118
21254
d53f76357f41 incorporated former theories Reconstruction and ResAtpMethods into ATP_Linkup;
wenzelm
parents:
diff changeset
   119
end