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