| author | nipkow | 
| Tue, 06 Dec 2011 14:18:24 +0100 | |
| changeset 45771 | a70465244096 | 
| parent 45654 | cf10bde35973 | 
| child 46125 | 00cd193a48dc | 
| permissions | -rw-r--r-- | 
| 923 | 1 | (* Title: HOL/HOL.thy | 
| 11750 | 2 | Author: Tobias Nipkow, Markus Wenzel, and Larry Paulson | 
| 3 | *) | |
| 923 | 4 | |
| 11750 | 5 | header {* The basis of Higher-Order Logic *}
 | 
| 923 | 6 | |
| 15131 | 7 | theory HOL | 
| 30929 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 8 | imports Pure "~~/src/Tools/Code_Generator" | 
| 23163 | 9 | uses | 
| 28952 
15a4b2cf8c34
made repository layout more coherent with logical distribution structure; stripped some $Id$s
 haftmann parents: 
28856diff
changeset | 10 |   ("Tools/hologic.ML")
 | 
| 23171 | 11 | "~~/src/Tools/IsaPlanner/zipper.ML" | 
| 12 | "~~/src/Tools/IsaPlanner/isand.ML" | |
| 13 | "~~/src/Tools/IsaPlanner/rw_tools.ML" | |
| 14 | "~~/src/Tools/IsaPlanner/rw_inst.ML" | |
| 30165 
6ee87f67d9cd
moved generic intuitionistic prover to src/Tools/intuitionistic.ML;
 wenzelm parents: 
30160diff
changeset | 15 | "~~/src/Tools/intuitionistic.ML" | 
| 30160 
5f7b17941730
moved some generic tools to src/Tools/ -- src/Provers is essentially obsolete;
 wenzelm parents: 
30063diff
changeset | 16 | "~~/src/Tools/project_rule.ML" | 
| 32733 
71618deaf777
moved generic cong_tac from HOL/Tools/datatype_aux.ML to Tools/cong_tac.ML, proper subgoal selection (failure, not exception);
 wenzelm parents: 
32668diff
changeset | 17 | "~~/src/Tools/cong_tac.ML" | 
| 23263 | 18 | "~~/src/Provers/hypsubst.ML" | 
| 19 | "~~/src/Provers/splitter.ML" | |
| 23163 | 20 | "~~/src/Provers/classical.ML" | 
| 21 | "~~/src/Provers/blast.ML" | |
| 22 | "~~/src/Provers/clasimp.ML" | |
| 30160 
5f7b17941730
moved some generic tools to src/Tools/ -- src/Provers is essentially obsolete;
 wenzelm parents: 
30063diff
changeset | 23 | "~~/src/Tools/coherent.ML" | 
| 
5f7b17941730
moved some generic tools to src/Tools/ -- src/Provers is essentially obsolete;
 wenzelm parents: 
30063diff
changeset | 24 | "~~/src/Tools/eqsubst.ML" | 
| 23163 | 25 | "~~/src/Provers/quantifier1.ML" | 
| 28952 
15a4b2cf8c34
made repository layout more coherent with logical distribution structure; stripped some $Id$s
 haftmann parents: 
28856diff
changeset | 26 |   ("Tools/simpdata.ML")
 | 
| 26580 
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
 krauss parents: 
26555diff
changeset | 27 | "~~/src/Tools/atomize_elim.ML" | 
| 24901 
d3cbf79769b9
added first version of user-space type system for class target
 haftmann parents: 
24844diff
changeset | 28 | "~~/src/Tools/induct.ML" | 
| 45014 
0e847655b2d8
New proof method "induction" that gives induction hypotheses the name IH.
 nipkow parents: 
44921diff
changeset | 29 |   ("~~/src/Tools/induction.ML")
 | 
| 27326 
d3beec370964
moved src/HOL/Tools/induct_tacs.ML to src/Tools/induct_tacs.ML;
 wenzelm parents: 
27212diff
changeset | 30 |   ("~~/src/Tools/induct_tacs.ML")
 | 
| 39036 
dff91b90d74c
use definitional CNFs in Metis rather than plain CNF, following a suggestion by Joe Hurd;
 blanchet parents: 
39014diff
changeset | 31 |   ("Tools/cnf_funcs.ML")
 | 
| 40939 
2c150063cd4d
setup subtyping/coercions once in HOL.thy, but enable it only later via configuration option;
 wenzelm parents: 
40858diff
changeset | 32 | "~~/src/Tools/subtyping.ML" | 
| 41827 | 33 | "~~/src/Tools/case_product.ML" | 
| 15131 | 34 | begin | 
| 2260 | 35 | |
| 31299 | 36 | setup {* Intuitionistic.method_setup @{binding iprover} *}
 | 
| 40939 
2c150063cd4d
setup subtyping/coercions once in HOL.thy, but enable it only later via configuration option;
 wenzelm parents: 
40858diff
changeset | 37 | setup Subtyping.setup | 
| 41827 | 38 | setup Case_Product.setup | 
| 33316 | 39 | |
| 30165 
6ee87f67d9cd
moved generic intuitionistic prover to src/Tools/intuitionistic.ML;
 wenzelm parents: 
30160diff
changeset | 40 | |
| 11750 | 41 | subsection {* Primitive logic *}
 | 
| 42 | ||
| 43 | subsubsection {* Core syntax *}
 | |
| 2260 | 44 | |
| 14854 | 45 | classes type | 
| 36452 | 46 | default_sort type | 
| 35625 | 47 | setup {* Object_Logic.add_base_sort @{sort type} *}
 | 
| 25460 
b80087af2274
interpretation of typedecls: instantiation to class type
 haftmann parents: 
25388diff
changeset | 48 | |
| 
b80087af2274
interpretation of typedecls: instantiation to class type
 haftmann parents: 
25388diff
changeset | 49 | arities | 
| 
b80087af2274
interpretation of typedecls: instantiation to class type
 haftmann parents: 
25388diff
changeset | 50 | "fun" :: (type, type) type | 
| 
b80087af2274
interpretation of typedecls: instantiation to class type
 haftmann parents: 
25388diff
changeset | 51 | itself :: (type) type | 
| 
b80087af2274
interpretation of typedecls: instantiation to class type
 haftmann parents: 
25388diff
changeset | 52 | |
| 7357 | 53 | typedecl bool | 
| 923 | 54 | |
| 11750 | 55 | judgment | 
| 56 |   Trueprop      :: "bool => prop"                   ("(_)" 5)
 | |
| 923 | 57 | |
| 11750 | 58 | consts | 
| 7357 | 59 | True :: bool | 
| 60 | False :: bool | |
| 38547 | 61 |   Not           :: "bool => bool"                   ("~ _" [40] 40)
 | 
| 38795 
848be46708dc
formerly unnamed infix conjunction and disjunction now named HOL.conj and HOL.disj
 haftmann parents: 
38786diff
changeset | 62 | |
| 
848be46708dc
formerly unnamed infix conjunction and disjunction now named HOL.conj and HOL.disj
 haftmann parents: 
38786diff
changeset | 63 | conj :: "[bool, bool] => bool" (infixr "&" 35) | 
| 
848be46708dc
formerly unnamed infix conjunction and disjunction now named HOL.conj and HOL.disj
 haftmann parents: 
38786diff
changeset | 64 | disj :: "[bool, bool] => bool" (infixr "|" 30) | 
| 38786 
e46e7a9cb622
formerly unnamed infix impliciation now named HOL.implies
 haftmann parents: 
38773diff
changeset | 65 | implies :: "[bool, bool] => bool" (infixr "-->" 25) | 
| 38555 | 66 | |
| 38864 
4abe644fcea5
formerly unnamed infix equality now named HOL.eq
 haftmann parents: 
38857diff
changeset | 67 | eq :: "['a, 'a] => bool" (infixl "=" 50) | 
| 38708 
8915e3ce8655
discontinued obsolete 'global' and 'local' commands;
 wenzelm parents: 
38669diff
changeset | 68 | |
| 11432 
8a203ae6efe3
added "The" (definite description operator) (by Larry);
 wenzelm parents: 
10489diff
changeset | 69 |   The           :: "('a => bool) => 'a"
 | 
| 7357 | 70 |   All           :: "('a => bool) => bool"           (binder "ALL " 10)
 | 
| 71 |   Ex            :: "('a => bool) => bool"           (binder "EX " 10)
 | |
| 72 |   Ex1           :: "('a => bool) => bool"           (binder "EX! " 10)
 | |
| 923 | 73 | |
| 19656 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19607diff
changeset | 74 | |
| 11750 | 75 | subsubsection {* Additional concrete syntax *}
 | 
| 2260 | 76 | |
| 21210 | 77 | notation (output) | 
| 38864 
4abe644fcea5
formerly unnamed infix equality now named HOL.eq
 haftmann parents: 
38857diff
changeset | 78 | eq (infix "=" 50) | 
| 19656 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19607diff
changeset | 79 | |
| 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19607diff
changeset | 80 | abbreviation | 
| 21404 
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
 wenzelm parents: 
21250diff
changeset | 81 | not_equal :: "['a, 'a] => bool" (infixl "~=" 50) where | 
| 19656 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19607diff
changeset | 82 | "x ~= y == ~ (x = y)" | 
| 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19607diff
changeset | 83 | |
| 21210 | 84 | notation (output) | 
| 19656 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19607diff
changeset | 85 | not_equal (infix "~=" 50) | 
| 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19607diff
changeset | 86 | |
| 21210 | 87 | notation (xsymbols) | 
| 21404 
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
 wenzelm parents: 
21250diff
changeset | 88 |   Not  ("\<not> _" [40] 40) and
 | 
| 38864 
4abe644fcea5
formerly unnamed infix equality now named HOL.eq
 haftmann parents: 
38857diff
changeset | 89 | conj (infixr "\<and>" 35) and | 
| 
4abe644fcea5
formerly unnamed infix equality now named HOL.eq
 haftmann parents: 
38857diff
changeset | 90 | disj (infixr "\<or>" 30) and | 
| 
4abe644fcea5
formerly unnamed infix equality now named HOL.eq
 haftmann parents: 
38857diff
changeset | 91 | implies (infixr "\<longrightarrow>" 25) and | 
| 19656 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19607diff
changeset | 92 | not_equal (infix "\<noteq>" 50) | 
| 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19607diff
changeset | 93 | |
| 21210 | 94 | notation (HTML output) | 
| 21404 
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
 wenzelm parents: 
21250diff
changeset | 95 |   Not  ("\<not> _" [40] 40) and
 | 
| 38864 
4abe644fcea5
formerly unnamed infix equality now named HOL.eq
 haftmann parents: 
38857diff
changeset | 96 | conj (infixr "\<and>" 35) and | 
| 
4abe644fcea5
formerly unnamed infix equality now named HOL.eq
 haftmann parents: 
38857diff
changeset | 97 | disj (infixr "\<or>" 30) and | 
| 19656 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19607diff
changeset | 98 | not_equal (infix "\<noteq>" 50) | 
| 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19607diff
changeset | 99 | |
| 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19607diff
changeset | 100 | abbreviation (iff) | 
| 21404 
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
 wenzelm parents: 
21250diff
changeset | 101 | iff :: "[bool, bool] => bool" (infixr "<->" 25) where | 
| 19656 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19607diff
changeset | 102 | "A <-> B == A = B" | 
| 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19607diff
changeset | 103 | |
| 21210 | 104 | notation (xsymbols) | 
| 19656 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19607diff
changeset | 105 | iff (infixr "\<longleftrightarrow>" 25) | 
| 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19607diff
changeset | 106 | |
| 41229 
d797baa3d57c
replaced command 'nonterminals' by slightly modernized version 'nonterminal';
 wenzelm parents: 
41184diff
changeset | 107 | nonterminal letbinds and letbind | 
| 42057 
3eba96ff3d3e
more selective strip_positions in case patterns -- reactivate translations based on "case _ of _" in HOL and special patterns in HOLCF;
 wenzelm parents: 
41865diff
changeset | 108 | nonterminal case_pat and case_syn and cases_syn | 
| 923 | 109 | |
| 110 | syntax | |
| 11432 
8a203ae6efe3
added "The" (definite description operator) (by Larry);
 wenzelm parents: 
10489diff
changeset | 111 |   "_The"        :: "[pttrn, bool] => 'a"                 ("(3THE _./ _)" [0, 10] 10)
 | 
| 923 | 112 | |
| 7357 | 113 |   "_bind"       :: "[pttrn, 'a] => letbind"              ("(2_ =/ _)" 10)
 | 
| 114 |   ""            :: "letbind => letbinds"                 ("_")
 | |
| 115 |   "_binds"      :: "[letbind, letbinds] => letbinds"     ("_;/ _")
 | |
| 36363 | 116 |   "_Let"        :: "[letbinds, 'a] => 'a"                ("(let (_)/ in (_))" [0, 10] 10)
 | 
| 923 | 117 | |
| 42057 
3eba96ff3d3e
more selective strip_positions in case patterns -- reactivate translations based on "case _ of _" in HOL and special patterns in HOLCF;
 wenzelm parents: 
41865diff
changeset | 118 |   "_case_syntax"      :: "['a, cases_syn] => 'b"              ("(case _ of/ _)" 10)
 | 
| 
3eba96ff3d3e
more selective strip_positions in case patterns -- reactivate translations based on "case _ of _" in HOL and special patterns in HOLCF;
 wenzelm parents: 
41865diff
changeset | 119 |   "_case1"            :: "[case_pat, 'b] => case_syn"         ("(2_ =>/ _)" 10)
 | 
| 
3eba96ff3d3e
more selective strip_positions in case patterns -- reactivate translations based on "case _ of _" in HOL and special patterns in HOLCF;
 wenzelm parents: 
41865diff
changeset | 120 |   ""                  :: "case_syn => cases_syn"              ("_")
 | 
| 
3eba96ff3d3e
more selective strip_positions in case patterns -- reactivate translations based on "case _ of _" in HOL and special patterns in HOLCF;
 wenzelm parents: 
41865diff
changeset | 121 |   "_case2"            :: "[case_syn, cases_syn] => cases_syn" ("_/ | _")
 | 
| 
3eba96ff3d3e
more selective strip_positions in case patterns -- reactivate translations based on "case _ of _" in HOL and special patterns in HOLCF;
 wenzelm parents: 
41865diff
changeset | 122 |   "_strip_positions"  :: "'a => case_pat"                     ("_")
 | 
| 
3eba96ff3d3e
more selective strip_positions in case patterns -- reactivate translations based on "case _ of _" in HOL and special patterns in HOLCF;
 wenzelm parents: 
41865diff
changeset | 123 | |
| 
3eba96ff3d3e
more selective strip_positions in case patterns -- reactivate translations based on "case _ of _" in HOL and special patterns in HOLCF;
 wenzelm parents: 
41865diff
changeset | 124 | syntax (xsymbols) | 
| 
3eba96ff3d3e
more selective strip_positions in case patterns -- reactivate translations based on "case _ of _" in HOL and special patterns in HOLCF;
 wenzelm parents: 
41865diff
changeset | 125 |   "_case1" :: "[case_pat, 'b] => case_syn"  ("(2_ \<Rightarrow>/ _)" 10)
 | 
| 923 | 126 | |
| 127 | translations | |
| 35115 | 128 | "THE x. P" == "CONST The (%x. P)" | 
| 923 | 129 | |
| 13763 
f94b569cd610
added print translations tha avoid eta contraction for important binders.
 nipkow parents: 
13723diff
changeset | 130 | print_translation {*
 | 
| 35115 | 131 |   [(@{const_syntax The}, fn [Abs abs] =>
 | 
| 42284 | 132 | let val (x, t) = Syntax_Trans.atomic_abs_tr' abs | 
| 35115 | 133 |       in Syntax.const @{syntax_const "_The"} $ x $ t end)]
 | 
| 134 | *}  -- {* To avoid eta-contraction of body *}
 | |
| 13763 
f94b569cd610
added print translations tha avoid eta contraction for important binders.
 nipkow parents: 
13723diff
changeset | 135 | |
| 21524 | 136 | notation (xsymbols) | 
| 137 | All (binder "\<forall>" 10) and | |
| 138 | Ex (binder "\<exists>" 10) and | |
| 139 | Ex1 (binder "\<exists>!" 10) | |
| 2372 | 140 | |
| 21524 | 141 | notation (HTML output) | 
| 142 | All (binder "\<forall>" 10) and | |
| 143 | Ex (binder "\<exists>" 10) and | |
| 144 | Ex1 (binder "\<exists>!" 10) | |
| 6340 | 145 | |
| 21524 | 146 | notation (HOL) | 
| 147 | All (binder "! " 10) and | |
| 148 | Ex (binder "? " 10) and | |
| 149 | Ex1 (binder "?! " 10) | |
| 7238 
36e58620ffc8
replaced HOL_quantifiers flag by "HOL" print mode;
 wenzelm parents: 
7220diff
changeset | 150 | |
| 
36e58620ffc8
replaced HOL_quantifiers flag by "HOL" print mode;
 wenzelm parents: 
7220diff
changeset | 151 | |
| 11750 | 152 | subsubsection {* Axioms and basic definitions *}
 | 
| 2260 | 153 | |
| 7357 | 154 | axioms | 
| 15380 | 155 | refl: "t = (t::'a)" | 
| 28513 | 156 | subst: "s = t \<Longrightarrow> P s \<Longrightarrow> P t" | 
| 15380 | 157 | ext: "(!!x::'a. (f x ::'b) = g x) ==> (%x. f x) = (%x. g x)" | 
| 158 |     -- {*Extensionality is built into the meta-logic, and this rule expresses
 | |
| 159 | a related property. It is an eta-expanded version of the traditional | |
| 160 | rule, and similar to the ABS rule of HOL*} | |
| 6289 | 161 | |
| 11432 
8a203ae6efe3
added "The" (definite description operator) (by Larry);
 wenzelm parents: 
10489diff
changeset | 162 | the_eq_trivial: "(THE x. x = a) = (a::'a)" | 
| 923 | 163 | |
| 15380 | 164 | impI: "(P ==> Q) ==> P-->Q" | 
| 165 | mp: "[| P-->Q; P |] ==> Q" | |
| 166 | ||
| 167 | ||
| 923 | 168 | defs | 
| 7357 | 169 | True_def: "True == ((%x::bool. x) = (%x. x))" | 
| 170 | All_def: "All(P) == (P = (%x. True))" | |
| 11451 
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
 paulson parents: 
11438diff
changeset | 171 | Ex_def: "Ex(P) == !Q. (!x. P x --> Q) --> Q" | 
| 7357 | 172 | False_def: "False == (!P. P)" | 
| 173 | not_def: "~ P == P-->False" | |
| 174 | and_def: "P & Q == !R. (P-->Q-->R) --> R" | |
| 175 | or_def: "P | Q == !R. (P-->R) --> (Q-->R) --> R" | |
| 176 | Ex1_def: "Ex1(P) == ? x. P(x) & (! y. P(y) --> y=x)" | |
| 923 | 177 | |
| 7357 | 178 | axioms | 
| 179 | iff: "(P-->Q) --> (Q-->P) --> (P=Q)" | |
| 180 | True_or_False: "(P=True) | (P=False)" | |
| 923 | 181 | |
| 14223 
0ee05eef881b
Added support for making constants final, that is, ensuring that no
 skalberg parents: 
14208diff
changeset | 182 | finalconsts | 
| 38864 
4abe644fcea5
formerly unnamed infix equality now named HOL.eq
 haftmann parents: 
38857diff
changeset | 183 | eq | 
| 
4abe644fcea5
formerly unnamed infix equality now named HOL.eq
 haftmann parents: 
38857diff
changeset | 184 | implies | 
| 14223 
0ee05eef881b
Added support for making constants final, that is, ensuring that no
 skalberg parents: 
14208diff
changeset | 185 | The | 
| 22481 
79c2724c36b5
added class "default" and expansion axioms for undefined
 haftmann parents: 
