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