22473diff
changeset | 186 | |
| 38525 | 187 | definition If :: "bool \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> 'a" ("(if (_)/ then (_)/ else (_))" [0, 0, 10] 10) where
 | 
| 188 | "If P x y \<equiv> (THE z::'a. (P=True --> z=x) & (P=False --> z=y))" | |
| 189 | ||
| 190 | definition Let :: "'a \<Rightarrow> ('a \<Rightarrow> 'b) \<Rightarrow> 'b" where
 | |
| 191 | "Let s f \<equiv> f s" | |
| 192 | ||
| 193 | translations | |
| 194 | "_Let (_binds b bs) e" == "_Let b (_Let bs e)" | |
| 195 | "let x = a in e" == "CONST Let a (%x. e)" | |
| 196 | ||
| 22481 
79c2724c36b5
added class "default" and expansion axioms for undefined
 haftmann parents: 
22473diff
changeset | 197 | axiomatization | 
| 
79c2724c36b5
added class "default" and expansion axioms for undefined
 haftmann parents: 
22473diff
changeset | 198 | undefined :: 'a | 
| 
79c2724c36b5
added class "default" and expansion axioms for undefined
 haftmann parents: 
22473diff
changeset | 199 | |
| 29608 | 200 | class default = | 
| 24901 
d3cbf79769b9
added first version of user-space type system for class target
 haftmann parents: 
24844diff
changeset | 201 | fixes default :: 'a | 
| 4868 | 202 | |
| 11750 | 203 | |
| 20944 | 204 | subsection {* Fundamental rules *}
 | 
| 205 | ||
| 20973 | 206 | subsubsection {* Equality *}
 | 
| 20944 | 207 | |
| 18457 | 208 | lemma sym: "s = t ==> t = s" | 
| 209 | by (erule subst) (rule refl) | |
| 15411 | 210 | |
| 18457 | 211 | lemma ssubst: "t = s ==> P s ==> P t" | 
| 212 | by (drule sym) (erule subst) | |
| 15411 | 213 | |
| 214 | lemma trans: "[| r=s; s=t |] ==> r=t" | |
| 18457 | 215 | by (erule subst) | 
| 15411 | 216 | |
| 40715 
3ba17f07b23c
lemma trans_sym allows single-step "normalization" in Isar, e.g. via moreover/ultimately;
 wenzelm parents: 
40582diff
changeset | 217 | lemma trans_sym [Pure.elim?]: "r = s ==> t = s ==> r = t" | 
| 
3ba17f07b23c
lemma trans_sym allows single-step "normalization" in Isar, e.g. via moreover/ultimately;
 wenzelm parents: 
40582diff
changeset | 218 | by (rule trans [OF _ sym]) | 
| 
3ba17f07b23c
lemma trans_sym allows single-step "normalization" in Isar, e.g. via moreover/ultimately;
 wenzelm parents: 
40582diff
changeset | 219 | |
| 20944 | 220 | lemma meta_eq_to_obj_eq: | 
| 221 | assumes meq: "A == B" | |
| 222 | shows "A = B" | |
| 223 | by (unfold meq) (rule refl) | |
| 15411 | 224 | |
| 21502 | 225 | text {* Useful with @{text erule} for proving equalities from known equalities. *}
 | 
| 20944 | 226 | (* a = b | 
| 15411 | 227 | | | | 
| 228 | c = d *) | |
| 229 | lemma box_equals: "[| a=b; a=c; b=d |] ==> c=d" | |
| 230 | apply (rule trans) | |
| 231 | apply (rule trans) | |
| 232 | apply (rule sym) | |
| 233 | apply assumption+ | |
| 234 | done | |
| 235 | ||
| 15524 
2ef571f80a55
Moved oderings from HOL into the new Orderings.thy
 nipkow parents: 
15481diff
changeset | 236 | text {* For calculational reasoning: *}
 | 
| 
2ef571f80a55
Moved oderings from HOL into the new Orderings.thy
 nipkow parents: 
15481diff
changeset | 237 | |
| 
2ef571f80a55
Moved oderings from HOL into the new Orderings.thy
 nipkow parents: 
15481diff
changeset | 238 | lemma forw_subst: "a = b ==> P b ==> P a" | 
| 
2ef571f80a55
Moved oderings from HOL into the new Orderings.thy
 nipkow parents: 
15481diff
changeset | 239 | by (rule ssubst) | 
| 
2ef571f80a55
Moved oderings from HOL into the new Orderings.thy
 nipkow parents: 
15481diff
changeset | 240 | |
| 
2ef571f80a55
Moved oderings from HOL into the new Orderings.thy
 nipkow parents: 
15481diff
changeset | 241 | lemma back_subst: "P a ==> a = b ==> P b" | 
| 
2ef571f80a55
Moved oderings from HOL into the new Orderings.thy
 nipkow parents: 
15481diff
changeset | 242 | by (rule subst) | 
| 
2ef571f80a55
Moved oderings from HOL into the new Orderings.thy
 nipkow parents: 
15481diff
changeset | 243 | |
| 15411 | 244 | |
| 32733 
71618deaf777
moved generic cong_tac from HOL/Tools/datatype_aux.ML to Tools/cong_tac.ML, proper subgoal selection (failure, not exception);
 wenzelm parents: 
32668diff
changeset | 245 | subsubsection {* Congruence rules for application *}
 | 
| 15411 | 246 | |
| 32733 
71618deaf777
moved generic cong_tac from HOL/Tools/datatype_aux.ML to Tools/cong_tac.ML, proper subgoal selection (failure, not exception);
 wenzelm parents: 
32668diff
changeset | 247 | text {* Similar to @{text AP_THM} in Gordon's HOL. *}
 | 
| 15411 | 248 | lemma fun_cong: "(f::'a=>'b) = g ==> f(x)=g(x)" | 
| 249 | apply (erule subst) | |
| 250 | apply (rule refl) | |
| 251 | done | |
| 252 | ||
| 32733 
71618deaf777
moved generic cong_tac from HOL/Tools/datatype_aux.ML to Tools/cong_tac.ML, proper subgoal selection (failure, not exception);
 wenzelm parents: 
32668diff
changeset | 253 | text {* Similar to @{text AP_TERM} in Gordon's HOL and FOL's @{text subst_context}. *}
 | 
| 15411 | 254 | lemma arg_cong: "x=y ==> f(x)=f(y)" | 
| 255 | apply (erule subst) | |
| 256 | apply (rule refl) | |
| 257 | done | |
| 258 | ||
| 15655 | 259 | lemma arg_cong2: "\<lbrakk> a = b; c = d \<rbrakk> \<Longrightarrow> f a c = f b d" | 
| 260 | apply (erule ssubst)+ | |
| 261 | apply (rule refl) | |
| 262 | done | |
| 263 | ||
| 32733 
71618deaf777
moved generic cong_tac from HOL/Tools/datatype_aux.ML to Tools/cong_tac.ML, proper subgoal selection (failure, not exception);
 wenzelm parents: 
32668diff
changeset | 264 | lemma cong: "[| f = g; (x::'a) = y |] ==> f x = g y" | 
| 15411 | 265 | apply (erule subst)+ | 
| 266 | apply (rule refl) | |
| 267 | done | |
| 268 | ||
| 32733 
71618deaf777
moved generic cong_tac from HOL/Tools/datatype_aux.ML to Tools/cong_tac.ML, proper subgoal selection (failure, not exception);
 wenzelm parents: 
32668diff
changeset | 269 | ML {* val cong_tac = Cong_Tac.cong_tac @{thm cong} *}
 | 
| 15411 | 270 | |
| 32733 
71618deaf777
moved generic cong_tac from HOL/Tools/datatype_aux.ML to Tools/cong_tac.ML, proper subgoal selection (failure, not exception);
 wenzelm parents: 
32668diff
changeset | 271 | |
| 
71618deaf777
moved generic cong_tac from HOL/Tools/datatype_aux.ML to Tools/cong_tac.ML, proper subgoal selection (failure, not exception);
 wenzelm parents: 
32668diff
changeset | 272 | subsubsection {* Equality of booleans -- iff *}
 | 
| 15411 | 273 | |
| 21504 | 274 | lemma iffI: assumes "P ==> Q" and "Q ==> P" shows "P=Q" | 
| 275 | by (iprover intro: iff [THEN mp, THEN mp] impI assms) | |
| 15411 | 276 | |
| 277 | lemma iffD2: "[| P=Q; Q |] ==> P" | |
| 18457 | 278 | by (erule ssubst) | 
| 15411 | 279 | |
| 280 | lemma rev_iffD2: "[| Q; P=Q |] ==> P" | |
| 18457 | 281 | by (erule iffD2) | 
| 15411 | 282 | |
| 21504 | 283 | lemma iffD1: "Q = P \<Longrightarrow> Q \<Longrightarrow> P" | 
| 284 | by (drule sym) (rule iffD2) | |
| 285 | ||
| 286 | lemma rev_iffD1: "Q \<Longrightarrow> Q = P \<Longrightarrow> P" | |
| 287 | by (drule sym) (rule rev_iffD2) | |
| 15411 | 288 | |
| 289 | lemma iffE: | |
| 290 | assumes major: "P=Q" | |
| 21504 | 291 | and minor: "[| P --> Q; Q --> P |] ==> R" | 
| 18457 | 292 | shows R | 
| 293 | by (iprover intro: minor impI major [THEN iffD2] major [THEN iffD1]) | |
| 15411 | 294 | |
| 295 | ||
| 20944 | 296 | subsubsection {*True*}
 | 
| 15411 | 297 | |
| 298 | lemma TrueI: "True" | |
| 21504 | 299 | unfolding True_def by (rule refl) | 
| 15411 | 300 | |
| 21504 | 301 | lemma eqTrueI: "P ==> P = True" | 
| 18457 | 302 | by (iprover intro: iffI TrueI) | 
| 15411 | 303 | |
| 21504 | 304 | lemma eqTrueE: "P = True ==> P" | 
| 305 | by (erule iffD2) (rule TrueI) | |
| 15411 | 306 | |
| 307 | ||
| 20944 | 308 | subsubsection {*Universal quantifier*}
 | 
| 15411 | 309 | |
| 21504 | 310 | lemma allI: assumes "!!x::'a. P(x)" shows "ALL x. P(x)" | 
| 311 | unfolding All_def by (iprover intro: ext eqTrueI assms) | |
| 15411 | 312 | |
| 313 | lemma spec: "ALL x::'a. P(x) ==> P(x)" | |
| 314 | apply (unfold All_def) | |
| 315 | apply (rule eqTrueE) | |
| 316 | apply (erule fun_cong) | |
| 317 | done | |
| 318 | ||
| 319 | lemma allE: | |
| 320 | assumes major: "ALL x. P(x)" | |
| 21504 | 321 | and minor: "P(x) ==> R" | 
| 322 | shows R | |
| 323 | by (iprover intro: minor major [THEN spec]) | |
| 15411 | 324 | |
| 325 | lemma all_dupE: | |
| 326 | assumes major: "ALL x. P(x)" | |
| 21504 | 327 | and minor: "[| P(x); ALL x. P(x) |] ==> R" | 
| 328 | shows R | |
| 329 | by (iprover intro: minor major major [THEN spec]) | |
| 15411 | 330 | |
| 331 | ||
| 21504 | 332 | subsubsection {* False *}
 | 
| 333 | ||
| 334 | text {*
 | |
| 335 |   Depends upon @{text spec}; it is impossible to do propositional
 | |
| 336 | logic before quantifiers! | |
| 337 | *} | |
| 15411 | 338 | |
| 339 | lemma FalseE: "False ==> P" | |
| 21504 | 340 | apply (unfold False_def) | 
| 341 | apply (erule spec) | |
| 342 | done | |
| 15411 | 343 | |
| 21504 | 344 | lemma False_neq_True: "False = True ==> P" | 
| 345 | by (erule eqTrueE [THEN FalseE]) | |
| 15411 | 346 | |
| 347 | ||
| 21504 | 348 | subsubsection {* Negation *}
 | 
| 15411 | 349 | |
| 350 | lemma notI: | |
| 21504 | 351 | assumes "P ==> False" | 
| 15411 | 352 | shows "~P" | 
| 21504 | 353 | apply (unfold not_def) | 
| 354 | apply (iprover intro: impI assms) | |
| 355 | done | |
| 15411 | 356 | |
| 357 | lemma False_not_True: "False ~= True" | |
| 21504 | 358 | apply (rule notI) | 
| 359 | apply (erule False_neq_True) | |
| 360 | done | |
| 15411 | 361 | |
| 362 | lemma True_not_False: "True ~= False" | |
| 21504 | 363 | apply (rule notI) | 
| 364 | apply (drule sym) | |
| 365 | apply (erule False_neq_True) | |
| 366 | done | |
| 15411 | 367 | |
| 368 | lemma notE: "[| ~P; P |] ==> R" | |
| 21504 | 369 | apply (unfold not_def) | 
| 370 | apply (erule mp [THEN FalseE]) | |
| 371 | apply assumption | |
| 372 | done | |
| 15411 | 373 | |
| 21504 | 374 | lemma notI2: "(P \<Longrightarrow> \<not> Pa) \<Longrightarrow> (P \<Longrightarrow> Pa) \<Longrightarrow> \<not> P" | 
| 375 | by (erule notE [THEN notI]) (erule meta_mp) | |
| 15411 | 376 | |
| 377 | ||
| 20944 | 378 | subsubsection {*Implication*}
 | 
| 15411 | 379 | |
| 380 | lemma impE: | |
| 381 | assumes "P-->Q" "P" "Q ==> R" | |
| 382 | shows "R" | |
| 23553 | 383 | by (iprover intro: assms mp) | 
| 15411 | 384 | |
| 385 | (* Reduces Q to P-->Q, allowing substitution in P. *) | |
| 386 | lemma rev_mp: "[| P; P --> Q |] ==> Q" | |
| 17589 | 387 | by (iprover intro: mp) | 
| 15411 | 388 | |
| 389 | lemma contrapos_nn: | |
| 390 | assumes major: "~Q" | |
| 391 | and minor: "P==>Q" | |
| 392 | shows "~P" | |
| 17589 | 393 | by (iprover intro: notI minor major [THEN notE]) | 
| 15411 | 394 | |
| 395 | (*not used at all, but we already have the other 3 combinations *) | |
| 396 | lemma contrapos_pn: | |
| 397 | assumes major: "Q" | |
| 398 | and minor: "P ==> ~Q" | |
| 399 | shows "~P" | |
| 17589 | 400 | by (iprover intro: notI minor major notE) | 
| 15411 | 401 | |
| 402 | lemma not_sym: "t ~= s ==> s ~= t" | |
| 21250 | 403 | by (erule contrapos_nn) (erule sym) | 
| 404 | ||
| 405 | lemma eq_neq_eq_imp_neq: "[| x = a ; a ~= b; b = y |] ==> x ~= y" | |
| 406 | by (erule subst, erule ssubst, assumption) | |
| 15411 | 407 | |
| 408 | (*still used in HOLCF*) | |
| 409 | lemma rev_contrapos: | |
| 410 | assumes pq: "P ==> Q" | |
| 411 | and nq: "~Q" | |
| 412 | shows "~P" | |
| 413 | apply (rule nq [THEN contrapos_nn]) | |
| 414 | apply (erule pq) | |
| 415 | done | |
| 416 | ||
| 20944 | 417 | subsubsection {*Existential quantifier*}
 | 
| 15411 | 418 | |
| 419 | lemma exI: "P x ==> EX x::'a. P x" | |
| 420 | apply (unfold Ex_def) | |
| 17589 | 421 | apply (iprover intro: allI allE impI mp) | 
| 15411 | 422 | done | 
| 423 | ||
| 424 | lemma exE: | |
| 425 | assumes major: "EX x::'a. P(x)" | |
| 426 | and minor: "!!x. P(x) ==> Q" | |
| 427 | shows "Q" | |
| 428 | apply (rule major [unfolded Ex_def, THEN spec, THEN mp]) | |
| 17589 | 429 | apply (iprover intro: impI [THEN allI] minor) | 
| 15411 | 430 | done | 
| 431 | ||
| 432 | ||
| 20944 | 433 | subsubsection {*Conjunction*}
 | 
| 15411 | 434 | |
| 435 | lemma conjI: "[| P; Q |] ==> P&Q" | |
| 436 | apply (unfold and_def) | |
| 17589 | 437 | apply (iprover intro: impI [THEN allI] mp) | 
| 15411 | 438 | done | 
| 439 | ||
| 440 | lemma conjunct1: "[| P & Q |] ==> P" | |
| 441 | apply (unfold and_def) | |
| 17589 | 442 | apply (iprover intro: impI dest: spec mp) | 
| 15411 | 443 | done | 
| 444 | ||
| 445 | lemma conjunct2: "[| P & Q |] ==> Q" | |
| 446 | apply (unfold and_def) | |
| 17589 | 447 | apply (iprover intro: impI dest: spec mp) | 
| 15411 | 448 | done | 
| 449 | ||
| 450 | lemma conjE: | |
| 451 | assumes major: "P&Q" | |
| 452 | and minor: "[| P; Q |] ==> R" | |
| 453 | shows "R" | |
| 454 | apply (rule minor) | |
| 455 | apply (rule major [THEN conjunct1]) | |
| 456 | apply (rule major [THEN conjunct2]) | |
| 457 | done | |
| 458 | ||
| 459 | lemma context_conjI: | |
| 23553 | 460 | assumes "P" "P ==> Q" shows "P & Q" | 
| 461 | by (iprover intro: conjI assms) | |
| 15411 | 462 | |
| 463 | ||
| 20944 | 464 | subsubsection {*Disjunction*}
 | 
| 15411 | 465 | |
| 466 | lemma disjI1: "P ==> P|Q" | |
| 467 | apply (unfold or_def) | |
| 17589 | 468 | apply (iprover intro: allI impI mp) | 
| 15411 | 469 | done | 
| 470 | ||
| 471 | lemma disjI2: "Q ==> P|Q" | |
| 472 | apply (unfold or_def) | |
| 17589 | 473 | apply (iprover intro: allI impI mp) | 
| 15411 | 474 | done | 
| 475 | ||
| 476 | lemma disjE: | |
| 477 | assumes major: "P|Q" | |
| 478 | and minorP: "P ==> R" | |
| 479 | and minorQ: "Q ==> R" | |
| 480 | shows "R" | |
| 17589 | 481 | by (iprover intro: minorP minorQ impI | 
| 15411 | 482 | major [unfolded or_def, THEN spec, THEN mp, THEN mp]) | 
| 483 | ||
| 484 | ||
| 20944 | 485 | subsubsection {*Classical logic*}
 | 
| 15411 | 486 | |
| 487 | lemma classical: | |
| 488 | assumes prem: "~P ==> P" | |
| 489 | shows "P" | |
| 490 | apply (rule True_or_False [THEN disjE, THEN eqTrueE]) | |
| 491 | apply assumption | |
| 492 | apply (rule notI [THEN prem, THEN eqTrueI]) | |
| 493 | apply (erule subst) | |
| 494 | apply assumption | |
| 495 | done | |
| 496 | ||
| 45607 | 497 | lemmas ccontr = FalseE [THEN classical] | 
| 15411 | 498 | |
| 499 | (*notE with premises exchanged; it discharges ~R so that it can be used to | |
| 500 | make elimination rules*) | |
| 501 | lemma rev_notE: | |
| 502 | assumes premp: "P" | |
| 503 | and premnot: "~R ==> ~P" | |
| 504 | shows "R" | |
| 505 | apply (rule ccontr) | |
| 506 | apply (erule notE [OF premnot premp]) | |
| 507 | done | |
| 508 | ||
| 509 | (*Double negation law*) | |
| 510 | lemma notnotD: "~~P ==> P" | |
| 511 | apply (rule classical) | |
| 512 | apply (erule notE) | |
| 513 | apply assumption | |
| 514 | done | |
| 515 | ||
| 516 | lemma contrapos_pp: | |
| 517 | assumes p1: "Q" | |
| 518 | and p2: "~P ==> ~Q" | |
| 519 | shows "P" | |
| 17589 | 520 | by (iprover intro: classical p1 p2 notE) | 
| 15411 | 521 | |
| 522 | ||
| 20944 | 523 | subsubsection {*Unique existence*}
 | 
| 15411 | 524 | |
| 525 | lemma ex1I: | |
| 23553 | 526 | assumes "P a" "!!x. P(x) ==> x=a" | 
| 15411 | 527 | shows "EX! x. P(x)" | 
| 23553 | 528 | by (unfold Ex1_def, iprover intro: assms exI conjI allI impI) | 
| 15411 | 529 | |
| 530 | text{*Sometimes easier to use: the premises have no shared variables.  Safe!*}
 | |
| 531 | lemma ex_ex1I: | |
| 532 | assumes ex_prem: "EX x. P(x)" | |
| 533 | and eq: "!!x y. [| P(x); P(y) |] ==> x=y" | |
| 534 | shows "EX! x. P(x)" | |
| 17589 | 535 | by (iprover intro: ex_prem [THEN exE] ex1I eq) | 
| 15411 | 536 | |
| 537 | lemma ex1E: | |
| 538 | assumes major: "EX! x. P(x)" | |
| 539 | and minor: "!!x. [| P(x); ALL y. P(y) --> y=x |] ==> R" | |
| 540 | shows "R" | |
| 541 | apply (rule major [unfolded Ex1_def, THEN exE]) | |
| 542 | apply (erule conjE) | |
| 17589 | 543 | apply (iprover intro: minor) | 
| 15411 | 544 | done | 
| 545 | ||
| 546 | lemma ex1_implies_ex: "EX! x. P x ==> EX x. P x" | |
| 547 | apply (erule ex1E) | |
| 548 | apply (rule exI) | |
| 549 | apply assumption | |
| 550 | done | |
| 551 | ||
| 552 | ||
| 20944 | 553 | subsubsection {*THE: definite description operator*}
 | 
| 15411 | 554 | |
| 555 | lemma the_equality: | |
| 556 | assumes prema: "P a" | |
| 557 | and premx: "!!x. P x ==> x=a" | |
| 558 | shows "(THE x. P x) = a" | |
| 559 | apply (rule trans [OF _ the_eq_trivial]) | |
| 560 | apply (rule_tac f = "The" in arg_cong) | |
| 561 | apply (rule ext) | |
| 562 | apply (rule iffI) | |
| 563 | apply (erule premx) | |
| 564 | apply (erule ssubst, rule prema) | |
| 565 | done | |
| 566 | ||
| 567 | lemma theI: | |
| 568 | assumes "P a" and "!!x. P x ==> x=a" | |
| 569 | shows "P (THE x. P x)" | |
| 23553 | 570 | by (iprover intro: assms the_equality [THEN ssubst]) | 
| 15411 | 571 | |
| 572 | lemma theI': "EX! x. P x ==> P (THE x. P x)" | |
| 573 | apply (erule ex1E) | |
| 574 | apply (erule theI) | |
| 575 | apply (erule allE) | |
| 576 | apply (erule mp) | |
| 577 | apply assumption | |
| 578 | done | |
| 579 | ||
| 580 | (*Easier to apply than theI: only one occurrence of P*) | |
| 581 | lemma theI2: | |
| 582 | assumes "P a" "!!x. P x ==> x=a" "!!x. P x ==> Q x" | |
| 583 | shows "Q (THE x. P x)" | |
| 23553 | 584 | by (iprover intro: assms theI) | 
| 15411 | 585 | |
| 24553 | 586 | lemma the1I2: assumes "EX! x. P x" "\<And>x. P x \<Longrightarrow> Q x" shows "Q (THE x. P x)" | 
| 587 | by(iprover intro:assms(2) theI2[where P=P and Q=Q] ex1E[OF assms(1)] | |
| 588 | elim:allE impE) | |
| 589 | ||
| 18697 | 590 | lemma the1_equality [elim?]: "[| EX!x. P x; P a |] ==> (THE x. P x) = a" | 
| 15411 | 591 | apply (rule the_equality) | 
| 592 | apply assumption | |
| 593 | apply (erule ex1E) | |
| 594 | apply (erule all_dupE) | |
| 595 | apply (drule mp) | |
| 596 | apply assumption | |
| 597 | apply (erule ssubst) | |
| 598 | apply (erule allE) | |
| 599 | apply (erule mp) | |
| 600 | apply assumption | |
| 601 | done | |
| 602 | ||
| 603 | lemma the_sym_eq_trivial: "(THE y. x=y) = x" | |
| 604 | apply (rule the_equality) | |
| 605 | apply (rule refl) | |
| 606 | apply (erule sym) | |
| 607 | done | |
| 608 | ||
| 609 | ||
| 20944 | 610 | subsubsection {*Classical intro rules for disjunction and existential quantifiers*}
 | 
| 15411 | 611 | |
| 612 | lemma disjCI: | |
| 613 | assumes "~Q ==> P" shows "P|Q" | |
| 614 | apply (rule classical) | |
| 23553 | 615 | apply (iprover intro: assms disjI1 disjI2 notI elim: notE) | 
| 15411 | 616 | done | 
| 617 | ||
| 618 | lemma excluded_middle: "~P | P" | |
| 17589 | 619 | by (iprover intro: disjCI) | 
| 15411 | 620 | |
| 20944 | 621 | text {*
 | 
| 622 | case distinction as a natural deduction rule. | |
| 623 |   Note that @{term "~P"} is the second case, not the first
 | |
| 624 | *} | |
| 27126 
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
 wenzelm parents: 
27107diff
changeset | 625 | lemma case_split [case_names True False]: | 
| 15411 | 626 | assumes prem1: "P ==> Q" | 
| 627 | and prem2: "~P ==> Q" | |
| 628 | shows "Q" | |
| 629 | apply (rule excluded_middle [THEN disjE]) | |
| 630 | apply (erule prem2) | |
| 631 | apply (erule prem1) | |
| 632 | done | |
| 27126 
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
 wenzelm parents: 
27107diff
changeset | 633 | |
| 15411 | 634 | (*Classical implies (-->) elimination. *) | 
| 635 | lemma impCE: | |
| 636 | assumes major: "P-->Q" | |
| 637 | and minor: "~P ==> R" "Q ==> R" | |
| 638 | shows "R" | |
| 639 | apply (rule excluded_middle [of P, THEN disjE]) | |
| 17589 | 640 | apply (iprover intro: minor major [THEN mp])+ | 
| 15411 | 641 | done | 
| 642 | ||
| 643 | (*This version of --> elimination works on Q before P. It works best for | |
| 644 | those cases in which P holds "almost everywhere". Can't install as | |
| 645 | default: would break old proofs.*) | |
| 646 | lemma impCE': | |
| 647 | assumes major: "P-->Q" | |
| 648 | and minor: "Q ==> R" "~P ==> R" | |
| 649 | shows "R" | |
| 650 | apply (rule excluded_middle [of P, THEN disjE]) | |
| 17589 | 651 | apply (iprover intro: minor major [THEN mp])+ | 
| 15411 | 652 | done | 
| 653 | ||
| 654 | (*Classical <-> elimination. *) | |
| 655 | lemma iffCE: | |
| 656 | assumes major: "P=Q" | |
| 657 | and minor: "[| P; Q |] ==> R" "[| ~P; ~Q |] ==> R" | |
| 658 | shows "R" | |
| 659 | apply (rule major [THEN iffE]) | |
| 17589 | 660 | apply (iprover intro: minor elim: impCE notE) | 
| 15411 | 661 | done | 
| 662 | ||
| 663 | lemma exCI: | |
| 664 | assumes "ALL x. ~P(x) ==> P(a)" | |
| 665 | shows "EX x. P(x)" | |
| 666 | apply (rule ccontr) | |
| 23553 | 667 | apply (iprover intro: assms exI allI notI notE [of "\<exists>x. P x"]) | 
| 15411 | 668 | done | 
| 669 | ||
| 670 | ||
| 12386 | 671 | subsubsection {* Intuitionistic Reasoning *}
 | 
| 672 | ||
| 673 | lemma impE': | |
| 12937 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 wenzelm parents: 
12892diff
changeset | 674 | assumes 1: "P --> Q" | 
| 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 wenzelm parents: 
12892diff
changeset | 675 | and 2: "Q ==> R" | 
| 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 wenzelm parents: 
12892diff
changeset | 676 | and 3: "P --> Q ==> P" | 
| 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 wenzelm parents: 
12892diff
changeset | 677 | shows R | 
| 12386 | 678 | proof - | 
| 679 | from 3 and 1 have P . | |
| 680 | with 1 have Q by (rule impE) | |
| 681 | with 2 show R . | |
| 682 | qed | |
| 683 | ||
| 684 | lemma allE': | |
| 12937 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 wenzelm parents: 
12892diff
changeset | 685 | assumes 1: "ALL x. P x" | 
| 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 wenzelm parents: 
12892diff
changeset | 686 | and 2: "P x ==> ALL x. P x ==> Q" | 
| 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 wenzelm parents: 
12892diff
changeset | 687 | shows Q | 
| 12386 | 688 | proof - | 
| 689 | from 1 have "P x" by (rule spec) | |
| 690 | from this and 1 show Q by (rule 2) | |
| 691 | qed | |
| 692 | ||
| 12937 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 wenzelm parents: 
12892diff
changeset | 693 | lemma notE': | 
| 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 wenzelm parents: 
12892diff
changeset | 694 | assumes 1: "~ P" | 
| 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 wenzelm parents: 
12892diff
changeset | 695 | and 2: "~ P ==> P" | 
| 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 wenzelm parents: 
12892diff
changeset | 696 | shows R | 
| 12386 | 697 | proof - | 
| 698 | from 2 and 1 have P . | |
| 699 | with 1 show R by (rule notE) | |
| 700 | qed | |
| 701 | ||
| 22444 
fb80fedd192d
added safe intro rules for removing "True" subgoals as well as "~ False" ones.
 dixon parents: 
22377diff
changeset | 702 | lemma TrueE: "True ==> P ==> P" . | 
| 
fb80fedd192d
added safe intro rules for removing "True" subgoals as well as "~ False" ones.
 dixon parents: 
22377diff
changeset | 703 | lemma notFalseE: "~ False ==> P ==> P" . | 
| 
fb80fedd192d
added safe intro rules for removing "True" subgoals as well as "~ False" ones.
 dixon parents: 
22377diff
changeset | 704 | |
| 22467 
c9357ef01168
TrueElim and notTrueElim tested and added as safe elim rules.
 dixon parents: 
22445diff
changeset | 705 | lemmas [Pure.elim!] = disjE iffE FalseE conjE exE TrueE notFalseE | 
| 15801 | 706 | and [Pure.intro!] = iffI conjI impI TrueI notI allI refl | 
| 707 | and [Pure.elim 2] = allE notE' impE' | |
| 708 | and [Pure.intro] = exI disjI2 disjI1 | |
| 12386 | 709 | |
| 710 | lemmas [trans] = trans | |
| 711 | and [sym] = sym not_sym | |
| 15801 | 712 | and [Pure.elim?] = iffD1 iffD2 impE | 
| 11750 | 713 | |
| 28952 
15a4b2cf8c34
made repository layout more coherent with logical distribution structure; stripped some $Id$s
 haftmann parents: 
28856diff
changeset | 714 | use "Tools/hologic.ML" | 
| 23553 | 715 | |
| 11438 
3d9222b80989
declare trans [trans]  (*overridden in theory Calculation*);
 wenzelm parents: 
11432diff
changeset | 716 | |
| 11750 | 717 | subsubsection {* Atomizing meta-level connectives *}
 | 
| 718 | ||
| 28513 | 719 | axiomatization where | 
| 720 | eq_reflection: "x = y \<Longrightarrow> x \<equiv> y" (*admissible axiom*) | |
| 721 | ||
| 11750 | 722 | lemma atomize_all [atomize]: "(!!x. P x) == Trueprop (ALL x. P x)" | 
| 12003 | 723 | proof | 
| 9488 | 724 | assume "!!x. P x" | 
| 23389 | 725 | then show "ALL x. P x" .. | 
| 9488 | 726 | next | 
| 727 | assume "ALL x. P x" | |
| 23553 | 728 | then show "!!x. P x" by (rule allE) | 
| 9488 | 729 | qed | 
| 730 | ||
| 11750 | 731 | lemma atomize_imp [atomize]: "(A ==> B) == Trueprop (A --> B)" | 
| 12003 | 732 | proof | 
| 9488 | 733 | assume r: "A ==> B" | 
| 10383 | 734 | show "A --> B" by (rule impI) (rule r) | 
| 9488 | 735 | next | 
| 736 | assume "A --> B" and A | |
| 23553 | 737 | then show B by (rule mp) | 
| 9488 | 738 | qed | 
| 739 | ||
| 14749 | 740 | lemma atomize_not: "(A ==> False) == Trueprop (~A)" | 
| 741 | proof | |
| 742 | assume r: "A ==> False" | |
| 743 | show "~A" by (rule notI) (rule r) | |
| 744 | next | |
| 745 | assume "~A" and A | |
| 23553 | 746 | then show False by (rule notE) | 
| 14749 | 747 | qed | 
| 748 | ||
| 39566 | 749 | lemma atomize_eq [atomize, code]: "(x == y) == Trueprop (x = y)" | 
| 12003 | 750 | proof | 
| 10432 
3dfbc913d184
added axclass inverse and consts inverse, divide (infix "/");
 wenzelm parents: 
10383diff
changeset | 751 | assume "x == y" | 
| 23553 | 752 | show "x = y" by (unfold `x == y`) (rule refl) | 
| 10432 
3dfbc913d184
added axclass inverse and consts inverse, divide (infix "/");
 wenzelm parents: 
10383diff
changeset | 753 | next | 
| 
3dfbc913d184
added axclass inverse and consts inverse, divide (infix "/");
 wenzelm parents: 
10383diff
changeset | 754 | assume "x = y" | 
| 23553 | 755 | then show "x == y" by (rule eq_reflection) | 
| 10432 
3dfbc913d184
added axclass inverse and consts inverse, divide (infix "/");
 wenzelm parents: 
10383diff
changeset | 756 | qed | 
| 
3dfbc913d184
added axclass inverse and consts inverse, divide (infix "/");
 wenzelm parents: 
10383diff
changeset | 757 | |
| 28856 
5e009a80fe6d
Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
 wenzelm parents: 
28741diff
changeset | 758 | lemma atomize_conj [atomize]: "(A &&& B) == Trueprop (A & B)" | 
| 12003 | 759 | proof | 
| 28856 
5e009a80fe6d
Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
 wenzelm parents: 
28741diff
changeset | 760 | assume conj: "A &&& B" | 
| 19121 | 761 | show "A & B" | 
| 762 | proof (rule conjI) | |
| 763 | from conj show A by (rule conjunctionD1) | |
| 764 | from conj show B by (rule conjunctionD2) | |
| 765 | qed | |
| 11953 | 766 | next | 
| 19121 | 767 | assume conj: "A & B" | 
| 28856 
5e009a80fe6d
Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
 wenzelm parents: 
28741diff
changeset | 768 | show "A &&& B" | 
| 19121 | 769 | proof - | 
| 770 | from conj show A .. | |
| 771 | from conj show B .. | |
| 11953 | 772 | qed | 
| 773 | qed | |
| 774 | ||
| 12386 | 775 | lemmas [symmetric, rulify] = atomize_all atomize_imp | 
| 18832 | 776 | and [symmetric, defn] = atomize_all atomize_imp atomize_eq | 
| 12386 | 777 | |
| 11750 | 778 | |
| 26580 
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
 krauss parents: 
26555diff
changeset | 779 | subsubsection {* Atomizing elimination rules *}
 | 
| 
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
 krauss parents: 
26555diff
changeset | 780 | |
| 
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
 krauss parents: 
26555diff
changeset | 781 | setup AtomizeElim.setup | 
| 
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
 krauss parents: 
26555diff
changeset | 782 | |
| 
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
 krauss parents: 
26555diff
changeset | 783 | lemma atomize_exL[atomize_elim]: "(!!x. P x ==> Q) == ((EX x. P x) ==> Q)" | 
| 
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
 krauss parents: 
26555diff
changeset | 784 | by rule iprover+ | 
| 
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
 krauss parents: 
26555diff
changeset | 785 | |
| 
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
 krauss parents: 
26555diff
changeset | 786 | lemma atomize_conjL[atomize_elim]: "(A ==> B ==> C) == (A & B ==> C)" | 
| 
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
 krauss parents: 
26555diff
changeset | 787 | by rule iprover+ | 
| 
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
 krauss parents: 
26555diff
changeset | 788 | |
| 
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
 krauss parents: 
26555diff
changeset | 789 | lemma atomize_disjL[atomize_elim]: "((A ==> C) ==> (B ==> C) ==> C) == ((A | B ==> C) ==> C)" | 
| 
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
 krauss parents: 
26555diff
changeset | 790 | by rule iprover+ | 
| 
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
 krauss parents: 
26555diff
changeset | 791 | |
| 
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
 krauss parents: 
26555diff
changeset | 792 | lemma atomize_elimL[atomize_elim]: "(!!B. (A ==> B) ==> B) == Trueprop A" .. | 
| 
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
 krauss parents: 
26555diff
changeset | 793 | |
| 
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
 krauss parents: 
26555diff
changeset | 794 | |
| 20944 | 795 | subsection {* Package setup *}
 | 
| 796 | ||
| 35828 
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
 blanchet parents: 
35808diff
changeset | 797 | subsubsection {* Sledgehammer setup *}
 | 
| 
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
 blanchet parents: 
35808diff
changeset | 798 | |
| 
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
 blanchet parents: 
35808diff
changeset | 799 | text {*
 | 
| 
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
 blanchet parents: 
35808diff
changeset | 800 | Theorems blacklisted to Sledgehammer. These theorems typically produce clauses | 
| 
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
 blanchet parents: 
35808diff
changeset | 801 | that are prolific (match too many equality or membership literals) and relate to | 
| 
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
 blanchet parents: 
35808diff
changeset | 802 | seldom-used facts. Some duplicate other rules. | 
| 
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
 blanchet parents: 
35808diff
changeset | 803 | *} | 
| 
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
 blanchet parents: 
35808diff
changeset | 804 | |
| 
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
 blanchet parents: 
35808diff
changeset | 805 | ML {*
 | 
| 36297 
6b2b9516a3cd
removed obsolete Named_Thm_Set -- Named_Thms provides efficient member operation;
 wenzelm parents: 
36246diff
changeset | 806 | structure No_ATPs = Named_Thms | 
| 35828 
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
 blanchet parents: 
35808diff
changeset | 807 | ( | 
| 45294 | 808 |   val name = @{binding no_atp}
 | 
| 36060 
4d27652ffb40
reintroduce efficient set structure to collect "no_atp" theorems
 blanchet parents: 
35828diff
changeset | 809 | val description = "theorems that should be filtered out by Sledgehammer" | 
| 35828 
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
 blanchet parents: 
35808diff
changeset | 810 | ) | 
| 
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
 blanchet parents: 
35808diff
changeset | 811 | *} | 
| 
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
 blanchet parents: 
35808diff
changeset | 812 | |
| 
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
 blanchet parents: 
35808diff
changeset | 813 | setup {* No_ATPs.setup *}
 | 
| 
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
 blanchet parents: 
35808diff
changeset | 814 | |
| 
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
 blanchet parents: 
35808diff
changeset | 815 | |
| 11750 | 816 | subsubsection {* Classical Reasoner setup *}
 | 
| 9529 | 817 | |
| 26411 | 818 | lemma imp_elim: "P --> Q ==> (~ R ==> P) ==> (Q ==> R) ==> R" | 
| 819 | by (rule classical) iprover | |
| 820 | ||
| 821 | lemma swap: "~ P ==> (~ R ==> P) ==> R" | |
| 822 | by (rule classical) iprover | |
| 823 | ||
| 20944 | 824 | lemma thin_refl: | 
| 825 | "\<And>X. \<lbrakk> x=x; PROP W \<rbrakk> \<Longrightarrow> PROP W" . | |
| 826 | ||
| 21151 | 827 | ML {*
 | 
| 42799 | 828 | structure Hypsubst = Hypsubst | 
| 829 | ( | |
| 21218 | 830 | val dest_eq = HOLogic.dest_eq | 
| 21151 | 831 | val dest_Trueprop = HOLogic.dest_Trueprop | 
| 832 | val dest_imp = HOLogic.dest_imp | |
| 26411 | 833 |   val eq_reflection = @{thm eq_reflection}
 | 
| 834 |   val rev_eq_reflection = @{thm meta_eq_to_obj_eq}
 | |
| 835 |   val imp_intr = @{thm impI}
 | |
| 836 |   val rev_mp = @{thm rev_mp}
 | |
| 837 |   val subst = @{thm subst}
 | |
| 838 |   val sym = @{thm sym}
 | |
| 22129 | 839 |   val thin_refl = @{thm thin_refl};
 | 
| 42799 | 840 | ); | 
| 21671 | 841 | open Hypsubst; | 
| 21151 | 842 | |
| 42799 | 843 | structure Classical = Classical | 
| 844 | ( | |
| 26411 | 845 |   val imp_elim = @{thm imp_elim}
 | 
| 846 |   val not_elim = @{thm notE}
 | |
| 847 |   val swap = @{thm swap}
 | |
| 848 |   val classical = @{thm classical}
 | |
| 21151 | 849 | val sizef = Drule.size_of_thm | 
| 850 | val hyp_subst_tacs = [Hypsubst.hyp_subst_tac] | |
| 42799 | 851 | ); | 
| 21151 | 852 | |
| 33308 
cf62d1690d04
separate ResBlacklist, based on scalable persistent data -- avoids inefficient hashing later on;
 wenzelm parents: 
33185diff
changeset | 853 | structure Basic_Classical: BASIC_CLASSICAL = Classical; | 
| 
cf62d1690d04
separate ResBlacklist, based on scalable persistent data -- avoids inefficient hashing later on;
 wenzelm parents: 
33185diff
changeset | 854 | open Basic_Classical; | 
| 43560 
d1650e3720fd
ML antiquotations are managed as theory data, with proper name space and entity markup;
 wenzelm parents: 
42802diff
changeset | 855 | *} | 
| 22129 | 856 | |
| 43560 
d1650e3720fd
ML antiquotations are managed as theory data, with proper name space and entity markup;
 wenzelm parents: 
42802diff
changeset | 857 | setup {*
 | 
| 
d1650e3720fd
ML antiquotations are managed as theory data, with proper name space and entity markup;
 wenzelm parents: 
42802diff
changeset | 858 |   ML_Antiquote.value @{binding claset}
 | 
| 
d1650e3720fd
ML antiquotations are managed as theory data, with proper name space and entity markup;
 wenzelm parents: 
42802diff
changeset | 859 | (Scan.succeed "Classical.claset_of (ML_Context.the_local_context ())") | 
| 21151 | 860 | *} | 
| 861 | ||
| 33308 
cf62d1690d04
separate ResBlacklist, based on scalable persistent data -- avoids inefficient hashing later on;
 wenzelm parents: 
33185diff
changeset | 862 | setup Classical.setup | 
| 24286 
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
 paulson parents: 
24280diff
changeset | 863 | |
| 21009 | 864 | setup {*
 | 
| 865 | let | |
| 38864 
4abe644fcea5
formerly unnamed infix equality now named HOL.eq
 haftmann parents: 
38857diff
changeset | 866 |   fun non_bool_eq (@{const_name HOL.eq}, Type (_, [T, _])) = T <> @{typ bool}
 | 
| 35389 | 867 | | non_bool_eq _ = false; | 
| 868 | val hyp_subst_tac' = | |
| 869 | SUBGOAL (fn (goal, i) => | |
| 870 | if Term.exists_Const non_bool_eq goal | |
| 871 | then Hypsubst.hyp_subst_tac i | |
| 872 | else no_tac); | |
| 21009 | 873 | in | 
| 21151 | 874 | Hypsubst.hypsubst_setup | 
| 35389 | 875 | (*prevent substitution on bool*) | 
| 33369 | 876 | #> Context_Rules.addSWrapper (fn tac => hyp_subst_tac' ORELSE' tac) | 
| 21009 | 877 | end | 
| 878 | *} | |
| 879 | ||
| 880 | declare iffI [intro!] | |
| 881 | and notI [intro!] | |
| 882 | and impI [intro!] | |
| 883 | and disjCI [intro!] | |
| 884 | and conjI [intro!] | |
| 885 | and TrueI [intro!] | |
| 886 | and refl [intro!] | |
| 887 | ||
| 888 | declare iffCE [elim!] | |
| 889 | and FalseE [elim!] | |
| 890 | and impCE [elim!] | |
| 891 | and disjE [elim!] | |
| 892 | and conjE [elim!] | |
| 893 | ||
| 894 | declare ex_ex1I [intro!] | |
| 895 | and allI [intro!] | |
| 896 | and the_equality [intro] | |
| 897 | and exI [intro] | |
| 898 | ||
| 899 | declare exE [elim!] | |
| 900 | allE [elim] | |
| 901 | ||
| 22377 | 902 | ML {* val HOL_cs = @{claset} *}
 | 
| 19162 | 903 | |
| 20223 | 904 | lemma contrapos_np: "~ Q ==> (~ P ==> Q) ==> P" | 
| 905 | apply (erule swap) | |
| 906 | apply (erule (1) meta_mp) | |
| 907 | done | |
| 10383 | 908 | |
| 18689 
a50587cd8414
prefer ex1I over ex_ex1I in single-step reasoning;
 wenzelm parents: 
18595diff
changeset | 909 | declare ex_ex1I [rule del, intro! 2] | 
| 
a50587cd8414
prefer ex1I over ex_ex1I in single-step reasoning;
 wenzelm parents: 
18595diff
changeset | 910 | and ex1I [intro] | 
| 
a50587cd8414
prefer ex1I over ex_ex1I in single-step reasoning;
 wenzelm parents: 
18595diff
changeset | 911 | |
| 41865 
4e8483cc2cc5
declare ext [intro]: Extensionality now available by default
 paulson parents: 
41827diff
changeset | 912 | declare ext [intro] | 
| 
4e8483cc2cc5
declare ext [intro]: Extensionality now available by default
 paulson parents: 
41827diff
changeset | 913 | |
| 12386 | 914 | lemmas [intro?] = ext | 
| 915 | and [elim?] = ex1_implies_ex | |
| 11977 | 916 | |
| 20944 | 917 | (*Better then ex1E for classical reasoner: needs no quantifier duplication!*) | 
| 20973 | 918 | lemma alt_ex1E [elim!]: | 
| 20944 | 919 | assumes major: "\<exists>!x. P x" | 
| 920 | and prem: "\<And>x. \<lbrakk> P x; \<forall>y y'. P y \<and> P y' \<longrightarrow> y = y' \<rbrakk> \<Longrightarrow> R" | |
| 921 | shows R | |
| 922 | apply (rule ex1E [OF major]) | |
| 923 | apply (rule prem) | |
| 22129 | 924 | apply (tactic {* ares_tac @{thms allI} 1 *})+
 | 
| 925 | apply (tactic {* etac (Classical.dup_elim @{thm allE}) 1 *})
 | |
| 926 | apply iprover | |
| 927 | done | |
| 20944 | 928 | |
| 21151 | 929 | ML {*
 | 
| 42477 | 930 | structure Blast = Blast | 
| 931 | ( | |
| 932 | structure Classical = Classical | |
| 42802 | 933 |     val Trueprop_const = dest_Const @{const Trueprop}
 | 
| 42477 | 934 |     val equality_name = @{const_name HOL.eq}
 | 
| 935 |     val not_name = @{const_name Not}
 | |
| 936 |     val notE = @{thm notE}
 | |
| 937 |     val ccontr = @{thm ccontr}
 | |
| 938 | val hyp_subst_tac = Hypsubst.blast_hyp_subst_tac | |
| 939 | ); | |
| 940 | val blast_tac = Blast.blast_tac; | |
| 20944 | 941 | *} | 
| 942 | ||
| 21151 | 943 | setup Blast.setup | 
| 944 | ||
| 20944 | 945 | |
| 946 | subsubsection {* Simplifier *}
 | |
| 12281 | 947 | |
| 948 | lemma eta_contract_eq: "(%s. f s) = f" .. | |
| 949 | ||
| 950 | lemma simp_thms: | |
| 12937 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 wenzelm parents: 
12892diff
changeset | 951 | shows not_not: "(~ ~ P) = P" | 
| 15354 | 952 | and Not_eq_iff: "((~P) = (~Q)) = (P = Q)" | 
| 12937 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 wenzelm parents: 
12892diff
changeset | 953 | and | 
| 12436 
a2df07fefed7
Replaced several occurrences of "blast" by "rules".
 berghofe parents: 
12386diff
changeset | 954 | "(P ~= Q) = (P = (~Q))" | 
| 
a2df07fefed7
Replaced several occurrences of "blast" by "rules".
 berghofe parents: 
12386diff
changeset | 955 | "(P | ~P) = True" "(~P | P) = True" | 
| 12281 | 956 | "(x = x) = True" | 
| 32068 | 957 | and not_True_eq_False [code]: "(\<not> True) = False" | 
| 958 | and not_False_eq_True [code]: "(\<not> False) = True" | |
| 20944 | 959 | and | 
| 12436 
a2df07fefed7
Replaced several occurrences of "blast" by "rules".
 berghofe parents: 
12386diff
changeset | 960 | "(~P) ~= P" "P ~= (~P)" | 
| 20944 | 961 | "(True=P) = P" | 
| 962 | and eq_True: "(P = True) = P" | |
| 963 | and "(False=P) = (~P)" | |
| 964 | and eq_False: "(P = False) = (\<not> P)" | |
| 965 | and | |
| 12281 | 966 | "(True --> P) = P" "(False --> P) = True" | 
| 967 | "(P --> True) = True" "(P --> P) = True" | |
| 968 | "(P --> False) = (~P)" "(P --> ~P) = (~P)" | |
| 969 | "(P & True) = P" "(True & P) = P" | |
| 970 | "(P & False) = False" "(False & P) = False" | |
| 971 | "(P & P) = P" "(P & (P & Q)) = (P & Q)" | |
| 972 | "(P & ~P) = False" "(~P & P) = False" | |
| 973 | "(P | True) = True" "(True | P) = True" | |
| 974 | "(P | False) = P" "(False | P) = P" | |
| 12436 
a2df07fefed7
Replaced several occurrences of "blast" by "rules".
 berghofe parents: 
12386diff
changeset | 975 | "(P | P) = P" "(P | (P | Q)) = (P | Q)" and | 
| 12281 | 976 | "(ALL x. P) = P" "(EX x. P) = P" "EX x. x=t" "EX x. t=x" | 
| 31166 
a90fe83f58ea
"{x. P x & x=t & Q x}" is now rewritten to "if P t & Q t then {t} else {}"
 nipkow parents: 
31156diff
changeset | 977 | and | 
| 12281 | 978 | "!!P. (EX x. x=t & P(x)) = P(t)" | 
| 979 | "!!P. (EX x. t=x & P(x)) = P(t)" | |
| 980 | "!!P. (ALL x. x=t --> P(x)) = P(t)" | |
| 12937 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 wenzelm parents: 
12892diff
changeset | 981 | "!!P. (ALL x. t=x --> P(x)) = P(t)" | 
| 17589 | 982 | by (blast, blast, blast, blast, blast, iprover+) | 
| 13421 | 983 | |
| 14201 | 984 | lemma disj_absorb: "(A | A) = A" | 
| 985 | by blast | |
| 986 | ||
| 987 | lemma disj_left_absorb: "(A | (A | B)) = (A | B)" | |
| 988 | by blast | |
| 989 | ||
| 990 | lemma conj_absorb: "(A & A) = A" | |
| 991 | by blast | |
| 992 | ||
| 993 | lemma conj_left_absorb: "(A & (A & B)) = (A & B)" | |
| 994 | by blast | |
| 995 | ||
| 12281 | 996 | lemma eq_ac: | 
| 12937 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 wenzelm parents: 
12892diff
changeset | 997 | shows eq_commute: "(a=b) = (b=a)" | 
| 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 wenzelm parents: 
12892diff
changeset | 998 | and eq_left_commute: "(P=(Q=R)) = (Q=(P=R))" | 
| 17589 | 999 | and eq_assoc: "((P=Q)=R) = (P=(Q=R))" by (iprover, blast+) | 
| 1000 | lemma neq_commute: "(a~=b) = (b~=a)" by iprover | |
| 12281 | 1001 | |
| 1002 | lemma conj_comms: | |
| 12937 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 wenzelm parents: 
12892diff
changeset | 1003 | shows conj_commute: "(P&Q) = (Q&P)" | 
| 17589 | 1004 | and conj_left_commute: "(P&(Q&R)) = (Q&(P&R))" by iprover+ | 
| 1005 | lemma conj_assoc: "((P&Q)&R) = (P&(Q&R))" by iprover | |
| 12281 | 1006 | |
| 19174 | 1007 | lemmas conj_ac = conj_commute conj_left_commute conj_assoc | 
| 1008 | ||
| 12281 | 1009 | lemma disj_comms: | 
| 12937 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 wenzelm parents: 
12892diff
changeset | 1010 | shows disj_commute: "(P|Q) = (Q|P)" | 
| 17589 | 1011 | and disj_left_commute: "(P|(Q|R)) = (Q|(P|R))" by iprover+ | 
| 1012 | lemma disj_assoc: "((P|Q)|R) = (P|(Q|R))" by iprover | |
| 12281 | 1013 | |
| 19174 | 1014 | lemmas disj_ac = disj_commute disj_left_commute disj_assoc | 
| 1015 | ||
| 17589 | 1016 | lemma conj_disj_distribL: "(P&(Q|R)) = (P&Q | P&R)" by iprover | 
| 1017 | lemma conj_disj_distribR: "((P|Q)&R) = (P&R | Q&R)" by iprover | |
| 12281 | 1018 | |
| 17589 | 1019 | lemma disj_conj_distribL: "(P|(Q&R)) = ((P|Q) & (P|R))" by iprover | 
| 1020 | lemma disj_conj_distribR: "((P&Q)|R) = ((P|R) & (Q|R))" by iprover | |
| 12281 | 1021 | |
| 17589 | 1022 | lemma imp_conjR: "(P --> (Q&R)) = ((P-->Q) & (P-->R))" by iprover | 
| 1023 | lemma imp_conjL: "((P&Q) -->R) = (P --> (Q --> R))" by iprover | |
| 1024 | lemma imp_disjL: "((P|Q) --> R) = ((P-->R)&(Q-->R))" by iprover | |
| 12281 | 1025 | |
| 1026 | text {* These two are specialized, but @{text imp_disj_not1} is useful in @{text "Auth/Yahalom"}. *}
 | |
| 1027 | lemma imp_disj_not1: "(P --> Q | R) = (~Q --> P --> R)" by blast | |
| 1028 | lemma imp_disj_not2: "(P --> Q | R) = (~R --> P --> Q)" by blast | |
| 1029 | ||
| 1030 | lemma imp_disj1: "((P-->Q)|R) = (P--> Q|R)" by blast | |
| 1031 | lemma imp_disj2: "(Q|(P-->R)) = (P--> Q|R)" by blast | |
| 1032 | ||
| 21151 | 1033 | lemma imp_cong: "(P = P') ==> (P' ==> (Q = Q')) ==> ((P --> Q) = (P' --> Q'))" | 
| 1034 | by iprover | |
| 1035 | ||
| 17589 | 1036 | lemma de_Morgan_disj: "(~(P | Q)) = (~P & ~Q)" by iprover | 
| 12281 | 1037 | lemma de_Morgan_conj: "(~(P & Q)) = (~P | ~Q)" by blast | 
| 1038 | lemma not_imp: "(~(P --> Q)) = (P & ~Q)" by blast | |
| 1039 | lemma not_iff: "(P~=Q) = (P = (~Q))" by blast | |
| 1040 | lemma disj_not1: "(~P | Q) = (P --> Q)" by blast | |
| 1041 | lemma disj_not2: "(P | ~Q) = (Q --> P)"  -- {* changes orientation :-( *}
 | |
| 1042 | by blast | |
| 1043 | lemma imp_conv_disj: "(P --> Q) = ((~P) | Q)" by blast | |
| 1044 | ||
| 17589 | 1045 | lemma iff_conv_conj_imp: "(P = Q) = ((P --> Q) & (Q --> P))" by iprover | 
| 12281 | 1046 | |
| 1047 | ||
| 1048 | lemma cases_simp: "((P --> Q) & (~P --> Q)) = Q" | |
| 1049 |   -- {* Avoids duplication of subgoals after @{text split_if}, when the true and false *}
 | |
| 1050 |   -- {* cases boil down to the same thing. *}
 | |
| 1051 | by blast | |
| 1052 | ||
| 1053 | lemma not_all: "(~ (! x. P(x))) = (? x.~P(x))" by blast | |
| 1054 | lemma imp_all: "((! x. P x) --> Q) = (? x. P x --> Q)" by blast | |
| 17589 | 1055 | lemma not_ex: "(~ (? x. P(x))) = (! x.~P(x))" by iprover | 
| 1056 | lemma imp_ex: "((? x. P x) --> Q) = (! x. P x --> Q)" by iprover | |
| 23403 | 1057 | lemma all_not_ex: "(ALL x. P x) = (~ (EX x. ~ P x ))" by blast | 
| 12281 | 1058 | |
| 35828 
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
 blanchet parents: 
35808diff
changeset | 1059 | declare All_def [no_atp] | 
| 24286 
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
 paulson parents: 
24280diff
changeset | 1060 | |
| 17589 | 1061 | lemma ex_disj_distrib: "(? x. P(x) | Q(x)) = ((? x. P(x)) | (? x. Q(x)))" by iprover | 
| 1062 | lemma all_conj_distrib: "(!x. P(x) & Q(x)) = ((! x. P(x)) & (! x. Q(x)))" by iprover | |
| 12281 | 1063 | |
| 1064 | text {*
 | |
| 1065 |   \medskip The @{text "&"} congruence rule: not included by default!
 | |
| 1066 | May slow rewrite proofs down by as much as 50\% *} | |
| 1067 | ||
| 1068 | lemma conj_cong: | |
| 1069 | "(P = P') ==> (P' ==> (Q = Q')) ==> ((P & Q) = (P' & Q'))" | |
| 17589 | 1070 | by iprover | 
| 12281 | 1071 | |
| 1072 | lemma rev_conj_cong: | |
| 1073 | "(Q = Q') ==> (Q' ==> (P = P')) ==> ((P & Q) = (P' & Q'))" | |
| 17589 | 1074 | by iprover | 
| 12281 | 1075 | |
| 1076 | text {* The @{text "|"} congruence rule: not included by default! *}
 | |
| 1077 | ||
| 1078 | lemma disj_cong: | |
| 1079 | "(P = P') ==> (~P' ==> (Q = Q')) ==> ((P | Q) = (P' | Q'))" | |
| 1080 | by blast | |
| 1081 | ||
| 1082 | ||
| 1083 | text {* \medskip if-then-else rules *}
 | |
| 1084 | ||
| 32068 | 1085 | lemma if_True [code]: "(if True then x else y) = x" | 
| 38525 | 1086 | by (unfold If_def) blast | 
| 12281 | 1087 | |
| 32068 | 1088 | lemma if_False [code]: "(if False then x else y) = y" | 
| 38525 | 1089 | by (unfold If_def) blast | 
| 12281 | 1090 | |
| 1091 | lemma if_P: "P ==> (if P then x else y) = x" | |
| 38525 | 1092 | by (unfold If_def) blast | 
| 12281 | 1093 | |
| 1094 | lemma if_not_P: "~P ==> (if P then x else y) = y" | |
| 38525 | 1095 | by (unfold If_def) blast | 
| 12281 | 1096 | |
| 1097 | lemma split_if: "P (if Q then x else y) = ((Q --> P(x)) & (~Q --> P(y)))" | |
| 1098 | apply (rule case_split [of Q]) | |
| 15481 | 1099 | apply (simplesubst if_P) | 
| 1100 | prefer 3 apply (simplesubst if_not_P, blast+) | |
| 12281 | 1101 | done | 
| 1102 | ||
| 1103 | lemma split_if_asm: "P (if Q then x else y) = (~((Q & ~P x) | (~Q & ~P y)))" | |
| 15481 | 1104 | by (simplesubst split_if, blast) | 
| 12281 | 1105 | |
| 35828 
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
 blanchet parents: 
35808diff
changeset | 1106 | lemmas if_splits [no_atp] = split_if split_if_asm | 
| 12281 | 1107 | |
| 1108 | lemma if_cancel: "(if c then x else x) = x" | |
| 15481 | 1109 | by (simplesubst split_if, blast) | 
| 12281 | 1110 | |
| 1111 | lemma if_eq_cancel: "(if x = y then y else x) = x" | |
| 15481 | 1112 | by (simplesubst split_if, blast) | 
| 12281 | 1113 | |
| 41792 
ff3cb0c418b7
renamed "nitpick\_def" to "nitpick_unfold" to reflect its new semantics
 blanchet parents: 
41636diff
changeset | 1114 | lemma if_bool_eq_conj: | 
| 
ff3cb0c418b7
renamed "nitpick\_def" to "nitpick_unfold" to reflect its new semantics
 blanchet parents: 
41636diff
changeset | 1115 | "(if P then Q else R) = ((P-->Q) & (~P-->R))" | 
| 19796 | 1116 |   -- {* This form is useful for expanding @{text "if"}s on the RIGHT of the @{text "==>"} symbol. *}
 | 
| 12281 | 1117 | by (rule split_if) | 
| 1118 | ||
| 1119 | lemma if_bool_eq_disj: "(if P then Q else R) = ((P&Q) | (~P&R))" | |
| 19796 | 1120 |   -- {* And this form is useful for expanding @{text "if"}s on the LEFT. *}
 | 
| 15481 | 1121 | apply (simplesubst split_if, blast) | 
| 12281 | 1122 | done | 
| 1123 | ||
| 17589 | 1124 | lemma Eq_TrueI: "P ==> P == True" by (unfold atomize_eq) iprover | 
| 1125 | lemma Eq_FalseI: "~P ==> P == False" by (unfold atomize_eq) iprover | |
| 12281 | 1126 | |
| 15423 | 1127 | text {* \medskip let rules for simproc *}
 | 
| 1128 | ||
| 1129 | lemma Let_folded: "f x \<equiv> g x \<Longrightarrow> Let x f \<equiv> Let x g" | |
| 1130 | by (unfold Let_def) | |
| 1131 | ||
| 1132 | lemma Let_unfold: "f x \<equiv> g \<Longrightarrow> Let x f \<equiv> g" | |
| 1133 | by (unfold Let_def) | |
| 1134 | ||
| 16633 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1135 | text {*
 | 
| 16999 | 1136 | The following copy of the implication operator is useful for | 
| 1137 | fine-tuning congruence rules. It instructs the simplifier to simplify | |
| 1138 | its premise. | |
| 16633 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1139 | *} | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1140 | |
| 35416 
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
 haftmann parents: 
35115diff
changeset | 1141 | definition simp_implies :: "[prop, prop] => prop" (infixr "=simp=>" 1) where | 
| 37767 | 1142 | "simp_implies \<equiv> op ==>" | 
| 16633 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1143 | |
| 18457 | 1144 | lemma simp_impliesI: | 
| 16633 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1145 | assumes PQ: "(PROP P \<Longrightarrow> PROP Q)" | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1146 | shows "PROP P =simp=> PROP Q" | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1147 | apply (unfold simp_implies_def) | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1148 | apply (rule PQ) | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1149 | apply assumption | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1150 | done | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1151 | |
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1152 | lemma simp_impliesE: | 
| 25388 | 1153 | assumes PQ: "PROP P =simp=> PROP Q" | 
| 16633 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1154 | and P: "PROP P" | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1155 | and QR: "PROP Q \<Longrightarrow> PROP R" | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1156 | shows "PROP R" | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1157 | apply (rule QR) | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1158 | apply (rule PQ [unfolded simp_implies_def]) | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1159 | apply (rule P) | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1160 | done | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1161 | |
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1162 | lemma simp_implies_cong: | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1163 | assumes PP' :"PROP P == PROP P'" | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1164 | and P'QQ': "PROP P' ==> (PROP Q == PROP Q')" | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1165 | shows "(PROP P =simp=> PROP Q) == (PROP P' =simp=> PROP Q')" | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1166 | proof (unfold simp_implies_def, rule equal_intr_rule) | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1167 | assume PQ: "PROP P \<Longrightarrow> PROP Q" | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1168 | and P': "PROP P'" | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1169 | from PP' [symmetric] and P' have "PROP P" | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1170 | by (rule equal_elim_rule1) | 
| 23553 | 1171 | then have "PROP Q" by (rule PQ) | 
| 16633 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1172 | with P'QQ' [OF P'] show "PROP Q'" by (rule equal_elim_rule1) | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1173 | next | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1174 | assume P'Q': "PROP P' \<Longrightarrow> PROP Q'" | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1175 | and P: "PROP P" | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1176 | from PP' and P have P': "PROP P'" by (rule equal_elim_rule1) | 
| 23553 | 1177 | then have "PROP Q'" by (rule P'Q') | 
| 16633 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1178 | with P'QQ' [OF P', symmetric] show "PROP Q" | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1179 | by (rule equal_elim_rule1) | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1180 | qed | 
| 
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
 berghofe parents: 
16587diff
changeset | 1181 | |
| 20944 | 1182 | lemma uncurry: | 
| 1183 | assumes "P \<longrightarrow> Q \<longrightarrow> R" | |
| 1184 | shows "P \<and> Q \<longrightarrow> R" | |
| 23553 | 1185 | using assms by blast | 
| 20944 | 1186 | |
| 1187 | lemma iff_allI: | |
| 1188 | assumes "\<And>x. P x = Q x" | |
| 1189 | shows "(\<forall>x. P x) = (\<forall>x. Q x)" | |
| 23553 | 1190 | using assms by blast | 
| 20944 | 1191 | |
| 1192 | lemma iff_exI: | |
| 1193 | assumes "\<And>x. P x = Q x" | |
| 1194 | shows "(\<exists>x. P x) = (\<exists>x. Q x)" | |
| 23553 | 1195 | using assms by blast | 
| 20944 | 1196 | |
| 1197 | lemma all_comm: | |
| 1198 | "(\<forall>x y. P x y) = (\<forall>y x. P x y)" | |
| 1199 | by blast | |
| 1200 | ||
| 1201 | lemma ex_comm: | |
| 1202 | "(\<exists>x y. P x y) = (\<exists>y x. P x y)" | |
| 1203 | by blast | |
| 1204 | ||
| 28952 
15a4b2cf8c34
made repository layout more coherent with logical distribution structure; stripped some $Id$s
 haftmann parents: 
28856diff
changeset | 1205 | use "Tools/simpdata.ML" | 
| 21671 | 1206 | ML {* open Simpdata *}
 | 
| 42455 | 1207 | |
| 42795 
66fcc9882784
clarified map_simpset versus Simplifier.map_simpset_global;
 wenzelm parents: 
42477diff
changeset | 1208 | setup {* Simplifier.map_simpset_global (K HOL_basic_ss) *}
 | 
| 42455 | 1209 | |
| 42459 | 1210 | simproc_setup defined_Ex ("EX x. P x") = {* fn _ => Quantifier1.rearrange_ex *}
 | 
| 1211 | simproc_setup defined_All ("ALL x. P x") = {* fn _ => Quantifier1.rearrange_all *}
 | |
| 21671 | 1212 | |
| 21151 | 1213 | setup {*
 | 
| 1214 | Simplifier.method_setup Splitter.split_modifiers | |
| 1215 | #> Splitter.setup | |
| 26496 
49ae9456eba9
purely functional setup of claset/simpset/clasimpset;
 wenzelm parents: 
26411diff
changeset | 1216 | #> clasimp_setup | 
| 21151 | 1217 | #> EqSubst.setup | 
| 1218 | *} | |
| 1219 | ||
| 24035 | 1220 | text {* Simproc for proving @{text "(y = x) == False"} from premise @{text "~(x = y)"}: *}
 | 
| 1221 | ||
| 1222 | simproc_setup neq ("x = y") = {* fn _ =>
 | |
| 1223 | let | |
| 1224 |   val neq_to_EQ_False = @{thm not_sym} RS @{thm Eq_FalseI};
 | |
| 1225 | fun is_neq eq lhs rhs thm = | |
| 1226 | (case Thm.prop_of thm of | |
| 1227 | _ $ (Not $ (eq' $ l' $ r')) => | |
| 1228 | Not = HOLogic.Not andalso eq' = eq andalso | |
| 1229 | r' aconv lhs andalso l' aconv rhs | |
| 1230 | | _ => false); | |
| 1231 | fun proc ss ct = | |
| 1232 | (case Thm.term_of ct of | |
| 1233 | eq $ lhs $ rhs => | |
| 43597 | 1234 | (case find_first (is_neq eq lhs rhs) (Simplifier.prems_of ss) of | 
| 24035 | 1235 | SOME thm => SOME (thm RS neq_to_EQ_False) | 
| 1236 | | NONE => NONE) | |
| 1237 | | _ => NONE); | |
| 1238 | in proc end; | |
| 1239 | *} | |
| 1240 | ||
| 1241 | simproc_setup let_simp ("Let x f") = {*
 | |
| 1242 | let | |
| 1243 | val (f_Let_unfold, x_Let_unfold) = | |
| 28741 | 1244 |     let val [(_ $ (f $ x) $ _)] = prems_of @{thm Let_unfold}
 | 
| 24035 | 1245 |     in (cterm_of @{theory} f, cterm_of @{theory} x) end
 | 
| 1246 | val (f_Let_folded, x_Let_folded) = | |
| 28741 | 1247 |     let val [(_ $ (f $ x) $ _)] = prems_of @{thm Let_folded}
 | 
| 24035 | 1248 |     in (cterm_of @{theory} f, cterm_of @{theory} x) end;
 | 
| 1249 | val g_Let_folded = | |
| 28741 | 1250 |     let val [(_ $ _ $ (g $ _))] = prems_of @{thm Let_folded}
 | 
| 1251 |     in cterm_of @{theory} g end;
 | |
| 1252 | fun count_loose (Bound i) k = if i >= k then 1 else 0 | |
| 1253 | | count_loose (s $ t) k = count_loose s k + count_loose t k | |
| 1254 | | count_loose (Abs (_, _, t)) k = count_loose t (k + 1) | |
| 1255 | | count_loose _ _ = 0; | |
| 1256 |   fun is_trivial_let (Const (@{const_name Let}, _) $ x $ t) =
 | |
| 1257 | case t | |
| 1258 | of Abs (_, _, t') => count_loose t' 0 <= 1 | |
| 1259 | | _ => true; | |
| 1260 | in fn _ => fn ss => fn ct => if is_trivial_let (Thm.term_of ct) | |
| 31151 | 1261 |   then SOME @{thm Let_def} (*no or one ocurrence of bound variable*)
 | 
| 28741 | 1262 | else let (*Norbert Schirmer's case*) | 
| 1263 | val ctxt = Simplifier.the_context ss; | |
| 42361 | 1264 | val thy = Proof_Context.theory_of ctxt; | 
| 28741 | 1265 | val t = Thm.term_of ct; | 
| 1266 | val ([t'], ctxt') = Variable.import_terms false [t] ctxt; | |
| 1267 | in Option.map (hd o Variable.export ctxt' ctxt o single) | |
| 1268 |     (case t' of Const (@{const_name Let},_) $ x $ f => (* x and f are already in normal form *)
 | |
| 1269 | if is_Free x orelse is_Bound x orelse is_Const x | |
| 1270 |       then SOME @{thm Let_def}
 | |
| 1271 | else | |
| 1272 | let | |
| 1273 | val n = case f of (Abs (x, _, _)) => x | _ => "x"; | |
| 1274 | val cx = cterm_of thy x; | |
| 1275 |           val {T = xT, ...} = rep_cterm cx;
 | |
| 1276 | val cf = cterm_of thy f; | |
| 1277 | val fx_g = Simplifier.rewrite ss (Thm.capply cf cx); | |
| 1278 | val (_ $ _ $ g) = prop_of fx_g; | |
| 1279 | val g' = abstract_over (x,g); | |
| 1280 | in (if (g aconv g') | |
| 1281 | then | |
| 1282 | let | |
| 1283 | val rl = | |
| 1284 |                     cterm_instantiate [(f_Let_unfold, cf), (x_Let_unfold, cx)] @{thm Let_unfold};
 | |
| 1285 | in SOME (rl OF [fx_g]) end | |
| 1286 | else if Term.betapply (f, x) aconv g then NONE (*avoid identity conversion*) | |
| 1287 | else let | |
| 1288 | val abs_g'= Abs (n,xT,g'); | |
| 1289 | val g'x = abs_g'$x; | |
| 36945 | 1290 | val g_g'x = Thm.symmetric (Thm.beta_conversion false (cterm_of thy g'x)); | 
| 28741 | 1291 | val rl = cterm_instantiate | 
| 1292 | [(f_Let_folded, cterm_of thy f), (x_Let_folded, cx), | |
| 1293 | (g_Let_folded, cterm_of thy abs_g')] | |
| 1294 |                              @{thm Let_folded};
 | |
| 36945 | 1295 | in SOME (rl OF [Thm.transitive fx_g g_g'x]) | 
| 28741 | 1296 | end) | 
| 1297 | end | |
| 1298 | | _ => NONE) | |
| 1299 | end | |
| 1300 | end *} | |
| 24035 | 1301 | |
| 21151 | 1302 | lemma True_implies_equals: "(True \<Longrightarrow> PROP P) \<equiv> PROP P" | 
| 1303 | proof | |
| 23389 | 1304 | assume "True \<Longrightarrow> PROP P" | 
| 1305 | from this [OF TrueI] show "PROP P" . | |
| 21151 | 1306 | next | 
| 1307 | assume "PROP P" | |
| 23389 | 1308 | then show "PROP P" . | 
| 21151 | 1309 | qed | 
| 1310 | ||
| 1311 | lemma ex_simps: | |
| 1312 | "!!P Q. (EX x. P x & Q) = ((EX x. P x) & Q)" | |
| 1313 | "!!P Q. (EX x. P & Q x) = (P & (EX x. Q x))" | |
| 1314 | "!!P Q. (EX x. P x | Q) = ((EX x. P x) | Q)" | |
| 1315 | "!!P Q. (EX x. P | Q x) = (P | (EX x. Q x))" | |
| 1316 | "!!P Q. (EX x. P x --> Q) = ((ALL x. P x) --> Q)" | |
| 1317 | "!!P Q. (EX x. P --> Q x) = (P --> (EX x. Q x))" | |
| 1318 |   -- {* Miniscoping: pushing in existential quantifiers. *}
 | |
| 1319 | by (iprover | blast)+ | |
| 1320 | ||
| 1321 | lemma all_simps: | |
| 1322 | "!!P Q. (ALL x. P x & Q) = ((ALL x. P x) & Q)" | |
| 1323 | "!!P Q. (ALL x. P & Q x) = (P & (ALL x. Q x))" | |
| 1324 | "!!P Q. (ALL x. P x | Q) = ((ALL x. P x) | Q)" | |
| 1325 | "!!P Q. (ALL x. P | Q x) = (P | (ALL x. Q x))" | |
| 1326 | "!!P Q. (ALL x. P x --> Q) = ((EX x. P x) --> Q)" | |
| 1327 | "!!P Q. (ALL x. P --> Q x) = (P --> (ALL x. Q x))" | |
| 1328 |   -- {* Miniscoping: pushing in universal quantifiers. *}
 | |
| 1329 | by (iprover | blast)+ | |
| 15481 | 1330 | |
| 21671 | 1331 | lemmas [simp] = | 
| 1332 | triv_forall_equality (*prunes params*) | |
| 1333 | True_implies_equals (*prune asms `True'*) | |
| 1334 | if_True | |
| 1335 | if_False | |
| 1336 | if_cancel | |
| 1337 | if_eq_cancel | |
| 1338 | imp_disjL | |
| 20973 | 1339 | (*In general it seems wrong to add distributive laws by default: they | 
| 1340 | might cause exponential blow-up. But imp_disjL has been in for a while | |
| 1341 | and cannot be removed without affecting existing proofs. Moreover, | |
| 1342 | rewriting by "(P|Q --> R) = ((P-->R)&(Q-->R))" might be justified on the | |
| 1343 | grounds that it allows simplification of R in the two cases.*) | |
| 21671 | 1344 | conj_assoc | 
| 1345 | disj_assoc | |
| 1346 | de_Morgan_conj | |
| 1347 | de_Morgan_disj | |
| 1348 | imp_disj1 | |
| 1349 | imp_disj2 | |
| 1350 | not_imp | |
| 1351 | disj_not1 | |
| 1352 | not_all | |
| 1353 | not_ex | |
| 1354 | cases_simp | |
| 1355 | the_eq_trivial | |
| 1356 | the_sym_eq_trivial | |
| 1357 | ex_simps | |
| 1358 | all_simps | |
| 1359 | simp_thms | |
| 1360 | ||
| 1361 | lemmas [cong] = imp_cong simp_implies_cong | |
| 1362 | lemmas [split] = split_if | |
| 20973 | 1363 | |
| 22377 | 1364 | ML {* val HOL_ss = @{simpset} *}
 | 
| 20973 | 1365 | |
| 20944 | 1366 | text {* Simplifies x assuming c and y assuming ~c *}
 | 
| 1367 | lemma if_cong: | |
| 1368 | assumes "b = c" | |
| 1369 | and "c \<Longrightarrow> x = u" | |
| 1370 | and "\<not> c \<Longrightarrow> y = v" | |
| 1371 | shows "(if b then x else y) = (if c then u else v)" | |
| 38525 | 1372 | using assms by simp | 
| 20944 | 1373 | |
| 1374 | text {* Prevents simplification of x and y:
 | |
| 1375 | faster and allows the execution of functional programs. *} | |
| 1376 | lemma if_weak_cong [cong]: | |
| 1377 | assumes "b = c" | |
| 1378 | shows "(if b then x else y) = (if c then x else y)" | |
| 23553 | 1379 | using assms by (rule arg_cong) | 
| 20944 | 1380 | |
| 1381 | text {* Prevents simplification of t: much faster *}
 | |
| 1382 | lemma let_weak_cong: | |
| 1383 | assumes "a = b" | |
| 1384 | shows "(let x = a in t x) = (let x = b in t x)" | |
| 23553 | 1385 | using assms by (rule arg_cong) | 
| 20944 | 1386 | |
| 1387 | text {* To tidy up the result of a simproc.  Only the RHS will be simplified. *}
 | |
| 1388 | lemma eq_cong2: | |
| 1389 | assumes "u = u'" | |
| 1390 | shows "(t \<equiv> u) \<equiv> (t \<equiv> u')" | |
| 23553 | 1391 | using assms by simp | 
| 20944 | 1392 | |
| 1393 | lemma if_distrib: | |
| 1394 | "f (if c then x else y) = (if c then f x else f y)" | |
| 1395 | by simp | |
| 1396 | ||
| 44277 
bcb696533579
moved fundamental lemma fun_eq_iff to theory HOL; tuned whitespace
 haftmann parents: 
44121diff
changeset | 1397 | text{*As a simplification rule, it replaces all function equalities by
 | 
| 
bcb696533579
moved fundamental lemma fun_eq_iff to theory HOL; tuned whitespace
 haftmann parents: 
44121diff
changeset | 1398 | first-order equalities.*} | 
| 
bcb696533579
moved fundamental lemma fun_eq_iff to theory HOL; tuned whitespace
 haftmann parents: 
44121diff
changeset | 1399 | lemma fun_eq_iff: "f = g \<longleftrightarrow> (\<forall>x. f x = g x)" | 
| 
bcb696533579
moved fundamental lemma fun_eq_iff to theory HOL; tuned whitespace
 haftmann parents: 
44121diff
changeset | 1400 | by auto | 
| 
bcb696533579
moved fundamental lemma fun_eq_iff to theory HOL; tuned whitespace
 haftmann parents: 
44121diff
changeset | 1401 | |
| 17459 | 1402 | |
| 20944 | 1403 | subsubsection {* Generic cases and induction *}
 | 
| 17459 | 1404 | |
| 20944 | 1405 | text {* Rule projections: *}
 | 
| 18887 | 1406 | |
| 20944 | 1407 | ML {*
 | 
| 32172 | 1408 | structure Project_Rule = Project_Rule | 
| 25388 | 1409 | ( | 
| 27126 
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
 wenzelm parents: 
27107diff
changeset | 1410 |   val conjunct1 = @{thm conjunct1}
 | 
| 
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
 wenzelm parents: 
27107diff
changeset | 1411 |   val conjunct2 = @{thm conjunct2}
 | 
| 
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
 wenzelm parents: 
27107diff
changeset | 1412 |   val mp = @{thm mp}
 | 
| 25388 | 1413 | ) | 
| 17459 | 1414 | *} | 
| 1415 | ||
| 35416 
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
 haftmann parents: 
35115diff
changeset | 1416 | definition induct_forall where | 
| 
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
 haftmann parents: 
35115diff
changeset | 1417 | "induct_forall P == \<forall>x. P x" | 
| 
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
 haftmann parents: 
35115diff
changeset | 1418 | |
| 
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
 haftmann parents: 
35115diff
changeset | 1419 | definition induct_implies where | 
| 
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
 haftmann parents: 
35115diff
changeset | 1420 | "induct_implies A B == A \<longrightarrow> B" | 
| 
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
 haftmann parents: 
35115diff
changeset | 1421 | |
| 
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
 haftmann parents: 
35115diff
changeset | 1422 | definition induct_equal where | 
| 
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
 haftmann parents: 
35115diff
changeset | 1423 | "induct_equal x y == x = y" | 
| 
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
 haftmann parents: 
35115diff
changeset | 1424 | |
| 
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
 haftmann parents: 
35115diff
changeset | 1425 | definition induct_conj where | 
| 
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
 haftmann parents: 
35115diff
changeset | 1426 | "induct_conj A B == A \<and> B" | 
| 
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
 haftmann parents: 
35115diff
changeset | 1427 | |
| 
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
 haftmann parents: 
35115diff
changeset | 1428 | definition induct_true where | 
| 
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
 haftmann parents: 
35115diff
changeset | 1429 | "induct_true == True" | 
| 
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
 haftmann parents: 
35115diff
changeset | 1430 | |
| 
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
 haftmann parents: 
35115diff
changeset | 1431 | definition induct_false where | 
| 
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
 haftmann parents: 
35115diff
changeset | 1432 | "induct_false == False" | 
| 11824 
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
 wenzelm parents: 
11770diff
changeset | 1433 | |
| 11989 | 1434 | lemma induct_forall_eq: "(!!x. P x) == Trueprop (induct_forall (\<lambda>x. P x))" | 
| 18457 | 1435 | by (unfold atomize_all induct_forall_def) | 
| 11824 
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
 wenzelm parents: 
11770diff
changeset | 1436 | |
| 11989 | 1437 | lemma induct_implies_eq: "(A ==> B) == Trueprop (induct_implies A B)" | 
| 18457 | 1438 | by (unfold atomize_imp induct_implies_def) | 
| 11824 
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
 wenzelm parents: 
11770diff
changeset | 1439 | |
| 11989 | 1440 | lemma induct_equal_eq: "(x == y) == Trueprop (induct_equal x y)" | 
| 18457 | 1441 | by (unfold atomize_eq induct_equal_def) | 
| 1442 | ||
| 28856 
5e009a80fe6d
Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
 wenzelm parents: 
28741diff
changeset | 1443 | lemma induct_conj_eq: "(A &&& B) == Trueprop (induct_conj A B)" | 
| 18457 | 1444 | by (unfold atomize_conj induct_conj_def) | 
| 1445 | ||
| 34908 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1446 | lemmas induct_atomize' = induct_forall_eq induct_implies_eq induct_conj_eq | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1447 | lemmas induct_atomize = induct_atomize' induct_equal_eq | 
| 45607 | 1448 | lemmas induct_rulify' [symmetric] = induct_atomize' | 
| 1449 | lemmas induct_rulify [symmetric] = induct_atomize | |
| 18457 | 1450 | lemmas induct_rulify_fallback = | 
| 1451 | induct_forall_def induct_implies_def induct_equal_def induct_conj_def | |
| 34908 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1452 | induct_true_def induct_false_def | 
| 18457 | 1453 | |
| 11824 
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
 wenzelm parents: 
11770diff
changeset | 1454 | |
| 11989 | 1455 | lemma induct_forall_conj: "induct_forall (\<lambda>x. induct_conj (A x) (B x)) = | 
| 1456 | induct_conj (induct_forall A) (induct_forall B)" | |
| 17589 | 1457 | by (unfold induct_forall_def induct_conj_def) iprover | 
| 11824 
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
 wenzelm parents: 
11770diff
changeset | 1458 | |
| 11989 | 1459 | lemma induct_implies_conj: "induct_implies C (induct_conj A B) = | 
| 1460 | induct_conj (induct_implies C A) (induct_implies C B)" | |
| 17589 | 1461 | by (unfold induct_implies_def induct_conj_def) iprover | 
| 11989 | 1462 | |
| 13598 
8bc77b17f59f
Fixed problem with induct_conj_curry: variable C should have type prop.
 berghofe parents: 
13596diff
changeset | 1463 | lemma induct_conj_curry: "(induct_conj A B ==> PROP C) == (A ==> B ==> PROP C)" | 
| 
8bc77b17f59f
Fixed problem with induct_conj_curry: variable C should have type prop.
 berghofe parents: 
13596diff
changeset | 1464 | proof | 
| 
8bc77b17f59f
Fixed problem with induct_conj_curry: variable C should have type prop.
 berghofe parents: 
13596diff
changeset | 1465 | assume r: "induct_conj A B ==> PROP C" and A B | 
| 18457 | 1466 | show "PROP C" by (rule r) (simp add: induct_conj_def `A` `B`) | 
| 13598 
8bc77b17f59f
Fixed problem with induct_conj_curry: variable C should have type prop.
 berghofe parents: 
13596diff
changeset | 1467 | next | 
| 
8bc77b17f59f
Fixed problem with induct_conj_curry: variable C should have type prop.
 berghofe parents: 
13596diff
changeset | 1468 | assume r: "A ==> B ==> PROP C" and "induct_conj A B" | 
| 18457 | 1469 | show "PROP C" by (rule r) (simp_all add: `induct_conj A B` [unfolded induct_conj_def]) | 
| 13598 
8bc77b17f59f
Fixed problem with induct_conj_curry: variable C should have type prop.
 berghofe parents: 
13596diff
changeset | 1470 | qed | 
| 11824 
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
 wenzelm parents: 
11770diff
changeset | 1471 | |
| 11989 | 1472 | lemmas induct_conj = induct_forall_conj induct_implies_conj induct_conj_curry | 
| 11824 
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
 wenzelm parents: 
11770diff
changeset | 1473 | |
| 34908 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1474 | lemma induct_trueI: "induct_true" | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1475 | by (simp add: induct_true_def) | 
| 11824 
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
 wenzelm parents: 
11770diff
changeset | 1476 | |
| 
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
 wenzelm parents: 
11770diff
changeset | 1477 | text {* Method setup. *}
 | 
| 
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
 wenzelm parents: 
11770diff
changeset | 1478 | |
| 
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
 wenzelm parents: 
11770diff
changeset | 1479 | ML {*
 | 
| 32171 | 1480 | structure Induct = Induct | 
| 27126 
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
 wenzelm parents: 
27107diff
changeset | 1481 | ( | 
| 
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
 wenzelm parents: 
27107diff
changeset | 1482 |   val cases_default = @{thm case_split}
 | 
| 
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
 wenzelm parents: 
27107diff
changeset | 1483 |   val atomize = @{thms induct_atomize}
 | 
| 34908 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1484 |   val rulify = @{thms induct_rulify'}
 | 
| 27126 
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
 wenzelm parents: 
27107diff
changeset | 1485 |   val rulify_fallback = @{thms induct_rulify_fallback}
 | 
| 34988 
cca208c8d619
Added setup for simplification of equality constraints in cases rules.
 berghofe parents: 
34917diff
changeset | 1486 |   val equal_def = @{thm induct_equal_def}
 | 
| 34908 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1487 |   fun dest_def (Const (@{const_name induct_equal}, _) $ t $ u) = SOME (t, u)
 | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1488 | | dest_def _ = NONE | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1489 |   val trivial_tac = match_tac @{thms induct_trueI}
 | 
| 27126 
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
 wenzelm parents: 
27107diff
changeset | 1490 | ) | 
| 11824 
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
 wenzelm parents: 
11770diff
changeset | 1491 | *} | 
| 
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
 wenzelm parents: 
11770diff
changeset | 1492 | |
| 45014 
0e847655b2d8
New proof method "induction" that gives induction hypotheses the name IH.
 nipkow parents: 
44921diff
changeset | 1493 | use "~~/src/Tools/induction.ML" | 
| 
0e847655b2d8
New proof method "induction" that gives induction hypotheses the name IH.
 nipkow parents: 
44921diff
changeset | 1494 | |
| 34908 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1495 | setup {*
 | 
| 45014 
0e847655b2d8
New proof method "induction" that gives induction hypotheses the name IH.
 nipkow parents: 
44921diff
changeset | 1496 | Induct.setup #> Induction.setup #> | 
| 34908 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1497 | Context.theory_map (Induct.map_simpset (fn ss => ss | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1498 | addsimprocs | 
| 38715 
6513ea67d95d
renamed Simplifier.simproc(_i) to Simplifier.simproc_global(_i) to emphasize that this is not the real thing;
 wenzelm parents: 
38708diff
changeset | 1499 |       [Simplifier.simproc_global @{theory} "swap_induct_false"
 | 
| 34908 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1500 | ["induct_false ==> PROP P ==> PROP Q"] | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1501 | (fn _ => fn _ => | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1502 |             (fn _ $ (P as _ $ @{const induct_false}) $ (_ $ Q $ _) =>
 | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1503 | if P <> Q then SOME Drule.swap_prems_eq else NONE | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1504 | | _ => NONE)), | 
| 38715 
6513ea67d95d
renamed Simplifier.simproc(_i) to Simplifier.simproc_global(_i) to emphasize that this is not the real thing;
 wenzelm parents: 
38708diff
changeset | 1505 |        Simplifier.simproc_global @{theory} "induct_equal_conj_curry"
 | 
| 34908 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1506 | ["induct_conj P Q ==> PROP R"] | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1507 | (fn _ => fn _ => | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1508 | (fn _ $ (_ $ P) $ _ => | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1509 | let | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1510 |                   fun is_conj (@{const induct_conj} $ P $ Q) =
 | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1511 | is_conj P andalso is_conj Q | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1512 |                     | is_conj (Const (@{const_name induct_equal}, _) $ _ $ _) = true
 | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1513 |                     | is_conj @{const induct_true} = true
 | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1514 |                     | is_conj @{const induct_false} = true
 | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1515 | | is_conj _ = false | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1516 |                 in if is_conj P then SOME @{thm induct_conj_curry} else NONE end
 | 
| 45625 
750c5a47400b
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
 wenzelm parents: 
45607diff
changeset | 1517 | | _ => NONE))] | 
| 
750c5a47400b
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
 wenzelm parents: 
45607diff
changeset | 1518 | |> Simplifier.set_mksimps (fn ss => Simpdata.mksimps Simpdata.mksimps_pairs ss #> | 
| 
750c5a47400b
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
 wenzelm parents: 
45607diff
changeset | 1519 | map (Simplifier.rewrite_rule (map Thm.symmetric | 
| 
750c5a47400b
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
 wenzelm parents: 
45607diff
changeset | 1520 |         @{thms induct_rulify_fallback})))))
 | 
| 34908 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1521 | *} | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1522 | |
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1523 | text {* Pre-simplification of induction and cases rules *}
 | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1524 | |
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1525 | lemma [induct_simp]: "(!!x. induct_equal x t ==> PROP P x) == PROP P t" | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1526 | unfolding induct_equal_def | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1527 | proof | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1528 | assume R: "!!x. x = t ==> PROP P x" | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1529 | show "PROP P t" by (rule R [OF refl]) | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1530 | next | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1531 | fix x assume "PROP P t" "x = t" | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1532 | then show "PROP P x" by simp | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1533 | qed | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1534 | |
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1535 | lemma [induct_simp]: "(!!x. induct_equal t x ==> PROP P x) == PROP P t" | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1536 | unfolding induct_equal_def | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1537 | proof | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1538 | assume R: "!!x. t = x ==> PROP P x" | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1539 | show "PROP P t" by (rule R [OF refl]) | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1540 | next | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1541 | fix x assume "PROP P t" "t = x" | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1542 | then show "PROP P x" by simp | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1543 | qed | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1544 | |
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1545 | lemma [induct_simp]: "(induct_false ==> P) == Trueprop induct_true" | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1546 | unfolding induct_false_def induct_true_def | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1547 | by (iprover intro: equal_intr_rule) | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1548 | |
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1549 | lemma [induct_simp]: "(induct_true ==> PROP P) == PROP P" | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1550 | unfolding induct_true_def | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1551 | proof | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1552 | assume R: "True \<Longrightarrow> PROP P" | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1553 | from TrueI show "PROP P" by (rule R) | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1554 | next | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1555 | assume "PROP P" | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1556 | then show "PROP P" . | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1557 | qed | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1558 | |
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1559 | lemma [induct_simp]: "(PROP P ==> induct_true) == Trueprop induct_true" | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1560 | unfolding induct_true_def | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1561 | by (iprover intro: equal_intr_rule) | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1562 | |
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1563 | lemma [induct_simp]: "(!!x. induct_true) == Trueprop induct_true" | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1564 | unfolding induct_true_def | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1565 | by (iprover intro: equal_intr_rule) | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1566 | |
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1567 | lemma [induct_simp]: "induct_implies induct_true P == P" | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1568 | by (simp add: induct_implies_def induct_true_def) | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1569 | |
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1570 | lemma [induct_simp]: "(x = x) = True" | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1571 | by (rule simp_thms) | 
| 
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
 berghofe parents: 
34294diff
changeset | 1572 | |
| 36176 
3fe7e97ccca8
replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
 wenzelm parents: 
36060diff
changeset | 1573 | hide_const induct_forall induct_implies induct_equal induct_conj induct_true induct_false | 
| 18457 | 1574 | |
| 27326 
d3beec370964
moved src/HOL/Tools/induct_tacs.ML to src/Tools/induct_tacs.ML;
 wenzelm parents: 
27212diff
changeset | 1575 | use "~~/src/Tools/induct_tacs.ML" | 
| 45133 | 1576 | setup Induct_Tacs.setup | 
| 27126 
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
 wenzelm parents: 
27107diff
changeset | 1577 | |
| 20944 | 1578 | |
| 28325 | 1579 | subsubsection {* Coherent logic *}
 | 
| 1580 | ||
| 1581 | ML {*
 | |
| 32734 | 1582 | structure Coherent = Coherent | 
| 28325 | 1583 | ( | 
| 1584 |   val atomize_elimL = @{thm atomize_elimL}
 | |
| 1585 |   val atomize_exL = @{thm atomize_exL}
 | |
| 1586 |   val atomize_conjL = @{thm atomize_conjL}
 | |
| 1587 |   val atomize_disjL = @{thm atomize_disjL}
 | |
| 1588 | val operator_names = | |
| 38795 
848be46708dc
formerly unnamed infix conjunction and disjunction now named HOL.conj and HOL.disj
 haftmann parents: 
38786diff
changeset | 1589 |     [@{const_name HOL.disj}, @{const_name HOL.conj}, @{const_name Ex}]
 | 
| 28325 | 1590 | ); | 
| 1591 | *} | |
| 1592 | ||
| 1593 | setup Coherent.setup | |
| 1594 | ||
| 1595 | ||
| 31024 
0fdf666e08bf
reimplement reorientation simproc using theory data
 huffman parents: 
30980diff
changeset | 1596 | subsubsection {* Reorienting equalities *}
 | 
| 
0fdf666e08bf
reimplement reorientation simproc using theory data
 huffman parents: 
30980diff
changeset | 1597 | |
| 
0fdf666e08bf
reimplement reorientation simproc using theory data
 huffman parents: 
30980diff
changeset | 1598 | ML {*
 | 
| 
0fdf666e08bf
reimplement reorientation simproc using theory data
 huffman parents: 
30980diff
changeset | 1599 | signature REORIENT_PROC = | 
| 
0fdf666e08bf
reimplement reorientation simproc using theory data
 huffman parents: 
30980diff
changeset | 1600 | sig | 
| 
0fdf666e08bf
reimplement reorientation simproc using theory data
 huffman parents: 
30980diff
changeset | 1601 | val add : (term -> bool) -> theory -> theory | 
| 
0fdf666e08bf
reimplement reorientation simproc using theory data
 huffman parents: 
30980diff
changeset | 1602 | val proc : morphism -> simpset -> cterm -> thm option | 
| 
0fdf666e08bf
reimplement reorientation simproc using theory data
 huffman parents: 
30980diff
changeset | 1603 | end; | 
| 
0fdf666e08bf
reimplement reorientation simproc using theory data
 huffman parents: 
30980diff
changeset | 1604 | |
| 33523 | 1605 | structure Reorient_Proc : REORIENT_PROC = | 
| 31024 
0fdf666e08bf
reimplement reorientation simproc using theory data
 huffman parents: 
30980diff
changeset | 1606 | struct | 
| 33523 | 1607 | structure Data = Theory_Data | 
| 31024 
0fdf666e08bf
reimplement reorientation simproc using theory data
 huffman parents: 
30980diff
changeset | 1608 | ( | 
| 33523 | 1609 | type T = ((term -> bool) * stamp) list; | 
| 1610 | val empty = []; | |
| 31024 
0fdf666e08bf
reimplement reorientation simproc using theory data
 huffman parents: 
30980diff
changeset | 1611 | val extend = I; | 
| 33523 | 1612 | fun merge data : T = Library.merge (eq_snd op =) data; | 
| 1613 | ); | |
| 1614 | fun add m = Data.map (cons (m, stamp ())); | |
| 1615 | fun matches thy t = exists (fn (m, _) => m t) (Data.get thy); | |
| 31024 
0fdf666e08bf
reimplement reorientation simproc using theory data
 huffman parents: 
30980diff
changeset | 1616 | |
| 
0fdf666e08bf
reimplement reorientation simproc using theory data
 huffman parents: 
30980diff
changeset | 1617 |   val meta_reorient = @{thm eq_commute [THEN eq_reflection]};
 | 
| 
0fdf666e08bf
reimplement reorientation simproc using theory data
 huffman parents: 
30980diff
changeset | 1618 | fun proc phi ss ct = | 
| 
0fdf666e08bf
reimplement reorientation simproc using theory data
 huffman parents: 
30980diff
changeset | 1619 | let | 
| 
0fdf666e08bf
reimplement reorientation simproc using theory data
 huffman parents: 
30980diff
changeset | 1620 | val ctxt = Simplifier.the_context ss; | 
| 42361 | 1621 | val thy = Proof_Context.theory_of ctxt; | 
| 31024 
0fdf666e08bf
reimplement reorientation simproc using theory data
 huffman parents: 
30980diff
changeset | 1622 | in | 
| 
0fdf666e08bf
reimplement reorientation simproc using theory data
 huffman parents: 
30980diff
changeset | 1623 | case Thm.term_of ct of | 
| 33523 | 1624 | (_ $ t $ u) => if matches thy u then NONE else SOME meta_reorient | 
| 31024 
0fdf666e08bf
reimplement reorientation simproc using theory data
 huffman parents: 
30980diff
changeset | 1625 | | _ => NONE | 
| 
0fdf666e08bf
reimplement reorientation simproc using theory data
 huffman parents: 
30980diff
changeset | 1626 | end; | 
| 
0fdf666e08bf
reimplement reorientation simproc using theory data
 huffman parents: 
30980diff
changeset | 1627 | end; | 
| 
0fdf666e08bf
reimplement reorientation simproc using theory data
 huffman parents: 
30980diff
changeset | 1628 | *} | 
| 
0fdf666e08bf
reimplement reorientation simproc using theory data
 huffman parents: 
30980diff
changeset | 1629 | |
| 
0fdf666e08bf
reimplement reorientation simproc using theory data
 huffman parents: 
30980diff
changeset | 1630 | |
| 20944 | 1631 | subsection {* Other simple lemmas and lemma duplicates *}
 | 
| 1632 | ||
| 1633 | lemma ex1_eq [iff]: "EX! x. x = t" "EX! x. t = x" | |
| 1634 | by blast+ | |
| 1635 | ||
| 1636 | lemma choice_eq: "(ALL x. EX! y. P x y) = (EX! f. ALL x. P x (f x))" | |
| 1637 | apply (rule iffI) | |
| 1638 | apply (rule_tac a = "%x. THE y. P x y" in ex1I) | |
| 1639 | apply (fast dest!: theI') | |
| 44921 | 1640 | apply (fast intro: the1_equality [symmetric]) | 
| 20944 | 1641 | apply (erule ex1E) | 
| 1642 | apply (rule allI) | |
| 1643 | apply (rule ex1I) | |
| 1644 | apply (erule spec) | |
| 1645 | apply (erule_tac x = "%z. if z = x then y else f z" in allE) | |
| 1646 | apply (erule impE) | |
| 1647 | apply (rule allI) | |
| 27126 
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
 wenzelm parents: 
27107diff
changeset | 1648 | apply (case_tac "xa = x") | 
| 20944 | 1649 | apply (drule_tac [3] x = x in fun_cong, simp_all) | 
| 1650 | done | |
| 1651 | ||
| 22218 | 1652 | lemmas eq_sym_conv = eq_commute | 
| 1653 | ||
| 23037 
6c72943a71b1
added a set of NNF normalization lemmas and nnf_conv
 chaieb parents: 
22993diff
changeset | 1654 | lemma nnf_simps: | 
| 
6c72943a71b1
added a set of NNF normalization lemmas and nnf_conv
 chaieb parents: 
22993diff
changeset | 1655 | "(\<not>(P \<and> Q)) = (\<not> P \<or> \<not> Q)" "(\<not> (P \<or> Q)) = (\<not> P \<and> \<not>Q)" "(P \<longrightarrow> Q) = (\<not>P \<or> Q)" | 
| 
6c72943a71b1
added a set of NNF normalization lemmas and nnf_conv
 chaieb parents: 
22993diff
changeset | 1656 | "(P = Q) = ((P \<and> Q) \<or> (\<not>P \<and> \<not> Q))" "(\<not>(P = Q)) = ((P \<and> \<not> Q) \<or> (\<not>P \<and> Q))" | 
| 
6c72943a71b1
added a set of NNF normalization lemmas and nnf_conv
 chaieb parents: 
22993diff
changeset | 1657 | "(\<not> \<not>(P)) = P" | 
| 
6c72943a71b1
added a set of NNF normalization lemmas and nnf_conv
 chaieb parents: 
22993diff
changeset | 1658 | by blast+ | 
| 
6c72943a71b1
added a set of NNF normalization lemmas and nnf_conv
 chaieb parents: 
22993diff
changeset | 1659 | |
| 21671 | 1660 | subsection {* Basic ML bindings *}
 | 
| 1661 | ||
| 1662 | ML {*
 | |
| 22129 | 1663 | val FalseE = @{thm FalseE}
 | 
| 1664 | val Let_def = @{thm Let_def}
 | |
| 1665 | val TrueI = @{thm TrueI}
 | |
| 1666 | val allE = @{thm allE}
 | |
| 1667 | val allI = @{thm allI}
 | |
| 1668 | val all_dupE = @{thm all_dupE}
 | |
| 1669 | val arg_cong = @{thm arg_cong}
 | |
| 1670 | val box_equals = @{thm box_equals}
 | |
| 1671 | val ccontr = @{thm ccontr}
 | |
| 1672 | val classical = @{thm classical}
 | |
| 1673 | val conjE = @{thm conjE}
 | |
| 1674 | val conjI = @{thm conjI}
 | |
| 1675 | val conjunct1 = @{thm conjunct1}
 | |
| 1676 | val conjunct2 = @{thm conjunct2}
 | |
| 1677 | val disjCI = @{thm disjCI}
 | |
| 1678 | val disjE = @{thm disjE}
 | |
| 1679 | val disjI1 = @{thm disjI1}
 | |
| 1680 | val disjI2 = @{thm disjI2}
 | |
| 1681 | val eq_reflection = @{thm eq_reflection}
 | |
| 1682 | val ex1E = @{thm ex1E}
 | |
| 1683 | val ex1I = @{thm ex1I}
 | |
| 1684 | val ex1_implies_ex = @{thm ex1_implies_ex}
 | |
| 1685 | val exE = @{thm exE}
 | |
| 1686 | val exI = @{thm exI}
 | |
| 1687 | val excluded_middle = @{thm excluded_middle}
 | |
| 1688 | val ext = @{thm ext}
 | |
| 1689 | val fun_cong = @{thm fun_cong}
 | |
| 1690 | val iffD1 = @{thm iffD1}
 | |
| 1691 | val iffD2 = @{thm iffD2}
 | |
| 1692 | val iffI = @{thm iffI}
 | |
| 1693 | val impE = @{thm impE}
 | |
| 1694 | val impI = @{thm impI}
 | |
| 1695 | val meta_eq_to_obj_eq = @{thm meta_eq_to_obj_eq}
 | |
| 1696 | val mp = @{thm mp}
 | |
| 1697 | val notE = @{thm notE}
 | |
| 1698 | val notI = @{thm notI}
 | |
| 1699 | val not_all = @{thm not_all}
 | |
| 1700 | val not_ex = @{thm not_ex}
 | |
| 1701 | val not_iff = @{thm not_iff}
 | |
| 1702 | val not_not = @{thm not_not}
 | |
| 1703 | val not_sym = @{thm not_sym}
 | |
| 1704 | val refl = @{thm refl}
 | |
| 1705 | val rev_mp = @{thm rev_mp}
 | |
| 1706 | val spec = @{thm spec}
 | |
| 1707 | val ssubst = @{thm ssubst}
 | |
| 1708 | val subst = @{thm subst}
 | |
| 1709 | val sym = @{thm sym}
 | |
| 1710 | val trans = @{thm trans}
 | |
| 21671 | 1711 | *} | 
| 1712 | ||
| 39036 
dff91b90d74c
use definitional CNFs in Metis rather than plain CNF, following a suggestion by Joe Hurd;
 blanchet parents: 
39014diff
changeset | 1713 | use "Tools/cnf_funcs.ML" | 
| 21671 | 1714 | |
| 30929 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1715 | subsection {* Code generator setup *}
 | 
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1716 | |
| 31151 | 1717 | subsubsection {* Generic code generator preprocessor setup *}
 | 
| 1718 | ||
| 1719 | setup {*
 | |
| 1720 | Code_Preproc.map_pre (K HOL_basic_ss) | |
| 1721 | #> Code_Preproc.map_post (K HOL_basic_ss) | |
| 37442 | 1722 | #> Code_Simp.map_ss (K HOL_basic_ss) | 
| 31151 | 1723 | *} | 
| 1724 | ||
| 30929 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1725 | subsubsection {* Equality *}
 | 
| 24844 
98c006a30218
certificates for code generator case expressions
 haftmann parents: 
24842diff
changeset | 1726 | |
| 38857 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
38795diff
changeset | 1727 | class equal = | 
| 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
38795diff
changeset | 1728 | fixes equal :: "'a \<Rightarrow> 'a \<Rightarrow> bool" | 
| 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
38795diff
changeset | 1729 | assumes equal_eq: "equal x y \<longleftrightarrow> x = y" | 
| 26513 | 1730 | begin | 
| 1731 | ||
| 45231 
d85a2fdc586c
replacing code_inline by code_unfold, removing obsolete code_unfold, code_inline del now that the ancient code generator is removed
 bulwahn parents: 
45171diff
changeset | 1732 | lemma equal: "equal = (op =)" | 
| 38857 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
38795diff
changeset | 1733 | by (rule ext equal_eq)+ | 
| 28346 
b8390cd56b8f
discontinued special treatment of op = vs. eq_class.eq
 haftmann parents: 
28325diff
changeset | 1734 | |
| 38857 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
38795diff
changeset | 1735 | lemma equal_refl: "equal x x \<longleftrightarrow> True" | 
| 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
38795diff
changeset | 1736 | unfolding equal by rule+ | 
| 28346 
b8390cd56b8f
discontinued special treatment of op = vs. eq_class.eq
 haftmann parents: 
28325diff
changeset | 1737 | |
| 38857 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
38795diff
changeset | 1738 | lemma eq_equal: "(op =) \<equiv> equal" | 
| 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
38795diff
changeset | 1739 | by (rule eq_reflection) (rule ext, rule ext, rule sym, rule equal_eq) | 
| 30929 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1740 | |
| 26513 | 1741 | end | 
| 1742 | ||
| 38857 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
38795diff
changeset | 1743 | declare eq_equal [symmetric, code_post] | 
| 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
38795diff
changeset | 1744 | declare eq_equal [code] | 
| 30966 | 1745 | |
| 31151 | 1746 | setup {*
 | 
| 1747 | Code_Preproc.map_pre (fn simpset => | |
| 38864 
4abe644fcea5
formerly unnamed infix equality now named HOL.eq
 haftmann parents: 
38857diff
changeset | 1748 |     simpset addsimprocs [Simplifier.simproc_global_i @{theory} "equal" [@{term HOL.eq}]
 | 
| 40842 | 1749 | (fn thy => fn _ => | 
| 1750 |         fn Const (_, Type ("fun", [Type _, _])) => SOME @{thm eq_equal} | _ => NONE)])
 | |
| 31151 | 1751 | *} | 
| 1752 | ||
| 30966 | 1753 | |
| 30929 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1754 | subsubsection {* Generic code generator foundation *}
 | 
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1755 | |
| 39421 
b6a77cffc231
introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
 haftmann parents: 
39403diff
changeset | 1756 | text {* Datatype @{typ bool} *}
 | 
| 30929 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1757 | |
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1758 | code_datatype True False | 
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1759 | |
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1760 | lemma [code]: | 
| 33185 
247f6c6969d9
tuned code setup for primitive boolean connectors
 haftmann parents: 
33084diff
changeset | 1761 | shows "False \<and> P \<longleftrightarrow> False" | 
| 
247f6c6969d9
tuned code setup for primitive boolean connectors
 haftmann parents: 
33084diff
changeset | 1762 | and "True \<and> P \<longleftrightarrow> P" | 
| 
247f6c6969d9
tuned code setup for primitive boolean connectors
 haftmann parents: 
33084diff
changeset | 1763 | and "P \<and> False \<longleftrightarrow> False" | 
| 
247f6c6969d9
tuned code setup for primitive boolean connectors
 haftmann parents: 
33084diff
changeset | 1764 | and "P \<and> True \<longleftrightarrow> P" by simp_all | 
| 30929 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1765 | |
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1766 | lemma [code]: | 
| 33185 
247f6c6969d9
tuned code setup for primitive boolean connectors
 haftmann parents: 
33084diff
changeset | 1767 | shows "False \<or> P \<longleftrightarrow> P" | 
| 
247f6c6969d9
tuned code setup for primitive boolean connectors
 haftmann parents: 
33084diff
changeset | 1768 | and "True \<or> P \<longleftrightarrow> True" | 
| 
247f6c6969d9
tuned code setup for primitive boolean connectors
 haftmann parents: 
33084diff
changeset | 1769 | and "P \<or> False \<longleftrightarrow> P" | 
| 
247f6c6969d9
tuned code setup for primitive boolean connectors
 haftmann parents: 
33084diff
changeset | 1770 | and "P \<or> True \<longleftrightarrow> True" by simp_all | 
| 30929 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1771 | |
| 33185 
247f6c6969d9
tuned code setup for primitive boolean connectors
 haftmann parents: 
33084diff
changeset | 1772 | lemma [code]: | 
| 
247f6c6969d9
tuned code setup for primitive boolean connectors
 haftmann parents: 
33084diff
changeset | 1773 | shows "(False \<longrightarrow> P) \<longleftrightarrow> True" | 
| 
247f6c6969d9
tuned code setup for primitive boolean connectors
 haftmann parents: 
33084diff
changeset | 1774 | and "(True \<longrightarrow> P) \<longleftrightarrow> P" | 
| 
247f6c6969d9
tuned code setup for primitive boolean connectors
 haftmann parents: 
33084diff
changeset | 1775 | and "(P \<longrightarrow> False) \<longleftrightarrow> \<not> P" | 
| 
247f6c6969d9
tuned code setup for primitive boolean connectors
 haftmann parents: 
33084diff
changeset | 1776 | and "(P \<longrightarrow> True) \<longleftrightarrow> True" by simp_all | 
| 30929 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1777 | |
| 39421 
b6a77cffc231
introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
 haftmann parents: 
39403diff
changeset | 1778 | text {* More about @{typ prop} *}
 | 
| 
b6a77cffc231
introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
 haftmann parents: 
39403diff
changeset | 1779 | |
| 
b6a77cffc231
introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
 haftmann parents: 
39403diff
changeset | 1780 | lemma [code nbe]: | 
| 
b6a77cffc231
introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
 haftmann parents: 
39403diff
changeset | 1781 | shows "(True \<Longrightarrow> PROP Q) \<equiv> PROP Q" | 
| 
b6a77cffc231
introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
 haftmann parents: 
39403diff
changeset | 1782 | and "(PROP Q \<Longrightarrow> True) \<equiv> Trueprop True" | 
| 
b6a77cffc231
introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
 haftmann parents: 
39403diff
changeset | 1783 | and "(P \<Longrightarrow> R) \<equiv> Trueprop (P \<longrightarrow> R)" by (auto intro!: equal_intr_rule) | 
| 
b6a77cffc231
introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
 haftmann parents: 
39403diff
changeset | 1784 | |
| 
b6a77cffc231
introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
 haftmann parents: 
39403diff
changeset | 1785 | lemma Trueprop_code [code]: | 
| 
b6a77cffc231
introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
 haftmann parents: 
39403diff
changeset | 1786 | "Trueprop True \<equiv> Code_Generator.holds" | 
| 
b6a77cffc231
introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
 haftmann parents: 
39403diff
changeset | 1787 | by (auto intro!: equal_intr_rule holds) | 
| 
b6a77cffc231
introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
 haftmann parents: 
39403diff
changeset | 1788 | |
| 
b6a77cffc231
introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
 haftmann parents: 
39403diff
changeset | 1789 | declare Trueprop_code [symmetric, code_post] | 
| 
b6a77cffc231
introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
 haftmann parents: 
39403diff
changeset | 1790 | |
| 
b6a77cffc231
introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
 haftmann parents: 
39403diff
changeset | 1791 | text {* Equality *}
 | 
| 
b6a77cffc231
introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
 haftmann parents: 
39403diff
changeset | 1792 | |
| 
b6a77cffc231
introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
 haftmann parents: 
39403diff
changeset | 1793 | declare simp_thms(6) [code nbe] | 
| 
b6a77cffc231
introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
 haftmann parents: 
39403diff
changeset | 1794 | |
| 38857 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
38795diff
changeset | 1795 | instantiation itself :: (type) equal | 
| 31132 | 1796 | begin | 
| 1797 | ||
| 38857 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
38795diff
changeset | 1798 | definition equal_itself :: "'a itself \<Rightarrow> 'a itself \<Rightarrow> bool" where | 
| 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
38795diff
changeset | 1799 | "equal_itself x y \<longleftrightarrow> x = y" | 
| 31132 | 1800 | |
| 1801 | instance proof | |
| 38857 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
38795diff
changeset | 1802 | qed (fact equal_itself_def) | 
| 31132 | 1803 | |
| 1804 | end | |
| 1805 | ||
| 38857 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
38795diff
changeset | 1806 | lemma equal_itself_code [code]: | 
| 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
38795diff
changeset | 1807 |   "equal TYPE('a) TYPE('a) \<longleftrightarrow> True"
 | 
| 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
38795diff
changeset | 1808 | by (simp add: equal) | 
| 31132 | 1809 | |
| 30929 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1810 | setup {*
 | 
| 38857 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
38795diff
changeset | 1811 |   Sign.add_const_constraint (@{const_name equal}, SOME @{typ "'a\<Colon>type \<Rightarrow> 'a \<Rightarrow> bool"})
 | 
| 31956 
c3844c4d0c2c
more accurate certificates for constant aliasses
 haftmann parents: 
31902diff
changeset | 1812 | *} | 
| 
c3844c4d0c2c
more accurate certificates for constant aliasses
 haftmann parents: 
31902diff
changeset | 1813 | |
| 38857 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
38795diff
changeset | 1814 | lemma equal_alias_cert: "OFCLASS('a, equal_class) \<equiv> ((op = :: 'a \<Rightarrow> 'a \<Rightarrow> bool) \<equiv> equal)" (is "?ofclass \<equiv> ?equal")
 | 
| 31956 
c3844c4d0c2c
more accurate certificates for constant aliasses
 haftmann parents: 
31902diff
changeset | 1815 | proof | 
| 
c3844c4d0c2c
more accurate certificates for constant aliasses
 haftmann parents: 
31902diff
changeset | 1816 | assume "PROP ?ofclass" | 
| 38857 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
38795diff
changeset | 1817 | show "PROP ?equal" | 
| 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
38795diff
changeset | 1818 |     by (tactic {* ALLGOALS (rtac (Thm.unconstrainT @{thm eq_equal})) *})
 | 
| 31956 
c3844c4d0c2c
more accurate certificates for constant aliasses
 haftmann parents: 
31902diff
changeset | 1819 | (fact `PROP ?ofclass`) | 
| 
c3844c4d0c2c
more accurate certificates for constant aliasses
 haftmann parents: 
31902diff
changeset | 1820 | next | 
| 38857 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
38795diff
changeset | 1821 | assume "PROP ?equal" | 
| 31956 
c3844c4d0c2c
more accurate certificates for constant aliasses
 haftmann parents: 
31902diff
changeset | 1822 | show "PROP ?ofclass" proof | 
| 38857 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
38795diff
changeset | 1823 | qed (simp add: `PROP ?equal`) | 
| 31956 
c3844c4d0c2c
more accurate certificates for constant aliasses
 haftmann parents: 
31902diff
changeset | 1824 | qed | 
| 
c3844c4d0c2c
more accurate certificates for constant aliasses
 haftmann parents: 
31902diff
changeset | 1825 | |
| 
c3844c4d0c2c
more accurate certificates for constant aliasses
 haftmann parents: 
31902diff
changeset | 1826 | setup {*
 | 
| 38857 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
38795diff
changeset | 1827 |   Sign.add_const_constraint (@{const_name equal}, SOME @{typ "'a\<Colon>equal \<Rightarrow> 'a \<Rightarrow> bool"})
 | 
| 31956 
c3844c4d0c2c
more accurate certificates for constant aliasses
 haftmann parents: 
31902diff
changeset | 1828 | *} | 
| 
c3844c4d0c2c
more accurate certificates for constant aliasses
 haftmann parents: 
31902diff
changeset | 1829 | |
| 
c3844c4d0c2c
more accurate certificates for constant aliasses
 haftmann parents: 
31902diff
changeset | 1830 | setup {*
 | 
| 38857 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
38795diff
changeset | 1831 |   Nbe.add_const_alias @{thm equal_alias_cert}
 | 
| 30929 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1832 | *} | 
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1833 | |
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1834 | text {* Cases *}
 | 
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1835 | |
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1836 | lemma Let_case_cert: | 
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1837 | assumes "CASE \<equiv> (\<lambda>x. Let x f)" | 
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1838 | shows "CASE x \<equiv> f x" | 
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1839 | using assms by simp_all | 
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1840 | |
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1841 | setup {*
 | 
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1842 |   Code.add_case @{thm Let_case_cert}
 | 
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1843 |   #> Code.add_undefined @{const_name undefined}
 | 
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1844 | *} | 
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1845 | |
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1846 | code_abort undefined | 
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1847 | |
| 38972 | 1848 | |
| 30929 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1849 | subsubsection {* Generic code generator target languages *}
 | 
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1850 | |
| 38972 | 1851 | text {* type @{typ bool} *}
 | 
| 30929 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1852 | |
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1853 | code_type bool | 
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1854 | (SML "bool") | 
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1855 | (OCaml "bool") | 
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1856 | (Haskell "Bool") | 
| 34294 | 1857 | (Scala "Boolean") | 
| 30929 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1858 | |
| 42420 
8a09dfeb2cec
making the evaluation of HOL.implies lazy even in strict languages by mapping it to an if statement
 bulwahn parents: 
42361diff
changeset | 1859 | code_const True and False and Not and HOL.conj and HOL.disj and HOL.implies and If | 
| 30929 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1860 | (SML "true" and "false" and "not" | 
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1861 | and infixl 1 "andalso" and infixl 0 "orelse" | 
| 42420 
8a09dfeb2cec
making the evaluation of HOL.implies lazy even in strict languages by mapping it to an if statement
 bulwahn parents: 
42361diff
changeset | 1862 | and "!(if (_)/ then (_)/ else true)" | 
| 30929 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1863 | and "!(if (_)/ then (_)/ else (_))") | 
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1864 | (OCaml "true" and "false" and "not" | 
| 39715 | 1865 | and infixl 3 "&&" and infixl 2 "||" | 
| 42420 
8a09dfeb2cec
making the evaluation of HOL.implies lazy even in strict languages by mapping it to an if statement
 bulwahn parents: 
42361diff
changeset | 1866 | and "!(if (_)/ then (_)/ else true)" | 
| 30929 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1867 | and "!(if (_)/ then (_)/ else (_))") | 
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1868 | (Haskell "True" and "False" and "not" | 
| 42178 
b992c8e6394b
corrected infix precedence for boolean operators in Haskell
 haftmann parents: 
42057diff
changeset | 1869 | and infixr 3 "&&" and infixr 2 "||" | 
| 42420 
8a09dfeb2cec
making the evaluation of HOL.implies lazy even in strict languages by mapping it to an if statement
 bulwahn parents: 
42361diff
changeset | 1870 | and "!(if (_)/ then (_)/ else True)" | 
| 30929 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1871 | and "!(if (_)/ then (_)/ else (_))") | 
| 38773 
f9837065b5e8
prevent line breaks after Scala symbolic operators
 haftmann parents: 
38715diff
changeset | 1872 | (Scala "true" and "false" and "'! _" | 
| 34305 | 1873 | and infixl 3 "&&" and infixl 1 "||" | 
| 42420 
8a09dfeb2cec
making the evaluation of HOL.implies lazy even in strict languages by mapping it to an if statement
 bulwahn parents: 
42361diff
changeset | 1874 | and "!(if ((_))/ (_)/ else true)" | 
| 34305 | 1875 | and "!(if ((_))/ (_)/ else (_))") | 
| 34294 | 1876 | |
| 30929 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1877 | code_reserved SML | 
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1878 | bool true false not | 
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1879 | |
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1880 | code_reserved OCaml | 
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1881 | bool not | 
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1882 | |
| 34294 | 1883 | code_reserved Scala | 
| 1884 | Boolean | |
| 1885 | ||
| 39026 | 1886 | code_modulename SML Pure HOL | 
| 1887 | code_modulename OCaml Pure HOL | |
| 1888 | code_modulename Haskell Pure HOL | |
| 1889 | ||
| 30929 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1890 | text {* using built-in Haskell equality *}
 | 
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1891 | |
| 38857 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
38795diff
changeset | 1892 | code_class equal | 
| 30929 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1893 | (Haskell "Eq") | 
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1894 | |
| 38857 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
38795diff
changeset | 1895 | code_const "HOL.equal" | 
| 39272 | 1896 | (Haskell infix 4 "==") | 
| 30929 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1897 | |
| 38864 
4abe644fcea5
formerly unnamed infix equality now named HOL.eq
 haftmann parents: 
38857diff
changeset | 1898 | code_const HOL.eq | 
| 39272 | 1899 | (Haskell infix 4 "==") | 
| 30929 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1900 | |
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1901 | text {* undefined *}
 | 
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1902 | |
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1903 | code_const undefined | 
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1904 | (SML "!(raise/ Fail/ \"undefined\")") | 
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1905 | (OCaml "failwith/ \"undefined\"") | 
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1906 | (Haskell "error/ \"undefined\"") | 
| 34886 | 1907 | (Scala "!error(\"undefined\")") | 
| 30929 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1908 | |
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1909 | subsubsection {* Evaluation and normalization by evaluation *}
 | 
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1910 | |
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1911 | ML {*
 | 
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1912 | fun gen_eval_method conv ctxt = SIMPLE_METHOD' | 
| 42426 | 1913 | (CONVERSION (Conv.params_conv ~1 (K (Conv.concl_conv ~1 (conv ctxt))) ctxt) | 
| 30929 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1914 | THEN' rtac TrueI) | 
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1915 | *} | 
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1916 | |
| 42426 | 1917 | method_setup eval = {*
 | 
| 1918 | Scan.succeed (gen_eval_method (Code_Runtime.dynamic_holds_conv o Proof_Context.theory_of)) | |
| 1919 | *} "solve goal by evaluation" | |
| 30929 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1920 | |
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1921 | method_setup normalization = {*
 | 
| 41247 | 1922 | Scan.succeed (fn ctxt => SIMPLE_METHOD' | 
| 42361 | 1923 | (CHANGED_PROP o (CONVERSION (Nbe.dynamic_conv (Proof_Context.theory_of ctxt)) | 
| 41247 | 1924 | THEN' (fn k => TRY (rtac TrueI k))))) | 
| 30929 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1925 | *} "solve goal by normalization" | 
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1926 | |
| 31902 | 1927 | |
| 33084 | 1928 | subsection {* Counterexample Search Units *}
 | 
| 1929 | ||
| 30929 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1930 | subsubsection {* Quickcheck *}
 | 
| 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1931 | |
| 33084 | 1932 | quickcheck_params [size = 5, iterations = 50] | 
| 1933 | ||
| 30929 
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
 haftmann parents: 
30927diff
changeset | 1934 | |
| 33084 | 1935 | subsubsection {* Nitpick setup *}
 | 
| 30309 
188f0658af9f
Added a "nitpick_maybe" symbol, which is used by Nitpick. This will go away once Nitpick is part of HOL.
 blanchet parents: 
30254diff
changeset | 1936 | |
| 29863 
dadad1831e9d
Added "nitpick_const_simps" and "nitpick_ind_intros" attributes for theorems;
 blanchet parents: 
29608diff
changeset | 1937 | ML {*
 | 
| 41792 
ff3cb0c418b7
renamed "nitpick\_def" to "nitpick_unfold" to reflect its new semantics
 blanchet parents: 
41636diff
changeset | 1938 | structure Nitpick_Unfolds = Named_Thms | 
| 30254 
7b8afdfa2f83
Second try at adding "nitpick_const_def" attribute.
 blanchet parents: 
30242diff
changeset | 1939 | ( | 
| 45294 | 1940 |   val name = @{binding nitpick_unfold}
 | 
| 30254 
7b8afdfa2f83
Second try at adding "nitpick_const_def" attribute.
 blanchet parents: 
30242diff
changeset | 1941 | val description = "alternative definitions of constants as needed by Nitpick" | 
| 
7b8afdfa2f83
Second try at adding "nitpick_const_def" attribute.
 blanchet parents: 
30242diff
changeset | 1942 | ) | 
| 33056 
791a4655cae3
renamed "nitpick_const_xxx" attributes to "nitpick_xxx" and "nitpick_ind_intros" to "nitpick_intros"
 blanchet parents: 
33022diff
changeset | 1943 | structure Nitpick_Simps = Named_Thms | 
| 29863 
dadad1831e9d
Added "nitpick_const_simps" and "nitpick_ind_intros" attributes for theorems;
 blanchet parents: 
29608diff
changeset | 1944 | ( | 
| 45294 | 1945 |   val name = @{binding nitpick_simp}
 | 
| 29869 
a7a8b90cd882
Renamed descriptions of Nitpick (and ATP) attributes, so that they fit well with the rest of the sentence in ProofGeneral.
 blanchet parents: 
29868diff
changeset | 1946 | val description = "equational specification of constants as needed by Nitpick" | 
| 29863 
dadad1831e9d
Added "nitpick_const_simps" and "nitpick_ind_intros" attributes for theorems;
 blanchet parents: 
29608diff
changeset | 1947 | ) | 
| 33056 
791a4655cae3
renamed "nitpick_const_xxx" attributes to "nitpick_xxx" and "nitpick_ind_intros" to "nitpick_intros"
 blanchet parents: 
33022diff
changeset | 1948 | structure Nitpick_Psimps = Named_Thms | 
| 29863 
dadad1831e9d
Added "nitpick_const_simps" and "nitpick_ind_intros" attributes for theorems;
 blanchet parents: 
29608diff
changeset | 1949 | ( | 
| 45294 | 1950 |   val name = @{binding nitpick_psimp}
 | 
| 29869 
a7a8b90cd882
Renamed descriptions of Nitpick (and ATP) attributes, so that they fit well with the rest of the sentence in ProofGeneral.
 blanchet parents: 
29868diff
changeset | 1951 | val description = "partial equational specification of constants as needed by Nitpick" | 
| 29863 
dadad1831e9d
Added "nitpick_const_simps" and "nitpick_ind_intros" attributes for theorems;
 blanchet parents: 
29608diff
changeset | 1952 | ) | 
| 35807 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35625diff
changeset | 1953 | structure Nitpick_Choice_Specs = Named_Thms | 
| 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35625diff
changeset | 1954 | ( | 
| 45294 | 1955 |   val name = @{binding nitpick_choice_spec}
 | 
| 35807 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35625diff
changeset | 1956 | val description = "choice specification of constants as needed by Nitpick" | 
| 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35625diff
changeset | 1957 | ) | 
| 29863 
dadad1831e9d
Added "nitpick_const_simps" and "nitpick_ind_intros" attributes for theorems;
 blanchet parents: 
29608diff
changeset | 1958 | *} | 
| 30980 | 1959 | |
| 1960 | setup {*
 | |
| 41792 
ff3cb0c418b7
renamed "nitpick\_def" to "nitpick_unfold" to reflect its new semantics
 blanchet parents: 
41636diff
changeset | 1961 | Nitpick_Unfolds.setup | 
| 33056 
791a4655cae3
renamed "nitpick_const_xxx" attributes to "nitpick_xxx" and "nitpick_ind_intros" to "nitpick_intros"
 blanchet parents: 
33022diff
changeset | 1962 | #> Nitpick_Simps.setup | 
| 
791a4655cae3
renamed "nitpick_const_xxx" attributes to "nitpick_xxx" and "nitpick_ind_intros" to "nitpick_intros"
 blanchet parents: 
33022diff
changeset | 1963 | #> Nitpick_Psimps.setup | 
| 35807 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35625diff
changeset | 1964 | #> Nitpick_Choice_Specs.setup | 
| 30980 | 1965 | *} | 
| 1966 | ||
| 41792 
ff3cb0c418b7
renamed "nitpick\_def" to "nitpick_unfold" to reflect its new semantics
 blanchet parents: 
41636diff
changeset | 1967 | declare if_bool_eq_conj [nitpick_unfold, no_atp] | 
| 
ff3cb0c418b7
renamed "nitpick\_def" to "nitpick_unfold" to reflect its new semantics
 blanchet parents: 
41636diff
changeset | 1968 | if_bool_eq_disj [no_atp] | 
| 
ff3cb0c418b7
renamed "nitpick\_def" to "nitpick_unfold" to reflect its new semantics
 blanchet parents: 
41636diff
changeset | 1969 | |
| 29863 
dadad1831e9d
Added "nitpick_const_simps" and "nitpick_ind_intros" attributes for theorems;
 blanchet parents: 
29608diff
changeset | 1970 | |
| 33084 | 1971 | subsection {* Preprocessing for the predicate compiler *}
 | 
| 1972 | ||
| 1973 | ML {*
 | |
| 1974 | structure Predicate_Compile_Alternative_Defs = Named_Thms | |
| 1975 | ( | |
| 45294 | 1976 |   val name = @{binding code_pred_def}
 | 
| 33084 | 1977 | val description = "alternative definitions of constants for the Predicate Compiler" | 
| 1978 | ) | |
| 1979 | structure Predicate_Compile_Inline_Defs = Named_Thms | |
| 1980 | ( | |
| 45294 | 1981 |   val name = @{binding code_pred_inline}
 | 
| 33084 | 1982 | val description = "inlining definitions for the Predicate Compiler" | 
| 1983 | ) | |
| 36246 
43fecedff8cf
added peephole optimisations to the predicate compiler; added structure Predicate_Compile_Simps for peephole optimisations
 bulwahn parents: 
36176diff
changeset | 1984 | structure Predicate_Compile_Simps = Named_Thms | 
| 
43fecedff8cf
added peephole optimisations to the predicate compiler; added structure Predicate_Compile_Simps for peephole optimisations
 bulwahn parents: 
36176diff
changeset | 1985 | ( | 
| 45294 | 1986 |   val name = @{binding code_pred_simp}
 | 
| 36246 
43fecedff8cf
added peephole optimisations to the predicate compiler; added structure Predicate_Compile_Simps for peephole optimisations
 bulwahn parents: 
36176diff
changeset | 1987 | val description = "simplification rules for the optimisations in the Predicate Compiler" | 
| 
43fecedff8cf
added peephole optimisations to the predicate compiler; added structure Predicate_Compile_Simps for peephole optimisations
 bulwahn parents: 
36176diff
changeset | 1988 | ) | 
| 33084 | 1989 | *} | 
| 1990 | ||
| 1991 | setup {*
 | |
| 1992 | Predicate_Compile_Alternative_Defs.setup | |
| 1993 | #> Predicate_Compile_Inline_Defs.setup | |
| 36246 
43fecedff8cf
added peephole optimisations to the predicate compiler; added structure Predicate_Compile_Simps for peephole optimisations
 bulwahn parents: 
36176diff
changeset | 1994 | #> Predicate_Compile_Simps.setup | 
| 33084 | 1995 | *} | 
| 1996 | ||
| 1997 | ||
| 22839 | 1998 | subsection {* Legacy tactics and ML bindings *}
 | 
| 21671 | 1999 | |
| 2000 | ML {*
 | |
| 2001 | fun strip_tac i = REPEAT (resolve_tac [impI, allI] i); | |
| 2002 | ||
| 2003 | (* combination of (spec RS spec RS ...(j times) ... spec RS mp) *) | |
| 2004 | local | |
| 35364 | 2005 |   fun wrong_prem (Const (@{const_name All}, _) $ Abs (_, _, t)) = wrong_prem t
 | 
| 21671 | 2006 | | wrong_prem (Bound _) = true | 
| 2007 | | wrong_prem _ = false; | |
| 2008 | val filter_right = filter (not o wrong_prem o HOLogic.dest_Trueprop o hd o Thm.prems_of); | |
| 2009 | in | |
| 2010 | fun smp i = funpow i (fn m => filter_right ([spec] RL m)) ([mp]); | |
| 2011 | fun smp_tac j = EVERY'[dresolve_tac (smp j), atac]; | |
| 2012 | end; | |
| 22839 | 2013 | |
| 39159 | 2014 | val case_split = @{thm case_split};
 | 
| 2015 | val cong = @{thm cong};
 | |
| 2016 | val de_Morgan_conj = @{thm de_Morgan_conj};
 | |
| 2017 | val de_Morgan_disj = @{thm de_Morgan_disj};
 | |
| 2018 | val disj_assoc = @{thm disj_assoc};
 | |
| 2019 | val disj_comms = @{thms disj_comms};
 | |
| 2020 | val disj_cong = @{thm disj_cong};
 | |
| 2021 | val eq_ac = @{thms eq_ac};
 | |
| 2022 | val eq_cong2 = @{thm eq_cong2}
 | |
| 2023 | val Eq_FalseI = @{thm Eq_FalseI};
 | |
| 2024 | val Eq_TrueI = @{thm Eq_TrueI};
 | |
| 2025 | val Ex1_def = @{thm Ex1_def};
 | |
| 2026 | val ex_disj_distrib = @{thm ex_disj_distrib};
 | |
| 2027 | val ex_simps = @{thms ex_simps};
 | |
| 2028 | val if_cancel = @{thm if_cancel};
 | |
| 2029 | val if_eq_cancel = @{thm if_eq_cancel};
 | |
| 2030 | val if_False = @{thm if_False};
 | |
| 2031 | val iff_conv_conj_imp = @{thm iff_conv_conj_imp};
 | |
| 2032 | val iff = @{thm iff};
 | |
| 2033 | val if_splits = @{thms if_splits};
 | |
| 2034 | val if_True = @{thm if_True};
 | |
| 2035 | val if_weak_cong = @{thm if_weak_cong};
 | |
| 2036 | val imp_all = @{thm imp_all};
 | |
| 2037 | val imp_cong = @{thm imp_cong};
 | |
| 2038 | val imp_conjL = @{thm imp_conjL};
 | |
| 2039 | val imp_conjR = @{thm imp_conjR};
 | |
| 2040 | val imp_conv_disj = @{thm imp_conv_disj};
 | |
| 2041 | val split_if = @{thm split_if};
 | |
| 2042 | val the1_equality = @{thm the1_equality};
 | |
| 2043 | val theI = @{thm theI};
 | |
| 2044 | val theI' = @{thm theI'};
 | |
| 45654 | 2045 | val nnf_conv = Simplifier.rewrite (HOL_basic_ss addsimps @{thms simp_thms nnf_simps});
 | 
| 21671 | 2046 | *} | 
| 2047 | ||
| 38866 | 2048 | hide_const (open) eq equal | 
| 2049 | ||
| 14357 | 2050 | end |