author | wenzelm |
Mon, 23 Sep 2024 21:09:23 +0200 | |
changeset 80934 | 8e72f55295fd |
parent 80932 | 261cd8722677 |
child 80948 | 572970d15ab0 |
permissions | -rw-r--r-- |
923 | 1 |
(* Title: HOL/HOL.thy |
11750 | 2 |
Author: Tobias Nipkow, Markus Wenzel, and Larry Paulson |
3 |
*) |
|
923 | 4 |
|
60758 | 5 |
section \<open>The basis of Higher-Order Logic\<close> |
923 | 6 |
|
15131 | 7 |
theory HOL |
70853 | 8 |
imports Pure Tools.Code_Generator |
46950
d0181abdbdac
declare command keywords via theory header, including strict checking outside Pure;
wenzelm
parents:
46497
diff
changeset
|
9 |
keywords |
52432 | 10 |
"try" "solve_direct" "quickcheck" "print_coercions" "print_claset" |
11 |
"print_induct_rules" :: diag and |
|
47657
1ba213363d0c
moved modules with only vague relation to the code generator to theory HOL rather than theory Code_Generator
haftmann
parents:
46973
diff
changeset
|
12 |
"quickcheck_params" :: thy_decl |
71833
ff6f3b09b8b4
abbrevs for the Uniq quantifier; trying Sup_nat_def to allow zero (experimentally)
paulson <lp15@cam.ac.uk>
parents:
71827
diff
changeset
|
13 |
abbrevs "?<" = "\<exists>\<^sub>\<le>\<^sub>1" |
15131 | 14 |
begin |
2260 | 15 |
|
69605 | 16 |
ML_file \<open>~~/src/Tools/misc_legacy.ML\<close> |
17 |
ML_file \<open>~~/src/Tools/try.ML\<close> |
|
18 |
ML_file \<open>~~/src/Tools/quickcheck.ML\<close> |
|
19 |
ML_file \<open>~~/src/Tools/solve_direct.ML\<close> |
|
20 |
ML_file \<open>~~/src/Tools/IsaPlanner/zipper.ML\<close> |
|
21 |
ML_file \<open>~~/src/Tools/IsaPlanner/isand.ML\<close> |
|
22 |
ML_file \<open>~~/src/Tools/IsaPlanner/rw_inst.ML\<close> |
|
23 |
ML_file \<open>~~/src/Provers/hypsubst.ML\<close> |
|
24 |
ML_file \<open>~~/src/Provers/splitter.ML\<close> |
|
25 |
ML_file \<open>~~/src/Provers/classical.ML\<close> |
|
26 |
ML_file \<open>~~/src/Provers/blast.ML\<close> |
|
27 |
ML_file \<open>~~/src/Provers/clasimp.ML\<close> |
|
28 |
ML_file \<open>~~/src/Tools/eqsubst.ML\<close> |
|
29 |
ML_file \<open>~~/src/Provers/quantifier1.ML\<close> |
|
30 |
ML_file \<open>~~/src/Tools/atomize_elim.ML\<close> |
|
31 |
ML_file \<open>~~/src/Tools/cong_tac.ML\<close> |
|
32 |
ML_file \<open>~~/src/Tools/intuitionistic.ML\<close> setup \<open>Intuitionistic.method_setup \<^binding>\<open>iprover\<close>\<close> |
|
33 |
ML_file \<open>~~/src/Tools/project_rule.ML\<close> |
|
34 |
ML_file \<open>~~/src/Tools/subtyping.ML\<close> |
|
35 |
ML_file \<open>~~/src/Tools/case_product.ML\<close> |
|
48891 | 36 |
|
30165
6ee87f67d9cd
moved generic intuitionistic prover to src/Tools/intuitionistic.ML;
wenzelm
parents:
30160
diff
changeset
|
37 |
|
67149 | 38 |
ML \<open>Plugin_Name.declare_setup \<^binding>\<open>extraction\<close>\<close> |
58659
6c9821c32dd5
Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents:
57964
diff
changeset
|
39 |
|
6c9821c32dd5
Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents:
57964
diff
changeset
|
40 |
ML \<open> |
67149 | 41 |
Plugin_Name.declare_setup \<^binding>\<open>quickcheck_random\<close>; |
42 |
Plugin_Name.declare_setup \<^binding>\<open>quickcheck_exhaustive\<close>; |
|
43 |
Plugin_Name.declare_setup \<^binding>\<open>quickcheck_bounded_forall\<close>; |
|
44 |
Plugin_Name.declare_setup \<^binding>\<open>quickcheck_full_exhaustive\<close>; |
|
45 |
Plugin_Name.declare_setup \<^binding>\<open>quickcheck_narrowing\<close>; |
|
58659
6c9821c32dd5
Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents:
57964
diff
changeset
|
46 |
\<close> |
6c9821c32dd5
Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents:
57964
diff
changeset
|
47 |
ML \<open> |
67149 | 48 |
Plugin_Name.define_setup \<^binding>\<open>quickcheck\<close> |
69593 | 49 |
[\<^plugin>\<open>quickcheck_exhaustive\<close>, |
50 |
\<^plugin>\<open>quickcheck_random\<close>, |
|
51 |
\<^plugin>\<open>quickcheck_bounded_forall\<close>, |
|
52 |
\<^plugin>\<open>quickcheck_full_exhaustive\<close>, |
|
53 |
\<^plugin>\<open>quickcheck_narrowing\<close>] |
|
58659
6c9821c32dd5
Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents:
57964
diff
changeset
|
54 |
\<close> |
6c9821c32dd5
Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents:
57964
diff
changeset
|
55 |
|
6c9821c32dd5
Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents:
57964
diff
changeset
|
56 |
|
60758 | 57 |
subsection \<open>Primitive logic\<close> |
11750 | 58 |
|
66893
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
59 |
text \<open> |
77172 | 60 |
The definition of the logic is based on Mike Gordon's technical report \<^cite>\<open>"Gordon-TR68"\<close> that |
66893
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
61 |
describes the first implementation of HOL. However, there are a number of differences. |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
62 |
In particular, we start with the definite description operator and introduce Hilbert's \<open>\<epsilon>\<close> operator |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
63 |
only much later. Moreover, axiom \<open>(P \<longrightarrow> Q) \<longrightarrow> (Q \<longrightarrow> P) \<longrightarrow> (P = Q)\<close> is derived from the other |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
64 |
axioms. The fact that this axiom is derivable was first noticed by Bruno Barras (for Mike Gordon's |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
65 |
line of HOL systems) and later independently by Alexander Maletzky (for Isabelle/HOL). |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
66 |
\<close> |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
67 |
|
60758 | 68 |
subsubsection \<open>Core syntax\<close> |
2260 | 69 |
|
67149 | 70 |
setup \<open>Axclass.class_axiomatization (\<^binding>\<open>type\<close>, [])\<close> |
36452 | 71 |
default_sort type |
69593 | 72 |
setup \<open>Object_Logic.add_base_sort \<^sort>\<open>type\<close>\<close> |
25460
b80087af2274
interpretation of typedecls: instantiation to class type
haftmann
parents:
25388
diff
changeset
|
73 |
|
70879 | 74 |
setup \<open>Proofterm.set_preproc (Proof_Rewrite_Rules.standard_preproc [])\<close> |
70849 | 75 |
|
55383 | 76 |
axiomatization where fun_arity: "OFCLASS('a \<Rightarrow> 'b, type_class)" |
77 |
instance "fun" :: (type, type) type by (rule fun_arity) |
|
78 |
||
79 |
axiomatization where itself_arity: "OFCLASS('a itself, type_class)" |
|
80 |
instance itself :: (type) type by (rule itself_arity) |
|
25460
b80087af2274
interpretation of typedecls: instantiation to class type
haftmann
parents:
25388
diff
changeset
|
81 |
|
7357 | 82 |
typedecl bool |
923 | 83 |
|
80934 | 84 |
judgment Trueprop :: "bool \<Rightarrow> prop" (\<open>(\<open>notation=judgment\<close>_)\<close> 5) |
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
85 |
|
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
86 |
axiomatization implies :: "[bool, bool] \<Rightarrow> bool" (infixr \<open>\<longrightarrow>\<close> 25) |
68973
a1e26440efb8
tuned "=" syntax declarations; made "~=" uniformly "infix"
nipkow
parents:
68072
diff
changeset
|
87 |
and eq :: "['a, 'a] \<Rightarrow> bool" |
62151 | 88 |
and The :: "('a \<Rightarrow> bool) \<Rightarrow> 'a" |
89 |
||
68973
a1e26440efb8
tuned "=" syntax declarations; made "~=" uniformly "infix"
nipkow
parents:
68072
diff
changeset
|
90 |
notation (input) |
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
91 |
eq (infixl \<open>=\<close> 50) |
68973
a1e26440efb8
tuned "=" syntax declarations; made "~=" uniformly "infix"
nipkow
parents:
68072
diff
changeset
|
92 |
notation (output) |
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
93 |
eq (infix \<open>=\<close> 50) |
68973
a1e26440efb8
tuned "=" syntax declarations; made "~=" uniformly "infix"
nipkow
parents:
68072
diff
changeset
|
94 |
|
a1e26440efb8
tuned "=" syntax declarations; made "~=" uniformly "infix"
nipkow
parents:
68072
diff
changeset
|
95 |
text \<open>The input syntax for \<open>eq\<close> is more permissive than the output syntax |
a1e26440efb8
tuned "=" syntax declarations; made "~=" uniformly "infix"
nipkow
parents:
68072
diff
changeset
|
96 |
because of the large amount of material that relies on infixl.\<close> |
923 | 97 |
|
62151 | 98 |
subsubsection \<open>Defined connectives and quantifiers\<close> |
99 |
||
100 |
definition True :: bool |
|
101 |
where "True \<equiv> ((\<lambda>x::bool. x) = (\<lambda>x. x))" |
|
102 |
||
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
103 |
definition All :: "('a \<Rightarrow> bool) \<Rightarrow> bool" (binder \<open>\<forall>\<close> 10) |
62151 | 104 |
where "All P \<equiv> (P = (\<lambda>x. True))" |
46973 | 105 |
|
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
106 |
definition Ex :: "('a \<Rightarrow> bool) \<Rightarrow> bool" (binder \<open>\<exists>\<close> 10) |
62151 | 107 |
where "Ex P \<equiv> \<forall>Q. (\<forall>x. P x \<longrightarrow> Q) \<longrightarrow> Q" |
108 |
||
109 |
definition False :: bool |
|
110 |
where "False \<equiv> (\<forall>P. P)" |
|
111 |
||
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
112 |
definition Not :: "bool \<Rightarrow> bool" (\<open>\<not> _\<close> [40] 40) |
62151 | 113 |
where not_def: "\<not> P \<equiv> P \<longrightarrow> False" |
38795
848be46708dc
formerly unnamed infix conjunction and disjunction now named HOL.conj and HOL.disj
haftmann
parents:
38786
diff
changeset
|
114 |
|
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
115 |
definition conj :: "[bool, bool] \<Rightarrow> bool" (infixr \<open>\<and>\<close> 35) |
62151 | 116 |
where and_def: "P \<and> Q \<equiv> \<forall>R. (P \<longrightarrow> Q \<longrightarrow> R) \<longrightarrow> R" |
38555 | 117 |
|
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
118 |
definition disj :: "[bool, bool] \<Rightarrow> bool" (infixr \<open>\<or>\<close> 30) |
62151 | 119 |
where or_def: "P \<or> Q \<equiv> \<forall>R. (P \<longrightarrow> R) \<longrightarrow> (Q \<longrightarrow> R) \<longrightarrow> R" |
120 |
||
71827 | 121 |
definition Uniq :: "('a \<Rightarrow> bool) \<Rightarrow> bool" |
122 |
where "Uniq P \<equiv> (\<forall>x y. P x \<longrightarrow> P y \<longrightarrow> y = x)" |
|
123 |
||
63909 | 124 |
definition Ex1 :: "('a \<Rightarrow> bool) \<Rightarrow> bool" |
62151 | 125 |
where "Ex1 P \<equiv> \<exists>x. P x \<and> (\<forall>y. P y \<longrightarrow> y = x)" |
923 | 126 |
|
19656
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents:
19607
diff
changeset
|
127 |
|
60758 | 128 |
subsubsection \<open>Additional concrete syntax\<close> |
2260 | 129 |
|
80934 | 130 |
syntax (ASCII) "_Uniq" :: "pttrn \<Rightarrow> bool \<Rightarrow> bool" (\<open>(\<open>indent=4 notation=\<open>binder ?<\<close>\<close>?< _./ _)\<close> [0, 10] 10) |
131 |
syntax "_Uniq" :: "pttrn \<Rightarrow> bool \<Rightarrow> bool" (\<open>(\<open>indent=2 notation=\<open>binder \<exists>\<^sub>\<le>\<^sub>1\<close>\<close>\<exists>\<^sub>\<le>\<^sub>1 _./ _)\<close> [0, 10] 10) |
|
80760 | 132 |
|
133 |
syntax_consts "_Uniq" \<rightleftharpoons> Uniq |
|
134 |
||
71827 | 135 |
translations "\<exists>\<^sub>\<le>\<^sub>1x. P" \<rightleftharpoons> "CONST Uniq (\<lambda>x. P)" |
136 |
||
137 |
print_translation \<open> |
|
138 |
[Syntax_Trans.preserve_binder_abs_tr' \<^const_syntax>\<open>Uniq\<close> \<^syntax_const>\<open>_Uniq\<close>] |
|
139 |
\<close> \<comment> \<open>to avoid eta-contraction of body\<close> |
|
140 |
||
141 |
||
63909 | 142 |
syntax (ASCII) |
80934 | 143 |
"_Ex1" :: "pttrn \<Rightarrow> bool \<Rightarrow> bool" (\<open>(\<open>indent=3 notation=\<open>binder EX!\<close>\<close>EX! _./ _)\<close> [0, 10] 10) |
63909 | 144 |
syntax (input) |
80934 | 145 |
"_Ex1" :: "pttrn \<Rightarrow> bool \<Rightarrow> bool" (\<open>(\<open>indent=3 notation=\<open>binder ?!\<close>\<close>?! _./ _)\<close> [0, 10] 10) |
146 |
syntax "_Ex1" :: "pttrn \<Rightarrow> bool \<Rightarrow> bool" (\<open>(\<open>indent=3 notation=\<open>binder \<exists>!\<close>\<close>\<exists>!_./ _)\<close> [0, 10] 10) |
|
80760 | 147 |
|
148 |
syntax_consts "_Ex1" \<rightleftharpoons> Ex1 |
|
149 |
||
63909 | 150 |
translations "\<exists>!x. P" \<rightleftharpoons> "CONST Ex1 (\<lambda>x. P)" |
151 |
||
152 |
print_translation \<open> |
|
69593 | 153 |
[Syntax_Trans.preserve_binder_abs_tr' \<^const_syntax>\<open>Ex1\<close> \<^syntax_const>\<open>_Ex1\<close>] |
63909 | 154 |
\<close> \<comment> \<open>to avoid eta-contraction of body\<close> |
155 |
||
156 |
||
63912
9f8325206465
clarified notation: iterated quantifier is negated as one chunk;
wenzelm
parents:
63909
diff
changeset
|
157 |
syntax |
80934 | 158 |
"_Not_Ex" :: "idts \<Rightarrow> bool \<Rightarrow> bool" (\<open>(\<open>indent=3 notation=\<open>binder \<nexists>\<close>\<close>\<nexists>_./ _)\<close> [0, 10] 10) |
159 |
"_Not_Ex1" :: "pttrn \<Rightarrow> bool \<Rightarrow> bool" (\<open>(\<open>indent=3 notation=\<open>binder \<nexists>!\<close>\<close>\<nexists>!_./ _)\<close> [0, 10] 10) |
|
80760 | 160 |
syntax_consts |
161 |
"_Not_Ex" \<rightleftharpoons> Ex and |
|
162 |
"_Not_Ex1" \<rightleftharpoons> Ex1 |
|
63912
9f8325206465
clarified notation: iterated quantifier is negated as one chunk;
wenzelm
parents:
63909
diff
changeset
|
163 |
translations |
9f8325206465
clarified notation: iterated quantifier is negated as one chunk;
wenzelm
parents:
63909
diff
changeset
|
164 |
"\<nexists>x. P" \<rightleftharpoons> "\<not> (\<exists>x. P)" |
9f8325206465
clarified notation: iterated quantifier is negated as one chunk;
wenzelm
parents:
63909
diff
changeset
|
165 |
"\<nexists>!x. P" \<rightleftharpoons> "\<not> (\<exists>!x. P)" |
62522 | 166 |
|
167 |
||
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
168 |
abbreviation not_equal :: "['a, 'a] \<Rightarrow> bool" (infix \<open>\<noteq>\<close> 50) |
61955
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61941
diff
changeset
|
169 |
where "x \<noteq> y \<equiv> \<not> (x = y)" |
19656
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents:
19607
diff
changeset
|
170 |
|
61955
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61941
diff
changeset
|
171 |
notation (ASCII) |
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
172 |
Not (\<open>~ _\<close> [40] 40) and |
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
173 |
conj (infixr \<open>&\<close> 35) and |
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
174 |
disj (infixr \<open>|\<close> 30) and |
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
175 |
implies (infixr \<open>-->\<close> 25) and |
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
176 |
not_equal (infix \<open>~=\<close> 50) |
19656
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents:
19607
diff
changeset
|
177 |
|
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents:
19607
diff
changeset
|
178 |
abbreviation (iff) |
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
179 |
iff :: "[bool, bool] \<Rightarrow> bool" (infixr \<open>\<longleftrightarrow>\<close> 25) |
61955
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61941
diff
changeset
|
180 |
where "A \<longleftrightarrow> B \<equiv> A = B" |
19656
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents:
19607
diff
changeset
|
181 |
|
80934 | 182 |
syntax "_The" :: "[pttrn, bool] \<Rightarrow> 'a" (\<open>(\<open>indent=3 notation=\<open>binder THE\<close>\<close>THE _./ _)\<close> [0, 10] 10) |
80760 | 183 |
syntax_consts "_The" \<rightleftharpoons> The |
60759 | 184 |
translations "THE x. P" \<rightleftharpoons> "CONST The (\<lambda>x. P)" |
60758 | 185 |
print_translation \<open> |
69593 | 186 |
[(\<^const_syntax>\<open>The\<close>, fn _ => fn [Abs abs] => |
46125
00cd193a48dc
improved case syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents:
45654
diff
changeset
|
187 |
let val (x, t) = Syntax_Trans.atomic_abs_tr' abs |
69593 | 188 |
in Syntax.const \<^syntax_const>\<open>_The\<close> $ x $ t end)] |
61799 | 189 |
\<close> \<comment> \<open>To avoid eta-contraction of body\<close> |
923 | 190 |
|
46125
00cd193a48dc
improved case syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents:
45654
diff
changeset
|
191 |
nonterminal case_syn and cases_syn |
00cd193a48dc
improved case syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents:
45654
diff
changeset
|
192 |
syntax |
80934 | 193 |
"_case_syntax" :: "['a, cases_syn] \<Rightarrow> 'b" (\<open>(\<open>notation=\<open>mixfix case expression\<close>\<close>case _ of/ _)\<close> 10) |
194 |
"_case1" :: "['a, 'b] \<Rightarrow> case_syn" (\<open>(\<open>indent=2 notation=\<open>mixfix case pattern\<close>\<close>_ \<Rightarrow>/ _)\<close> 10) |
|
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
195 |
"" :: "case_syn \<Rightarrow> cases_syn" (\<open>_\<close>) |
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
196 |
"_case2" :: "[case_syn, cases_syn] \<Rightarrow> cases_syn" (\<open>_/ | _\<close>) |
61955
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61941
diff
changeset
|
197 |
syntax (ASCII) |
80934 | 198 |
"_case1" :: "['a, 'b] \<Rightarrow> case_syn" (\<open>(\<open>indent=2 notation=\<open>mixfix case pattern\<close>\<close>_ =>/ _)\<close> 10) |
13763
f94b569cd610
added print translations tha avoid eta contraction for important binders.
nipkow
parents:
13723
diff
changeset
|
199 |
|
61955
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61941
diff
changeset
|
200 |
notation (ASCII) |
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
201 |
All (binder \<open>ALL \<close> 10) and |
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
202 |
Ex (binder \<open>EX \<close> 10) |
2372 | 203 |
|
62521 | 204 |
notation (input) |
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
205 |
All (binder \<open>! \<close> 10) and |
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
206 |
Ex (binder \<open>? \<close> 10) |
7238
36e58620ffc8
replaced HOL_quantifiers flag by "HOL" print mode;
wenzelm
parents:
7220
diff
changeset
|
207 |
|
36e58620ffc8
replaced HOL_quantifiers flag by "HOL" print mode;
wenzelm
parents:
7220
diff
changeset
|
208 |
|
60758 | 209 |
subsubsection \<open>Axioms and basic definitions\<close> |
2260 | 210 |
|
46973 | 211 |
axiomatization where |
212 |
refl: "t = (t::'a)" and |
|
213 |
subst: "s = t \<Longrightarrow> P s \<Longrightarrow> P t" and |
|
60759 | 214 |
ext: "(\<And>x::'a. (f x ::'b) = g x) \<Longrightarrow> (\<lambda>x. f x) = (\<lambda>x. g x)" |
61799 | 215 |
\<comment> \<open>Extensionality is built into the meta-logic, and this rule expresses |
15380 | 216 |
a related property. It is an eta-expanded version of the traditional |
60758 | 217 |
rule, and similar to the ABS rule of HOL\<close> and |
6289 | 218 |
|
11432
8a203ae6efe3
added "The" (definite description operator) (by Larry);
wenzelm
parents:
10489
diff
changeset
|
219 |
the_eq_trivial: "(THE x. x = a) = (a::'a)" |
923 | 220 |
|
46973 | 221 |
axiomatization where |
60759 | 222 |
impI: "(P \<Longrightarrow> Q) \<Longrightarrow> P \<longrightarrow> Q" and |
223 |
mp: "\<lbrakk>P \<longrightarrow> Q; P\<rbrakk> \<Longrightarrow> Q" and |
|
15380 | 224 |
|
60759 | 225 |
True_or_False: "(P = True) \<or> (P = False)" |
15380 | 226 |
|
80934 | 227 |
definition If :: "bool \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> 'a" (\<open>(\<open>notation=\<open>mixfix if expression\<close>\<close>if (_)/ then (_)/ else (_))\<close> [0, 0, 10] 10) |
60759 | 228 |
where "If P x y \<equiv> (THE z::'a. (P = True \<longrightarrow> z = x) \<and> (P = False \<longrightarrow> z = y))" |
923 | 229 |
|
46973 | 230 |
definition Let :: "'a \<Rightarrow> ('a \<Rightarrow> 'b) \<Rightarrow> 'b" |
231 |
where "Let s f \<equiv> f s" |
|
38525 | 232 |
|
80762 | 233 |
nonterminal letbinds and letbind |
234 |
syntax |
|
80934 | 235 |
"_bind" :: "[pttrn, 'a] \<Rightarrow> letbind" (\<open>(\<open>indent=2 notation=\<open>mixfix let binding\<close>\<close>_ =/ _)\<close> 10) |
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
236 |
"" :: "letbind \<Rightarrow> letbinds" (\<open>_\<close>) |
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
237 |
"_binds" :: "[letbind, letbinds] \<Rightarrow> letbinds" (\<open>_;/ _\<close>) |
80934 | 238 |
"_Let" :: "[letbinds, 'a] \<Rightarrow> 'a" (\<open>(\<open>notation=\<open>mixfix let expression\<close>\<close>let (_)/ in (_))\<close> [0, 10] 10) |
80760 | 239 |
syntax_consts |
240 |
"_bind" "_binds" "_Let" \<rightleftharpoons> Let |
|
38525 | 241 |
translations |
60759 | 242 |
"_Let (_binds b bs) e" \<rightleftharpoons> "_Let b (_Let bs e)" |
243 |
"let x = a in e" \<rightleftharpoons> "CONST Let a (\<lambda>x. e)" |
|
38525 | 244 |
|
46973 | 245 |
axiomatization undefined :: 'a |
22481
79c2724c36b5
added class "default" and expansion axioms for undefined
haftmann
parents:
22473
diff
changeset
|
246 |
|
46973 | 247 |
class default = fixes default :: 'a |
4868 | 248 |
|
11750 | 249 |
|
60758 | 250 |
subsection \<open>Fundamental rules\<close> |
20944 | 251 |
|
60758 | 252 |
subsubsection \<open>Equality\<close> |
20944 | 253 |
|
60759 | 254 |
lemma sym: "s = t \<Longrightarrow> t = s" |
18457 | 255 |
by (erule subst) (rule refl) |
15411 | 256 |
|
60759 | 257 |
lemma ssubst: "t = s \<Longrightarrow> P s \<Longrightarrow> P t" |
18457 | 258 |
by (drule sym) (erule subst) |
15411 | 259 |
|
60759 | 260 |
lemma trans: "\<lbrakk>r = s; s = t\<rbrakk> \<Longrightarrow> r = t" |
18457 | 261 |
by (erule subst) |
15411 | 262 |
|
60759 | 263 |
lemma trans_sym [Pure.elim?]: "r = s \<Longrightarrow> t = s \<Longrightarrow> r = t" |
40715
3ba17f07b23c
lemma trans_sym allows single-step "normalization" in Isar, e.g. via moreover/ultimately;
wenzelm
parents:
40582
diff
changeset
|
264 |
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
|
265 |
|
58826 | 266 |
lemma meta_eq_to_obj_eq: |
63575 | 267 |
assumes "A \<equiv> B" |
20944 | 268 |
shows "A = B" |
63575 | 269 |
unfolding assms by (rule refl) |
15411 | 270 |
|
61799 | 271 |
text \<open>Useful with \<open>erule\<close> for proving equalities from known equalities.\<close> |
20944 | 272 |
(* a = b |
15411 | 273 |
| | |
274 |
c = d *) |
|
60759 | 275 |
lemma box_equals: "\<lbrakk>a = b; a = c; b = d\<rbrakk> \<Longrightarrow> c = d" |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
276 |
by (iprover intro: sym trans) |
15411 | 277 |
|
60758 | 278 |
text \<open>For calculational reasoning:\<close> |
15524
2ef571f80a55
Moved oderings from HOL into the new Orderings.thy
nipkow
parents:
15481
diff
changeset
|
279 |
|
60759 | 280 |
lemma forw_subst: "a = b \<Longrightarrow> P b \<Longrightarrow> P a" |
15524
2ef571f80a55
Moved oderings from HOL into the new Orderings.thy
nipkow
parents:
15481
diff
changeset
|
281 |
by (rule ssubst) |
2ef571f80a55
Moved oderings from HOL into the new Orderings.thy
nipkow
parents:
15481
diff
changeset
|
282 |
|
60759 | 283 |
lemma back_subst: "P a \<Longrightarrow> a = b \<Longrightarrow> P b" |
15524
2ef571f80a55
Moved oderings from HOL into the new Orderings.thy
nipkow
parents:
15481
diff
changeset
|
284 |
by (rule subst) |
2ef571f80a55
Moved oderings from HOL into the new Orderings.thy
nipkow
parents:
15481
diff
changeset
|
285 |
|
15411 | 286 |
|
60758 | 287 |
subsubsection \<open>Congruence rules for application\<close> |
15411 | 288 |
|
61799 | 289 |
text \<open>Similar to \<open>AP_THM\<close> in Gordon's HOL.\<close> |
60759 | 290 |
lemma fun_cong: "(f :: 'a \<Rightarrow> 'b) = g \<Longrightarrow> f x = g x" |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
291 |
by (iprover intro: refl elim: subst) |
15411 | 292 |
|
61799 | 293 |
text \<open>Similar to \<open>AP_TERM\<close> in Gordon's HOL and FOL's \<open>subst_context\<close>.\<close> |
60759 | 294 |
lemma arg_cong: "x = y \<Longrightarrow> f x = f y" |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
295 |
by (iprover intro: refl elim: subst) |
15411 | 296 |
|
60759 | 297 |
lemma arg_cong2: "\<lbrakk>a = b; c = d\<rbrakk> \<Longrightarrow> f a c = f b d" |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
298 |
by (iprover intro: refl elim: subst) |
15655 | 299 |
|
60759 | 300 |
lemma cong: "\<lbrakk>f = g; (x::'a) = y\<rbrakk> \<Longrightarrow> f x = g y" |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
301 |
by (iprover intro: refl elim: subst) |
15411 | 302 |
|
60758 | 303 |
ML \<open>fun cong_tac ctxt = Cong_Tac.cong_tac ctxt @{thm cong}\<close> |
15411 | 304 |
|
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
|
305 |
|
60758 | 306 |
subsubsection \<open>Equality of booleans -- iff\<close> |
15411 | 307 |
|
60759 | 308 |
lemma iffD2: "\<lbrakk>P = Q; Q\<rbrakk> \<Longrightarrow> P" |
18457 | 309 |
by (erule ssubst) |
15411 | 310 |
|
60759 | 311 |
lemma rev_iffD2: "\<lbrakk>Q; P = Q\<rbrakk> \<Longrightarrow> P" |
18457 | 312 |
by (erule iffD2) |
15411 | 313 |
|
21504 | 314 |
lemma iffD1: "Q = P \<Longrightarrow> Q \<Longrightarrow> P" |
315 |
by (drule sym) (rule iffD2) |
|
316 |
||
317 |
lemma rev_iffD1: "Q \<Longrightarrow> Q = P \<Longrightarrow> P" |
|
318 |
by (drule sym) (rule rev_iffD2) |
|
15411 | 319 |
|
320 |
lemma iffE: |
|
60759 | 321 |
assumes major: "P = Q" |
322 |
and minor: "\<lbrakk>P \<longrightarrow> Q; Q \<longrightarrow> P\<rbrakk> \<Longrightarrow> R" |
|
18457 | 323 |
shows R |
324 |
by (iprover intro: minor impI major [THEN iffD2] major [THEN iffD1]) |
|
15411 | 325 |
|
326 |
||
66893
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
327 |
subsubsection \<open>True (1)\<close> |
15411 | 328 |
|
63575 | 329 |
lemma TrueI: True |
21504 | 330 |
unfolding True_def by (rule refl) |
15411 | 331 |
|
60759 | 332 |
lemma eqTrueE: "P = True \<Longrightarrow> P" |
21504 | 333 |
by (erule iffD2) (rule TrueI) |
15411 | 334 |
|
335 |
||
66893
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
336 |
subsubsection \<open>Universal quantifier (1)\<close> |
15411 | 337 |
|
60759 | 338 |
lemma spec: "\<forall>x::'a. P x \<Longrightarrow> P x" |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
339 |
unfolding All_def by (iprover intro: eqTrueE fun_cong) |
15411 | 340 |
|
341 |
lemma allE: |
|
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
342 |
assumes major: "\<forall>x. P x" and minor: "P x \<Longrightarrow> R" |
21504 | 343 |
shows R |
344 |
by (iprover intro: minor major [THEN spec]) |
|
15411 | 345 |
|
346 |
lemma all_dupE: |
|
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
347 |
assumes major: "\<forall>x. P x" and minor: "\<lbrakk>P x; \<forall>x. P x\<rbrakk> \<Longrightarrow> R" |
21504 | 348 |
shows R |
349 |
by (iprover intro: minor major major [THEN spec]) |
|
15411 | 350 |
|
351 |
||
60758 | 352 |
subsubsection \<open>False\<close> |
21504 | 353 |
|
60758 | 354 |
text \<open> |
61799 | 355 |
Depends upon \<open>spec\<close>; it is impossible to do propositional |
21504 | 356 |
logic before quantifiers! |
60758 | 357 |
\<close> |
15411 | 358 |
|
60759 | 359 |
lemma FalseE: "False \<Longrightarrow> P" |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
360 |
unfolding False_def by (erule spec) |
15411 | 361 |
|
60759 | 362 |
lemma False_neq_True: "False = True \<Longrightarrow> P" |
21504 | 363 |
by (erule eqTrueE [THEN FalseE]) |
15411 | 364 |
|
365 |
||
60758 | 366 |
subsubsection \<open>Negation\<close> |
15411 | 367 |
|
368 |
lemma notI: |
|
60759 | 369 |
assumes "P \<Longrightarrow> False" |
370 |
shows "\<not> P" |
|
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
371 |
unfolding not_def by (iprover intro: impI assms) |
15411 | 372 |
|
60759 | 373 |
lemma False_not_True: "False \<noteq> True" |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
374 |
by (iprover intro: notI elim: False_neq_True) |
15411 | 375 |
|
60759 | 376 |
lemma True_not_False: "True \<noteq> False" |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
377 |
by (iprover intro: notI dest: sym elim: False_neq_True) |
15411 | 378 |
|
60759 | 379 |
lemma notE: "\<lbrakk>\<not> P; P\<rbrakk> \<Longrightarrow> R" |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
380 |
unfolding not_def |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
381 |
by (iprover intro: mp [THEN FalseE]) |
15411 | 382 |
|
383 |
||
60758 | 384 |
subsubsection \<open>Implication\<close> |
15411 | 385 |
|
386 |
lemma impE: |
|
60759 | 387 |
assumes "P \<longrightarrow> Q" P "Q \<Longrightarrow> R" |
388 |
shows R |
|
63575 | 389 |
by (iprover intro: assms mp) |
15411 | 390 |
|
63575 | 391 |
text \<open>Reduces \<open>Q\<close> to \<open>P \<longrightarrow> Q\<close>, allowing substitution in \<open>P\<close>.\<close> |
60759 | 392 |
lemma rev_mp: "\<lbrakk>P; P \<longrightarrow> Q\<rbrakk> \<Longrightarrow> Q" |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
393 |
by (rule mp) |
15411 | 394 |
|
395 |
lemma contrapos_nn: |
|
60759 | 396 |
assumes major: "\<not> Q" |
63575 | 397 |
and minor: "P \<Longrightarrow> Q" |
60759 | 398 |
shows "\<not> P" |
63575 | 399 |
by (iprover intro: notI minor major [THEN notE]) |
15411 | 400 |
|
63575 | 401 |
text \<open>Not used at all, but we already have the other 3 combinations.\<close> |
15411 | 402 |
lemma contrapos_pn: |
403 |
assumes major: "Q" |
|
63575 | 404 |
and minor: "P \<Longrightarrow> \<not> Q" |
60759 | 405 |
shows "\<not> P" |
63575 | 406 |
by (iprover intro: notI minor major notE) |
15411 | 407 |
|
60759 | 408 |
lemma not_sym: "t \<noteq> s \<Longrightarrow> s \<noteq> t" |
21250 | 409 |
by (erule contrapos_nn) (erule sym) |
410 |
||
60759 | 411 |
lemma eq_neq_eq_imp_neq: "\<lbrakk>x = a; a \<noteq> b; b = y\<rbrakk> \<Longrightarrow> x \<noteq> y" |
21250 | 412 |
by (erule subst, erule ssubst, assumption) |
15411 | 413 |
|
414 |
||
66893
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
415 |
subsubsection \<open>Disjunction (1)\<close> |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
416 |
|
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
417 |
lemma disjE: |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
418 |
assumes major: "P \<or> Q" |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
419 |
and minorP: "P \<Longrightarrow> R" |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
420 |
and minorQ: "Q \<Longrightarrow> R" |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
421 |
shows R |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
422 |
by (iprover intro: minorP minorQ impI |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
423 |
major [unfolded or_def, THEN spec, THEN mp, THEN mp]) |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
424 |
|
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
425 |
|
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
426 |
subsubsection \<open>Derivation of \<open>iffI\<close>\<close> |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
427 |
|
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
428 |
text \<open>In an intuitionistic version of HOL \<open>iffI\<close> needs to be an axiom.\<close> |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
429 |
|
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
430 |
lemma iffI: |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
431 |
assumes "P \<Longrightarrow> Q" and "Q \<Longrightarrow> P" |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
432 |
shows "P = Q" |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
433 |
proof (rule disjE[OF True_or_False[of P]]) |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
434 |
assume 1: "P = True" |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
435 |
note Q = assms(1)[OF eqTrueE[OF this]] |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
436 |
from 1 show ?thesis |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
437 |
proof (rule ssubst) |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
438 |
from True_or_False[of Q] show "True = Q" |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
439 |
proof (rule disjE) |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
440 |
assume "Q = True" |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
441 |
thus ?thesis by(rule sym) |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
442 |
next |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
443 |
assume "Q = False" |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
444 |
with Q have False by (rule rev_iffD1) |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
445 |
thus ?thesis by (rule FalseE) |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
446 |
qed |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
447 |
qed |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
448 |
next |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
449 |
assume 2: "P = False" |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
450 |
thus ?thesis |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
451 |
proof (rule ssubst) |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
452 |
from True_or_False[of Q] show "False = Q" |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
453 |
proof (rule disjE) |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
454 |
assume "Q = True" |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
455 |
from 2 assms(2)[OF eqTrueE[OF this]] have False by (rule iffD1) |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
456 |
thus ?thesis by (rule FalseE) |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
457 |
next |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
458 |
assume "Q = False" |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
459 |
thus ?thesis by(rule sym) |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
460 |
qed |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
461 |
qed |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
462 |
qed |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
463 |
|
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
464 |
|
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
465 |
subsubsection \<open>True (2)\<close> |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
466 |
|
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
467 |
lemma eqTrueI: "P \<Longrightarrow> P = True" |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
468 |
by (iprover intro: iffI TrueI) |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
469 |
|
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
470 |
|
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
471 |
subsubsection \<open>Universal quantifier (2)\<close> |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
472 |
|
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
473 |
lemma allI: |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
474 |
assumes "\<And>x::'a. P x" |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
475 |
shows "\<forall>x. P x" |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
476 |
unfolding All_def by (iprover intro: ext eqTrueI assms) |
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
477 |
|
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
478 |
|
60758 | 479 |
subsubsection \<open>Existential quantifier\<close> |
15411 | 480 |
|
60759 | 481 |
lemma exI: "P x \<Longrightarrow> \<exists>x::'a. P x" |
63575 | 482 |
unfolding Ex_def by (iprover intro: allI allE impI mp) |
15411 | 483 |
|
484 |
lemma exE: |
|
60759 | 485 |
assumes major: "\<exists>x::'a. P x" |
63575 | 486 |
and minor: "\<And>x. P x \<Longrightarrow> Q" |
15411 | 487 |
shows "Q" |
63575 | 488 |
by (rule major [unfolded Ex_def, THEN spec, THEN mp]) (iprover intro: impI [THEN allI] minor) |
15411 | 489 |
|
490 |
||
60758 | 491 |
subsubsection \<open>Conjunction\<close> |
15411 | 492 |
|
60759 | 493 |
lemma conjI: "\<lbrakk>P; Q\<rbrakk> \<Longrightarrow> P \<and> Q" |
63575 | 494 |
unfolding and_def by (iprover intro: impI [THEN allI] mp) |
15411 | 495 |
|
60759 | 496 |
lemma conjunct1: "\<lbrakk>P \<and> Q\<rbrakk> \<Longrightarrow> P" |
63575 | 497 |
unfolding and_def by (iprover intro: impI dest: spec mp) |
15411 | 498 |
|
60759 | 499 |
lemma conjunct2: "\<lbrakk>P \<and> Q\<rbrakk> \<Longrightarrow> Q" |
63575 | 500 |
unfolding and_def by (iprover intro: impI dest: spec mp) |
15411 | 501 |
|
502 |
lemma conjE: |
|
60759 | 503 |
assumes major: "P \<and> Q" |
63575 | 504 |
and minor: "\<lbrakk>P; Q\<rbrakk> \<Longrightarrow> R" |
60759 | 505 |
shows R |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
506 |
proof (rule minor) |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
507 |
show P by (rule major [THEN conjunct1]) |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
508 |
show Q by (rule major [THEN conjunct2]) |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
509 |
qed |
15411 | 510 |
|
511 |
lemma context_conjI: |
|
63575 | 512 |
assumes P "P \<Longrightarrow> Q" |
513 |
shows "P \<and> Q" |
|
514 |
by (iprover intro: conjI assms) |
|
15411 | 515 |
|
516 |
||
66893
ced164fe3bbd
derived axiom iffI as a lemma (thanks to Alexander Maletzky)
nipkow
parents:
66836
diff
changeset
|
517 |
subsubsection \<open>Disjunction (2)\<close> |
15411 | 518 |
|
60759 | 519 |
lemma disjI1: "P \<Longrightarrow> P \<or> Q" |
63575 | 520 |
unfolding or_def by (iprover intro: allI impI mp) |
15411 | 521 |
|
60759 | 522 |
lemma disjI2: "Q \<Longrightarrow> P \<or> Q" |
63575 | 523 |
unfolding or_def by (iprover intro: allI impI mp) |
15411 | 524 |
|
525 |
||
60758 | 526 |
subsubsection \<open>Classical logic\<close> |
15411 | 527 |
|
528 |
lemma classical: |
|
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
529 |
assumes "\<not> P \<Longrightarrow> P" |
60759 | 530 |
shows P |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
531 |
proof (rule True_or_False [THEN disjE]) |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
532 |
show P if "P = True" |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
533 |
using that by (iprover intro: eqTrueE) |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
534 |
show P if "P = False" |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
535 |
proof (intro notI assms) |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
536 |
assume P |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
537 |
with that show False |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
538 |
by (iprover elim: subst) |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
539 |
qed |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
540 |
qed |
15411 | 541 |
|
45607 | 542 |
lemmas ccontr = FalseE [THEN classical] |
15411 | 543 |
|
63575 | 544 |
text \<open>\<open>notE\<close> with premises exchanged; it discharges \<open>\<not> R\<close> so that it can be used to |
545 |
make elimination rules.\<close> |
|
15411 | 546 |
lemma rev_notE: |
60759 | 547 |
assumes premp: P |
63575 | 548 |
and premnot: "\<not> R \<Longrightarrow> \<not> P" |
60759 | 549 |
shows R |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
550 |
by (iprover intro: ccontr notE [OF premnot premp]) |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
551 |
|
15411 | 552 |
|
63575 | 553 |
text \<open>Double negation law.\<close> |
60759 | 554 |
lemma notnotD: "\<not>\<not> P \<Longrightarrow> P" |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
555 |
by (iprover intro: ccontr notE ) |
15411 | 556 |
|
557 |
lemma contrapos_pp: |
|
60759 | 558 |
assumes p1: Q |
63575 | 559 |
and p2: "\<not> P \<Longrightarrow> \<not> Q" |
60759 | 560 |
shows P |
63575 | 561 |
by (iprover intro: classical p1 p2 notE) |
15411 | 562 |
|
563 |
||
60758 | 564 |
subsubsection \<open>Unique existence\<close> |
15411 | 565 |
|
71827 | 566 |
lemma Uniq_I [intro?]: |
567 |
assumes "\<And>x y. \<lbrakk>P x; P y\<rbrakk> \<Longrightarrow> y = x" |
|
568 |
shows "Uniq P" |
|
569 |
unfolding Uniq_def by (iprover intro: assms allI impI) |
|
570 |
||
571 |
lemma Uniq_D [dest?]: "\<lbrakk>Uniq P; P a; P b\<rbrakk> \<Longrightarrow> a=b" |
|
572 |
unfolding Uniq_def by (iprover dest: spec mp) |
|
573 |
||
15411 | 574 |
lemma ex1I: |
60759 | 575 |
assumes "P a" "\<And>x. P x \<Longrightarrow> x = a" |
576 |
shows "\<exists>!x. P x" |
|
63575 | 577 |
unfolding Ex1_def by (iprover intro: assms exI conjI allI impI) |
15411 | 578 |
|
63575 | 579 |
text \<open>Sometimes easier to use: the premises have no shared variables. Safe!\<close> |
15411 | 580 |
lemma ex_ex1I: |
60759 | 581 |
assumes ex_prem: "\<exists>x. P x" |
63575 | 582 |
and eq: "\<And>x y. \<lbrakk>P x; P y\<rbrakk> \<Longrightarrow> x = y" |
60759 | 583 |
shows "\<exists>!x. P x" |
63575 | 584 |
by (iprover intro: ex_prem [THEN exE] ex1I eq) |
15411 | 585 |
|
586 |
lemma ex1E: |
|
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
587 |
assumes major: "\<exists>!x. P x" and minor: "\<And>x. \<lbrakk>P x; \<forall>y. P y \<longrightarrow> y = x\<rbrakk> \<Longrightarrow> R" |
60759 | 588 |
shows R |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
589 |
proof (rule major [unfolded Ex1_def, THEN exE]) |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
590 |
show "\<And>x. P x \<and> (\<forall>y. P y \<longrightarrow> y = x) \<Longrightarrow> R" |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
591 |
by (iprover intro: minor elim: conjE) |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
592 |
qed |
15411 | 593 |
|
60759 | 594 |
lemma ex1_implies_ex: "\<exists>!x. P x \<Longrightarrow> \<exists>x. P x" |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
595 |
by (iprover intro: exI elim: ex1E) |
15411 | 596 |
|
60758 | 597 |
subsubsection \<open>Classical intro rules for disjunction and existential quantifiers\<close> |
15411 | 598 |
|
599 |
lemma disjCI: |
|
63575 | 600 |
assumes "\<not> Q \<Longrightarrow> P" |
601 |
shows "P \<or> Q" |
|
602 |
by (rule classical) (iprover intro: assms disjI1 disjI2 notI elim: notE) |
|
15411 | 603 |
|
60759 | 604 |
lemma excluded_middle: "\<not> P \<or> P" |
63575 | 605 |
by (iprover intro: disjCI) |
15411 | 606 |
|
60758 | 607 |
text \<open> |
20944 | 608 |
case distinction as a natural deduction rule. |
63575 | 609 |
Note that \<open>\<not> P\<close> is the second case, not the first. |
60758 | 610 |
\<close> |
27126
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
wenzelm
parents:
27107
diff
changeset
|
611 |
lemma case_split [case_names True False]: |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
612 |
assumes "P \<Longrightarrow> Q" "\<not> P \<Longrightarrow> Q" |
60759 | 613 |
shows Q |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
614 |
using excluded_middle [of P] |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
615 |
by (iprover intro: assms elim: disjE) |
27126
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
wenzelm
parents:
27107
diff
changeset
|
616 |
|
63575 | 617 |
text \<open>Classical implies (\<open>\<longrightarrow>\<close>) elimination.\<close> |
15411 | 618 |
lemma impCE: |
60759 | 619 |
assumes major: "P \<longrightarrow> Q" |
63575 | 620 |
and minor: "\<not> P \<Longrightarrow> R" "Q \<Longrightarrow> R" |
60759 | 621 |
shows R |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
622 |
using excluded_middle [of P] |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
623 |
by (iprover intro: minor major [THEN mp] elim: disjE)+ |
15411 | 624 |
|
63575 | 625 |
text \<open> |
626 |
This version of \<open>\<longrightarrow>\<close> elimination works on \<open>Q\<close> before \<open>P\<close>. It works best for |
|
627 |
those cases in which \<open>P\<close> holds "almost everywhere". Can't install as |
|
628 |
default: would break old proofs. |
|
629 |
\<close> |
|
15411 | 630 |
lemma impCE': |
60759 | 631 |
assumes major: "P \<longrightarrow> Q" |
63575 | 632 |
and minor: "Q \<Longrightarrow> R" "\<not> P \<Longrightarrow> R" |
60759 | 633 |
shows R |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
634 |
using assms by (elim impCE) |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
635 |
|
15411 | 636 |
|
63575 | 637 |
text \<open>Classical \<open>\<longleftrightarrow>\<close> elimination.\<close> |
15411 | 638 |
lemma iffCE: |
60759 | 639 |
assumes major: "P = Q" |
63575 | 640 |
and minor: "\<lbrakk>P; Q\<rbrakk> \<Longrightarrow> R" "\<lbrakk>\<not> P; \<not> Q\<rbrakk> \<Longrightarrow> R" |
60759 | 641 |
shows R |
63575 | 642 |
by (rule major [THEN iffE]) (iprover intro: minor elim: impCE notE) |
15411 | 643 |
|
644 |
lemma exCI: |
|
60759 | 645 |
assumes "\<forall>x. \<not> P x \<Longrightarrow> P a" |
646 |
shows "\<exists>x. P x" |
|
63575 | 647 |
by (rule ccontr) (iprover intro: assms exI allI notI notE [of "\<exists>x. P x"]) |
15411 | 648 |
|
649 |
||
60758 | 650 |
subsubsection \<open>Intuitionistic Reasoning\<close> |
12386 | 651 |
|
652 |
lemma impE': |
|
60759 | 653 |
assumes 1: "P \<longrightarrow> Q" |
654 |
and 2: "Q \<Longrightarrow> R" |
|
655 |
and 3: "P \<longrightarrow> Q \<Longrightarrow> P" |
|
12937
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents:
12892
diff
changeset
|
656 |
shows R |
12386 | 657 |
proof - |
658 |
from 3 and 1 have P . |
|
659 |
with 1 have Q by (rule impE) |
|
660 |
with 2 show R . |
|
661 |
qed |
|
662 |
||
663 |
lemma allE': |
|
60759 | 664 |
assumes 1: "\<forall>x. P x" |
665 |
and 2: "P x \<Longrightarrow> \<forall>x. P x \<Longrightarrow> Q" |
|
12937
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents:
12892
diff
changeset
|
666 |
shows Q |
12386 | 667 |
proof - |
668 |
from 1 have "P x" by (rule spec) |
|
669 |
from this and 1 show Q by (rule 2) |
|
670 |
qed |
|
671 |
||
12937
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents:
12892
diff
changeset
|
672 |
lemma notE': |
60759 | 673 |
assumes 1: "\<not> P" |
674 |
and 2: "\<not> P \<Longrightarrow> P" |
|
12937
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents:
12892
diff
changeset
|
675 |
shows R |
12386 | 676 |
proof - |
677 |
from 2 and 1 have P . |
|
678 |
with 1 show R by (rule notE) |
|
679 |
qed |
|
680 |
||
60759 | 681 |
lemma TrueE: "True \<Longrightarrow> P \<Longrightarrow> P" . |
682 |
lemma notFalseE: "\<not> False \<Longrightarrow> P \<Longrightarrow> P" . |
|
22444
fb80fedd192d
added safe intro rules for removing "True" subgoals as well as "~ False" ones.
dixon
parents:
22377
diff
changeset
|
683 |
|
22467
c9357ef01168
TrueElim and notTrueElim tested and added as safe elim rules.
dixon
parents:
22445
diff
changeset
|
684 |
lemmas [Pure.elim!] = disjE iffE FalseE conjE exE TrueE notFalseE |
15801 | 685 |
and [Pure.intro!] = iffI conjI impI TrueI notI allI refl |
686 |
and [Pure.elim 2] = allE notE' impE' |
|
687 |
and [Pure.intro] = exI disjI2 disjI1 |
|
12386 | 688 |
|
689 |
lemmas [trans] = trans |
|
690 |
and [sym] = sym not_sym |
|
15801 | 691 |
and [Pure.elim?] = iffD1 iffD2 impE |
11750 | 692 |
|
11438
3d9222b80989
declare trans [trans] (*overridden in theory Calculation*);
wenzelm
parents:
11432
diff
changeset
|
693 |
|
60758 | 694 |
subsubsection \<open>Atomizing meta-level connectives\<close> |
11750 | 695 |
|
28513 | 696 |
axiomatization where |
63575 | 697 |
eq_reflection: "x = y \<Longrightarrow> x \<equiv> y" \<comment> \<open>admissible axiom\<close> |
28513 | 698 |
|
60759 | 699 |
lemma atomize_all [atomize]: "(\<And>x. P x) \<equiv> Trueprop (\<forall>x. P x)" |
12003 | 700 |
proof |
60759 | 701 |
assume "\<And>x. P x" |
702 |
then show "\<forall>x. P x" .. |
|
9488 | 703 |
next |
60759 | 704 |
assume "\<forall>x. P x" |
705 |
then show "\<And>x. P x" by (rule allE) |
|
9488 | 706 |
qed |
707 |
||
60759 | 708 |
lemma atomize_imp [atomize]: "(A \<Longrightarrow> B) \<equiv> Trueprop (A \<longrightarrow> B)" |
12003 | 709 |
proof |
60759 | 710 |
assume r: "A \<Longrightarrow> B" |
711 |
show "A \<longrightarrow> B" by (rule impI) (rule r) |
|
9488 | 712 |
next |
60759 | 713 |
assume "A \<longrightarrow> B" and A |
23553 | 714 |
then show B by (rule mp) |
9488 | 715 |
qed |
716 |
||
60759 | 717 |
lemma atomize_not: "(A \<Longrightarrow> False) \<equiv> Trueprop (\<not> A)" |
14749 | 718 |
proof |
60759 | 719 |
assume r: "A \<Longrightarrow> False" |
720 |
show "\<not> A" by (rule notI) (rule r) |
|
14749 | 721 |
next |
60759 | 722 |
assume "\<not> A" and A |
23553 | 723 |
then show False by (rule notE) |
14749 | 724 |
qed |
725 |
||
60759 | 726 |
lemma atomize_eq [atomize, code]: "(x \<equiv> y) \<equiv> Trueprop (x = y)" |
12003 | 727 |
proof |
60759 | 728 |
assume "x \<equiv> y" |
729 |
show "x = y" by (unfold \<open>x \<equiv> y\<close>) (rule refl) |
|
10432
3dfbc913d184
added axclass inverse and consts inverse, divide (infix "/");
wenzelm
parents:
10383
diff
changeset
|
730 |
next |
3dfbc913d184
added axclass inverse and consts inverse, divide (infix "/");
wenzelm
parents:
10383
diff
changeset
|
731 |
assume "x = y" |
60759 | 732 |
then show "x \<equiv> y" by (rule eq_reflection) |
10432
3dfbc913d184
added axclass inverse and consts inverse, divide (infix "/");
wenzelm
parents:
10383
diff
changeset
|
733 |
qed |
3dfbc913d184
added axclass inverse and consts inverse, divide (infix "/");
wenzelm
parents:
10383
diff
changeset
|
734 |
|
60759 | 735 |
lemma atomize_conj [atomize]: "(A &&& B) \<equiv> Trueprop (A \<and> B)" |
12003 | 736 |
proof |
28856
5e009a80fe6d
Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
wenzelm
parents:
28741
diff
changeset
|
737 |
assume conj: "A &&& B" |
60759 | 738 |
show "A \<and> B" |
19121 | 739 |
proof (rule conjI) |
740 |
from conj show A by (rule conjunctionD1) |
|
741 |
from conj show B by (rule conjunctionD2) |
|
742 |
qed |
|
11953 | 743 |
next |
60759 | 744 |
assume conj: "A \<and> B" |
28856
5e009a80fe6d
Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
wenzelm
parents:
28741
diff
changeset
|
745 |
show "A &&& B" |
19121 | 746 |
proof - |
747 |
from conj show A .. |
|
748 |
from conj show B .. |
|
11953 | 749 |
qed |
750 |
qed |
|
751 |
||
12386 | 752 |
lemmas [symmetric, rulify] = atomize_all atomize_imp |
18832 | 753 |
and [symmetric, defn] = atomize_all atomize_imp atomize_eq |
12386 | 754 |
|
11750 | 755 |
|
60758 | 756 |
subsubsection \<open>Atomizing elimination rules\<close> |
26580
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
krauss
parents:
26555
diff
changeset
|
757 |
|
60759 | 758 |
lemma atomize_exL[atomize_elim]: "(\<And>x. P x \<Longrightarrow> Q) \<equiv> ((\<exists>x. P x) \<Longrightarrow> Q)" |
75669
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74741
diff
changeset
|
759 |
by (rule equal_intr_rule) iprover+ |
26580
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
krauss
parents:
26555
diff
changeset
|
760 |
|
60759 | 761 |
lemma atomize_conjL[atomize_elim]: "(A \<Longrightarrow> B \<Longrightarrow> C) \<equiv> (A \<and> B \<Longrightarrow> C)" |
75669
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74741
diff
changeset
|
762 |
by (rule equal_intr_rule) iprover+ |
26580
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
krauss
parents:
26555
diff
changeset
|
763 |
|
60759 | 764 |
lemma atomize_disjL[atomize_elim]: "((A \<Longrightarrow> C) \<Longrightarrow> (B \<Longrightarrow> C) \<Longrightarrow> C) \<equiv> ((A \<or> B \<Longrightarrow> C) \<Longrightarrow> C)" |
75669
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74741
diff
changeset
|
765 |
by (rule equal_intr_rule) iprover+ |
26580
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
krauss
parents:
26555
diff
changeset
|
766 |
|
60759 | 767 |
lemma atomize_elimL[atomize_elim]: "(\<And>B. (A \<Longrightarrow> B) \<Longrightarrow> B) \<equiv> Trueprop A" .. |
26580
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
krauss
parents:
26555
diff
changeset
|
768 |
|
c3e597a476fd
Generic conversion and tactic "atomize_elim" to convert elimination rules
krauss
parents:
26555
diff
changeset
|
769 |
|
60758 | 770 |
subsection \<open>Package setup\<close> |
20944 | 771 |
|
69605 | 772 |
ML_file \<open>Tools/hologic.ML\<close> |
70847 | 773 |
ML_file \<open>Tools/rewrite_hol_proof.ML\<close> |
51314
eac4bb5adbf9
just one HOLogic.Trueprop_conv, with regular exception CTERM;
wenzelm
parents:
51304
diff
changeset
|
774 |
|
70879 | 775 |
setup \<open>Proofterm.set_preproc (Proof_Rewrite_Rules.standard_preproc Rewrite_HOL_Proof.rews)\<close> |
70849 | 776 |
|
51314
eac4bb5adbf9
just one HOLogic.Trueprop_conv, with regular exception CTERM;
wenzelm
parents:
51304
diff
changeset
|
777 |
|
60758 | 778 |
subsubsection \<open>Sledgehammer setup\<close> |
35828
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents:
35808
diff
changeset
|
779 |
|
60758 | 780 |
text \<open> |
63575 | 781 |
Theorems blacklisted to Sledgehammer. These theorems typically produce clauses |
782 |
that are prolific (match too many equality or membership literals) and relate to |
|
783 |
seldom-used facts. Some duplicate other rules. |
|
60758 | 784 |
\<close> |
35828
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents:
35808
diff
changeset
|
785 |
|
57963 | 786 |
named_theorems no_atp "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
|
787 |
|
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents:
35808
diff
changeset
|
788 |
|
60758 | 789 |
subsubsection \<open>Classical Reasoner setup\<close> |
9529 | 790 |
|
60759 | 791 |
lemma imp_elim: "P \<longrightarrow> Q \<Longrightarrow> (\<not> R \<Longrightarrow> P) \<Longrightarrow> (Q \<Longrightarrow> R) \<Longrightarrow> R" |
26411 | 792 |
by (rule classical) iprover |
793 |
||
60759 | 794 |
lemma swap: "\<not> P \<Longrightarrow> (\<not> R \<Longrightarrow> P) \<Longrightarrow> R" |
26411 | 795 |
by (rule classical) iprover |
796 |
||
62958
b41c1cb5e251
Type_Infer.object_logic controls improvement of type inference result;
wenzelm
parents:
62913
diff
changeset
|
797 |
lemma thin_refl: "\<lbrakk>x = x; PROP W\<rbrakk> \<Longrightarrow> PROP W" . |
20944 | 798 |
|
60758 | 799 |
ML \<open> |
42799 | 800 |
structure Hypsubst = Hypsubst |
801 |
( |
|
21218 | 802 |
val dest_eq = HOLogic.dest_eq |
21151 | 803 |
val dest_Trueprop = HOLogic.dest_Trueprop |
804 |
val dest_imp = HOLogic.dest_imp |
|
26411 | 805 |
val eq_reflection = @{thm eq_reflection} |
806 |
val rev_eq_reflection = @{thm meta_eq_to_obj_eq} |
|
807 |
val imp_intr = @{thm impI} |
|
808 |
val rev_mp = @{thm rev_mp} |
|
809 |
val subst = @{thm subst} |
|
810 |
val sym = @{thm sym} |
|
22129 | 811 |
val thin_refl = @{thm thin_refl}; |
42799 | 812 |
); |
21671 | 813 |
open Hypsubst; |
21151 | 814 |
|
42799 | 815 |
structure Classical = Classical |
816 |
( |
|
26411 | 817 |
val imp_elim = @{thm imp_elim} |
818 |
val not_elim = @{thm notE} |
|
819 |
val swap = @{thm swap} |
|
820 |
val classical = @{thm classical} |
|
21151 | 821 |
val sizef = Drule.size_of_thm |
822 |
val hyp_subst_tacs = [Hypsubst.hyp_subst_tac] |
|
42799 | 823 |
); |
21151 | 824 |
|
58826 | 825 |
structure Basic_Classical: BASIC_CLASSICAL = Classical; |
33308
cf62d1690d04
separate ResBlacklist, based on scalable persistent data -- avoids inefficient hashing later on;
wenzelm
parents:
33185
diff
changeset
|
826 |
open Basic_Classical; |
60758 | 827 |
\<close> |
22129 | 828 |
|
60758 | 829 |
setup \<open> |
35389 | 830 |
(*prevent substitution on bool*) |
58826 | 831 |
let |
80662 | 832 |
fun non_bool_eq \<^Const_>\<open>HOL.eq T\<close> = T <> \<^Type>\<open>bool\<close> |
58826 | 833 |
| non_bool_eq _ = false; |
834 |
fun hyp_subst_tac' ctxt = |
|
835 |
SUBGOAL (fn (goal, i) => |
|
80662 | 836 |
if Term.exists_subterm non_bool_eq goal |
58826 | 837 |
then Hypsubst.hyp_subst_tac ctxt i |
838 |
else no_tac); |
|
839 |
in |
|
840 |
Context_Rules.addSWrapper (fn ctxt => fn tac => hyp_subst_tac' ctxt ORELSE' tac) |
|
841 |
end |
|
60758 | 842 |
\<close> |
21009 | 843 |
|
844 |
declare iffI [intro!] |
|
845 |
and notI [intro!] |
|
846 |
and impI [intro!] |
|
847 |
and disjCI [intro!] |
|
848 |
and conjI [intro!] |
|
849 |
and TrueI [intro!] |
|
850 |
and refl [intro!] |
|
851 |
||
852 |
declare iffCE [elim!] |
|
853 |
and FalseE [elim!] |
|
854 |
and impCE [elim!] |
|
855 |
and disjE [elim!] |
|
856 |
and conjE [elim!] |
|
857 |
||
858 |
declare ex_ex1I [intro!] |
|
859 |
and allI [intro!] |
|
860 |
and exI [intro] |
|
861 |
||
862 |
declare exE [elim!] |
|
863 |
allE [elim] |
|
864 |
||
69593 | 865 |
ML \<open>val HOL_cs = claset_of \<^context>\<close> |
19162 | 866 |
|
60759 | 867 |
lemma contrapos_np: "\<not> Q \<Longrightarrow> (\<not> P \<Longrightarrow> Q) \<Longrightarrow> P" |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
868 |
by (erule swap) |
10383 | 869 |
|
18689
a50587cd8414
prefer ex1I over ex_ex1I in single-step reasoning;
wenzelm
parents:
18595
diff
changeset
|
870 |
declare ex_ex1I [rule del, intro! 2] |
a50587cd8414
prefer ex1I over ex_ex1I in single-step reasoning;
wenzelm
parents:
18595
diff
changeset
|
871 |
and ex1I [intro] |
a50587cd8414
prefer ex1I over ex_ex1I in single-step reasoning;
wenzelm
parents:
18595
diff
changeset
|
872 |
|
41865
4e8483cc2cc5
declare ext [intro]: Extensionality now available by default
paulson
parents:
41827
diff
changeset
|
873 |
declare ext [intro] |
4e8483cc2cc5
declare ext [intro]: Extensionality now available by default
paulson
parents:
41827
diff
changeset
|
874 |
|
12386 | 875 |
lemmas [intro?] = ext |
876 |
and [elim?] = ex1_implies_ex |
|
11977 | 877 |
|
63575 | 878 |
text \<open>Better than \<open>ex1E\<close> for classical reasoner: needs no quantifier duplication!\<close> |
20973 | 879 |
lemma alt_ex1E [elim!]: |
20944 | 880 |
assumes major: "\<exists>!x. P x" |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
881 |
and minor: "\<And>x. \<lbrakk>P x; \<forall>y y'. P y \<and> P y' \<longrightarrow> y = y'\<rbrakk> \<Longrightarrow> R" |
20944 | 882 |
shows R |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
883 |
proof (rule ex1E [OF major minor]) |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
884 |
show "\<forall>y y'. P y \<and> P y' \<longrightarrow> y = y'" if "P x" and \<section>: "\<forall>y. P y \<longrightarrow> y = x" for x |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
885 |
using \<open>P x\<close> \<section> \<section> by fast |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
886 |
qed assumption |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
887 |
|
71827 | 888 |
text \<open>And again using Uniq\<close> |
889 |
lemma alt_ex1E': |
|
890 |
assumes "\<exists>!x. P x" "\<And>x. \<lbrakk>P x; \<exists>\<^sub>\<le>\<^sub>1x. P x\<rbrakk> \<Longrightarrow> R" |
|
891 |
shows R |
|
892 |
using assms unfolding Uniq_def by fast |
|
893 |
||
894 |
lemma ex1_iff_ex_Uniq: "(\<exists>!x. P x) \<longleftrightarrow> (\<exists>x. P x) \<and> (\<exists>\<^sub>\<le>\<^sub>1x. P x)" |
|
895 |
unfolding Uniq_def by fast |
|
896 |
||
20944 | 897 |
|
60758 | 898 |
ML \<open> |
42477 | 899 |
structure Blast = Blast |
900 |
( |
|
901 |
structure Classical = Classical |
|
74383 | 902 |
val Trueprop_const = dest_Const \<^Const>\<open>Trueprop\<close> |
69593 | 903 |
val equality_name = \<^const_name>\<open>HOL.eq\<close> |
904 |
val not_name = \<^const_name>\<open>Not\<close> |
|
42477 | 905 |
val notE = @{thm notE} |
906 |
val ccontr = @{thm ccontr} |
|
907 |
val hyp_subst_tac = Hypsubst.blast_hyp_subst_tac |
|
908 |
); |
|
909 |
val blast_tac = Blast.blast_tac; |
|
60758 | 910 |
\<close> |
20944 | 911 |
|
912 |
||
60758 | 913 |
subsubsection \<open>THE: definite description operator\<close> |
59504
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
914 |
|
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
915 |
lemma the_equality [intro]: |
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
916 |
assumes "P a" |
63575 | 917 |
and "\<And>x. P x \<Longrightarrow> x = a" |
59504
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
918 |
shows "(THE x. P x) = a" |
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
919 |
by (blast intro: assms trans [OF arg_cong [where f=The] the_eq_trivial]) |
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
920 |
|
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
921 |
lemma theI: |
63575 | 922 |
assumes "P a" |
923 |
and "\<And>x. P x \<Longrightarrow> x = a" |
|
59504
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
924 |
shows "P (THE x. P x)" |
63575 | 925 |
by (iprover intro: assms the_equality [THEN ssubst]) |
59504
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
926 |
|
60759 | 927 |
lemma theI': "\<exists>!x. P x \<Longrightarrow> P (THE x. P x)" |
59504
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
928 |
by (blast intro: theI) |
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
929 |
|
63575 | 930 |
text \<open>Easier to apply than \<open>theI\<close>: only one occurrence of \<open>P\<close>.\<close> |
59504
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
931 |
lemma theI2: |
60759 | 932 |
assumes "P a" "\<And>x. P x \<Longrightarrow> x = a" "\<And>x. P x \<Longrightarrow> Q x" |
59504
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
933 |
shows "Q (THE x. P x)" |
63575 | 934 |
by (iprover intro: assms theI) |
59504
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
935 |
|
63575 | 936 |
lemma the1I2: |
937 |
assumes "\<exists>!x. P x" "\<And>x. P x \<Longrightarrow> Q x" |
|
938 |
shows "Q (THE x. P x)" |
|
939 |
by (iprover intro: assms(2) theI2[where P=P and Q=Q] ex1E[OF assms(1)] elim: allE impE) |
|
59504
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
940 |
|
60759 | 941 |
lemma the1_equality [elim?]: "\<lbrakk>\<exists>!x. P x; P a\<rbrakk> \<Longrightarrow> (THE x. P x) = a" |
59504
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
942 |
by blast |
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
943 |
|
71827 | 944 |
lemma the1_equality': "\<lbrakk>\<exists>\<^sub>\<le>\<^sub>1x. P x; P a\<rbrakk> \<Longrightarrow> (THE x. P x) = a" |
945 |
unfolding Uniq_def by blast |
|
946 |
||
60759 | 947 |
lemma the_sym_eq_trivial: "(THE y. x = y) = x" |
59504
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
948 |
by blast |
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
949 |
|
8c6747dba731
New lemmas and a bit of tidying up.
paulson <lp15@cam.ac.uk>
parents:
59028
diff
changeset
|
950 |
|
60758 | 951 |
subsubsection \<open>Simplifier\<close> |
12281 | 952 |
|
60759 | 953 |
lemma eta_contract_eq: "(\<lambda>s. f s) = f" .. |
12281 | 954 |
|
71918 | 955 |
lemma subst_all: |
956 |
\<open>(\<And>x. x = a \<Longrightarrow> PROP P x) \<equiv> PROP P a\<close> |
|
957 |
\<open>(\<And>x. a = x \<Longrightarrow> PROP P x) \<equiv> PROP P a\<close> |
|
71959 | 958 |
proof - |
959 |
show \<open>(\<And>x. x = a \<Longrightarrow> PROP P x) \<equiv> PROP P a\<close> |
|
960 |
proof (rule equal_intr_rule) |
|
961 |
assume *: \<open>\<And>x. x = a \<Longrightarrow> PROP P x\<close> |
|
962 |
show \<open>PROP P a\<close> |
|
963 |
by (rule *) (rule refl) |
|
964 |
next |
|
965 |
fix x |
|
966 |
assume \<open>PROP P a\<close> and \<open>x = a\<close> |
|
967 |
from \<open>x = a\<close> have \<open>x \<equiv> a\<close> |
|
968 |
by (rule eq_reflection) |
|
969 |
with \<open>PROP P a\<close> show \<open>PROP P x\<close> |
|
970 |
by simp |
|
971 |
qed |
|
972 |
show \<open>(\<And>x. a = x \<Longrightarrow> PROP P x) \<equiv> PROP P a\<close> |
|
973 |
proof (rule equal_intr_rule) |
|
974 |
assume *: \<open>\<And>x. a = x \<Longrightarrow> PROP P x\<close> |
|
975 |
show \<open>PROP P a\<close> |
|
976 |
by (rule *) (rule refl) |
|
977 |
next |
|
978 |
fix x |
|
979 |
assume \<open>PROP P a\<close> and \<open>a = x\<close> |
|
980 |
from \<open>a = x\<close> have \<open>a \<equiv> x\<close> |
|
981 |
by (rule eq_reflection) |
|
982 |
with \<open>PROP P a\<close> show \<open>PROP P x\<close> |
|
983 |
by simp |
|
984 |
qed |
|
71918 | 985 |
qed |
986 |
||
12281 | 987 |
lemma simp_thms: |
60759 | 988 |
shows not_not: "(\<not> \<not> P) = P" |
989 |
and Not_eq_iff: "((\<not> P) = (\<not> Q)) = (P = Q)" |
|
12937
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents:
12892
diff
changeset
|
990 |
and |
60759 | 991 |
"(P \<noteq> Q) = (P = (\<not> Q))" |
992 |
"(P \<or> \<not>P) = True" "(\<not> P \<or> P) = True" |
|
12281 | 993 |
"(x = x) = True" |
32068 | 994 |
and not_True_eq_False [code]: "(\<not> True) = False" |
995 |
and not_False_eq_True [code]: "(\<not> False) = True" |
|
20944 | 996 |
and |
60759 | 997 |
"(\<not> P) \<noteq> P" "P \<noteq> (\<not> P)" |
998 |
"(True = P) = P" |
|
20944 | 999 |
and eq_True: "(P = True) = P" |
60759 | 1000 |
and "(False = P) = (\<not> P)" |
20944 | 1001 |
and eq_False: "(P = False) = (\<not> P)" |
1002 |
and |
|
60759 | 1003 |
"(True \<longrightarrow> P) = P" "(False \<longrightarrow> P) = True" |
1004 |
"(P \<longrightarrow> True) = True" "(P \<longrightarrow> P) = True" |
|
1005 |
"(P \<longrightarrow> False) = (\<not> P)" "(P \<longrightarrow> \<not> P) = (\<not> P)" |
|
1006 |
"(P \<and> True) = P" "(True \<and> P) = P" |
|
1007 |
"(P \<and> False) = False" "(False \<and> P) = False" |
|
1008 |
"(P \<and> P) = P" "(P \<and> (P \<and> Q)) = (P \<and> Q)" |
|
1009 |
"(P \<and> \<not> P) = False" "(\<not> P \<and> P) = False" |
|
1010 |
"(P \<or> True) = True" "(True \<or> P) = True" |
|
1011 |
"(P \<or> False) = P" "(False \<or> P) = P" |
|
1012 |
"(P \<or> P) = P" "(P \<or> (P \<or> Q)) = (P \<or> Q)" and |
|
1013 |
"(\<forall>x. P) = P" "(\<exists>x. P) = P" "\<exists>x. x = t" "\<exists>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
|
1014 |
and |
60759 | 1015 |
"\<And>P. (\<exists>x. x = t \<and> P x) = P t" |
1016 |
"\<And>P. (\<exists>x. t = x \<and> P x) = P t" |
|
1017 |
"\<And>P. (\<forall>x. x = t \<longrightarrow> P x) = P t" |
|
1018 |
"\<And>P. (\<forall>x. t = x \<longrightarrow> P x) = P t" |
|
66109 | 1019 |
"(\<forall>x. x \<noteq> t) = False" "(\<forall>x. t \<noteq> x) = False" |
17589 | 1020 |
by (blast, blast, blast, blast, blast, iprover+) |
13421 | 1021 |
|
63575 | 1022 |
lemma disj_absorb: "A \<or> A \<longleftrightarrow> A" |
14201 | 1023 |
by blast |
1024 |
||
63575 | 1025 |
lemma disj_left_absorb: "A \<or> (A \<or> B) \<longleftrightarrow> A \<or> B" |
14201 | 1026 |
by blast |
1027 |
||
63575 | 1028 |
lemma conj_absorb: "A \<and> A \<longleftrightarrow> A" |
14201 | 1029 |
by blast |
1030 |
||
63575 | 1031 |
lemma conj_left_absorb: "A \<and> (A \<and> B) \<longleftrightarrow> A \<and> B" |
14201 | 1032 |
by blast |
1033 |
||
12281 | 1034 |
lemma eq_ac: |
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
56941
diff
changeset
|
1035 |
shows eq_commute: "a = b \<longleftrightarrow> b = a" |
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
56941
diff
changeset
|
1036 |
and iff_left_commute: "(P \<longleftrightarrow> (Q \<longleftrightarrow> R)) \<longleftrightarrow> (Q \<longleftrightarrow> (P \<longleftrightarrow> R))" |
63575 | 1037 |
and iff_assoc: "((P \<longleftrightarrow> Q) \<longleftrightarrow> R) \<longleftrightarrow> (P \<longleftrightarrow> (Q \<longleftrightarrow> R))" |
1038 |
by (iprover, blast+) |
|
1039 |
||
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
56941
diff
changeset
|
1040 |
lemma neq_commute: "a \<noteq> b \<longleftrightarrow> b \<noteq> a" by iprover |
12281 | 1041 |
|
1042 |
lemma conj_comms: |
|
63575 | 1043 |
shows conj_commute: "P \<and> Q \<longleftrightarrow> Q \<and> P" |
1044 |
and conj_left_commute: "P \<and> (Q \<and> R) \<longleftrightarrow> Q \<and> (P \<and> R)" by iprover+ |
|
1045 |
lemma conj_assoc: "(P \<and> Q) \<and> R \<longleftrightarrow> P \<and> (Q \<and> R)" by iprover |
|
12281 | 1046 |
|
19174 | 1047 |
lemmas conj_ac = conj_commute conj_left_commute conj_assoc |
1048 |
||
12281 | 1049 |
lemma disj_comms: |
63575 | 1050 |
shows disj_commute: "P \<or> Q \<longleftrightarrow> Q \<or> P" |
1051 |
and disj_left_commute: "P \<or> (Q \<or> R) \<longleftrightarrow> Q \<or> (P \<or> R)" by iprover+ |
|
1052 |
lemma disj_assoc: "(P \<or> Q) \<or> R \<longleftrightarrow> P \<or> (Q \<or> R)" by iprover |
|
12281 | 1053 |
|
19174 | 1054 |
lemmas disj_ac = disj_commute disj_left_commute disj_assoc |
1055 |
||
63575 | 1056 |
lemma conj_disj_distribL: "P \<and> (Q \<or> R) \<longleftrightarrow> P \<and> Q \<or> P \<and> R" by iprover |
1057 |
lemma conj_disj_distribR: "(P \<or> Q) \<and> R \<longleftrightarrow> P \<and> R \<or> Q \<and> R" by iprover |
|
12281 | 1058 |
|
63575 | 1059 |
lemma disj_conj_distribL: "P \<or> (Q \<and> R) \<longleftrightarrow> (P \<or> Q) \<and> (P \<or> R)" by iprover |
1060 |
lemma disj_conj_distribR: "(P \<and> Q) \<or> R \<longleftrightarrow> (P \<or> R) \<and> (Q \<or> R)" by iprover |
|
12281 | 1061 |
|
60759 | 1062 |
lemma imp_conjR: "(P \<longrightarrow> (Q \<and> R)) = ((P \<longrightarrow> Q) \<and> (P \<longrightarrow> R))" by iprover |
1063 |
lemma imp_conjL: "((P \<and> Q) \<longrightarrow> R) = (P \<longrightarrow> (Q \<longrightarrow> R))" by iprover |
|
1064 |
lemma imp_disjL: "((P \<or> Q) \<longrightarrow> R) = ((P \<longrightarrow> R) \<and> (Q \<longrightarrow> R))" by iprover |
|
12281 | 1065 |
|
61799 | 1066 |
text \<open>These two are specialized, but \<open>imp_disj_not1\<close> is useful in \<open>Auth/Yahalom\<close>.\<close> |
63575 | 1067 |
lemma imp_disj_not1: "(P \<longrightarrow> Q \<or> R) \<longleftrightarrow> (\<not> Q \<longrightarrow> P \<longrightarrow> R)" by blast |
1068 |
lemma imp_disj_not2: "(P \<longrightarrow> Q \<or> R) \<longleftrightarrow> (\<not> R \<longrightarrow> P \<longrightarrow> Q)" by blast |
|
12281 | 1069 |
|
63575 | 1070 |
lemma imp_disj1: "((P \<longrightarrow> Q) \<or> R) \<longleftrightarrow> (P \<longrightarrow> Q \<or> R)" by blast |
1071 |
lemma imp_disj2: "(Q \<or> (P \<longrightarrow> R)) \<longleftrightarrow> (P \<longrightarrow> Q \<or> R)" by blast |
|
12281 | 1072 |
|
63575 | 1073 |
lemma imp_cong: "(P = P') \<Longrightarrow> (P' \<Longrightarrow> (Q = Q')) \<Longrightarrow> ((P \<longrightarrow> Q) \<longleftrightarrow> (P' \<longrightarrow> Q'))" |
21151 | 1074 |
by iprover |
1075 |
||
63575 | 1076 |
lemma de_Morgan_disj: "\<not> (P \<or> Q) \<longleftrightarrow> \<not> P \<and> \<not> Q" by iprover |
1077 |
lemma de_Morgan_conj: "\<not> (P \<and> Q) \<longleftrightarrow> \<not> P \<or> \<not> Q" by blast |
|
1078 |
lemma not_imp: "\<not> (P \<longrightarrow> Q) \<longleftrightarrow> P \<and> \<not> Q" by blast |
|
1079 |
lemma not_iff: "P \<noteq> Q \<longleftrightarrow> (P \<longleftrightarrow> \<not> Q)" by blast |
|
1080 |
lemma disj_not1: "\<not> P \<or> Q \<longleftrightarrow> (P \<longrightarrow> Q)" by blast |
|
1081 |
lemma disj_not2: "P \<or> \<not> Q \<longleftrightarrow> (Q \<longrightarrow> P)" by blast \<comment> \<open>changes orientation :-(\<close> |
|
1082 |
lemma imp_conv_disj: "(P \<longrightarrow> Q) \<longleftrightarrow> (\<not> P) \<or> Q" by blast |
|
63561
fba08009ff3e
add lemmas contributed by Peter Gammie
Andreas Lochbihler
parents:
62958
diff
changeset
|
1083 |
lemma disj_imp: "P \<or> Q \<longleftrightarrow> \<not> P \<longrightarrow> Q" by blast |
12281 | 1084 |
|
63575 | 1085 |
lemma iff_conv_conj_imp: "(P \<longleftrightarrow> Q) \<longleftrightarrow> (P \<longrightarrow> Q) \<and> (Q \<longrightarrow> P)" by iprover |
12281 | 1086 |
|
1087 |
||
63575 | 1088 |
lemma cases_simp: "(P \<longrightarrow> Q) \<and> (\<not> P \<longrightarrow> Q) \<longleftrightarrow> Q" |
62390 | 1089 |
\<comment> \<open>Avoids duplication of subgoals after \<open>if_split\<close>, when the true and false\<close> |
61799 | 1090 |
\<comment> \<open>cases boil down to the same thing.\<close> |
12281 | 1091 |
by blast |
1092 |
||
63575 | 1093 |
lemma not_all: "\<not> (\<forall>x. P x) \<longleftrightarrow> (\<exists>x. \<not> P x)" by blast |
1094 |
lemma imp_all: "((\<forall>x. P x) \<longrightarrow> Q) \<longleftrightarrow> (\<exists>x. P x \<longrightarrow> Q)" by blast |
|
1095 |
lemma not_ex: "\<not> (\<exists>x. P x) \<longleftrightarrow> (\<forall>x. \<not> P x)" by iprover |
|
1096 |
lemma imp_ex: "((\<exists>x. P x) \<longrightarrow> Q) \<longleftrightarrow> (\<forall>x. P x \<longrightarrow> Q)" by iprover |
|
1097 |
lemma all_not_ex: "(\<forall>x. P x) \<longleftrightarrow> \<not> (\<exists>x. \<not> P x)" by blast |
|
12281 | 1098 |
|
35828
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents:
35808
diff
changeset
|
1099 |
declare All_def [no_atp] |
24286
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
paulson
parents:
24280
diff
changeset
|
1100 |
|
63575 | 1101 |
lemma ex_disj_distrib: "(\<exists>x. P x \<or> Q x) \<longleftrightarrow> (\<exists>x. P x) \<or> (\<exists>x. Q x)" by iprover |
1102 |
lemma all_conj_distrib: "(\<forall>x. P x \<and> Q x) \<longleftrightarrow> (\<forall>x. P x) \<and> (\<forall>x. Q x)" by iprover |
|
79772
817d33f8aa7f
Moving valuable library material from Martingales into the distribution
paulson <lp15@cam.ac.uk>
parents:
78800
diff
changeset
|
1103 |
lemma all_imp_conj_distrib: "(\<forall>x. P x \<longrightarrow> Q x \<and> R x) \<longleftrightarrow> (\<forall>x. P x \<longrightarrow> Q x) \<and> (\<forall>x. P x \<longrightarrow> R x)" |
817d33f8aa7f
Moving valuable library material from Martingales into the distribution
paulson <lp15@cam.ac.uk>
parents:
78800
diff
changeset
|
1104 |
by iprover |
12281 | 1105 |
|
60758 | 1106 |
text \<open> |
63575 | 1107 |
\<^medskip> The \<open>\<and>\<close> congruence rule: not included by default! |
60758 | 1108 |
May slow rewrite proofs down by as much as 50\%\<close> |
12281 | 1109 |
|
63575 | 1110 |
lemma conj_cong: "P = P' \<Longrightarrow> (P' \<Longrightarrow> Q = Q') \<Longrightarrow> (P \<and> Q) = (P' \<and> Q')" |
17589 | 1111 |
by iprover |
12281 | 1112 |
|
63575 | 1113 |
lemma rev_conj_cong: "Q = Q' \<Longrightarrow> (Q' \<Longrightarrow> P = P') \<Longrightarrow> (P \<and> Q) = (P' \<and> Q')" |
17589 | 1114 |
by iprover |
12281 | 1115 |
|
61799 | 1116 |
text \<open>The \<open>|\<close> congruence rule: not included by default!\<close> |
12281 | 1117 |
|
63575 | 1118 |
lemma disj_cong: "P = P' \<Longrightarrow> (\<not> P' \<Longrightarrow> Q = Q') \<Longrightarrow> (P \<or> Q) = (P' \<or> Q')" |
12281 | 1119 |
by blast |
1120 |
||
1121 |
||
63575 | 1122 |
text \<open>\<^medskip> if-then-else rules\<close> |
12281 | 1123 |
|
32068 | 1124 |
lemma if_True [code]: "(if True then x else y) = x" |
63575 | 1125 |
unfolding If_def by blast |
12281 | 1126 |
|
32068 | 1127 |
lemma if_False [code]: "(if False then x else y) = y" |
63575 | 1128 |
unfolding If_def by blast |
12281 | 1129 |
|
60759 | 1130 |
lemma if_P: "P \<Longrightarrow> (if P then x else y) = x" |
63575 | 1131 |
unfolding If_def by blast |
12281 | 1132 |
|
60759 | 1133 |
lemma if_not_P: "\<not> P \<Longrightarrow> (if P then x else y) = y" |
63575 | 1134 |
unfolding If_def by blast |
12281 | 1135 |
|
62390 | 1136 |
lemma if_split: "P (if Q then x else y) = ((Q \<longrightarrow> P x) \<and> (\<not> Q \<longrightarrow> P y))" |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1137 |
proof (rule case_split [of Q]) |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1138 |
show ?thesis if Q |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1139 |
using that by (simplesubst if_P) blast+ |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1140 |
show ?thesis if "\<not> Q" |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1141 |
using that by (simplesubst if_not_P) blast+ |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1142 |
qed |
12281 | 1143 |
|
62390 | 1144 |
lemma if_split_asm: "P (if Q then x else y) = (\<not> ((Q \<and> \<not> P x) \<or> (\<not> Q \<and> \<not> P y)))" |
63575 | 1145 |
by (simplesubst if_split) blast |
12281 | 1146 |
|
62390 | 1147 |
lemmas if_splits [no_atp] = if_split if_split_asm |
12281 | 1148 |
|
1149 |
lemma if_cancel: "(if c then x else x) = x" |
|
63575 | 1150 |
by (simplesubst if_split) blast |
12281 | 1151 |
|
1152 |
lemma if_eq_cancel: "(if x = y then y else x) = x" |
|
63575 | 1153 |
by (simplesubst if_split) blast |
12281 | 1154 |
|
60759 | 1155 |
lemma if_bool_eq_conj: "(if P then Q else R) = ((P \<longrightarrow> Q) \<and> (\<not> P \<longrightarrow> R))" |
61799 | 1156 |
\<comment> \<open>This form is useful for expanding \<open>if\<close>s on the RIGHT of the \<open>\<Longrightarrow>\<close> symbol.\<close> |
62390 | 1157 |
by (rule if_split) |
12281 | 1158 |
|
60759 | 1159 |
lemma if_bool_eq_disj: "(if P then Q else R) = ((P \<and> Q) \<or> (\<not> P \<and> R))" |
61799 | 1160 |
\<comment> \<open>And this form is useful for expanding \<open>if\<close>s on the LEFT.\<close> |
62390 | 1161 |
by (simplesubst if_split) blast |
12281 | 1162 |
|
63575 | 1163 |
lemma Eq_TrueI: "P \<Longrightarrow> P \<equiv> True" unfolding atomize_eq by iprover |
1164 |
lemma Eq_FalseI: "\<not> P \<Longrightarrow> P \<equiv> False" unfolding atomize_eq by iprover |
|
12281 | 1165 |
|
63575 | 1166 |
text \<open>\<^medskip> let rules for simproc\<close> |
15423 | 1167 |
|
60759 | 1168 |
lemma Let_folded: "f x \<equiv> g x \<Longrightarrow> Let x f \<equiv> Let x g" |
15423 | 1169 |
by (unfold Let_def) |
1170 |
||
60759 | 1171 |
lemma Let_unfold: "f x \<equiv> g \<Longrightarrow> Let x f \<equiv> g" |
15423 | 1172 |
by (unfold Let_def) |
1173 |
||
60758 | 1174 |
text \<open> |
16999 | 1175 |
The following copy of the implication operator is useful for |
1176 |
fine-tuning congruence rules. It instructs the simplifier to simplify |
|
1177 |
its premise. |
|
60758 | 1178 |
\<close> |
16633
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents:
16587
diff
changeset
|
1179 |
|
80932
261cd8722677
standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents:
80762
diff
changeset
|
1180 |
definition simp_implies :: "prop \<Rightarrow> prop \<Rightarrow> prop" (infixr \<open>=simp=>\<close> 1) |
67399 | 1181 |
where "simp_implies \<equiv> (\<Longrightarrow>)" |
16633
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents:
16587
diff
changeset
|
1182 |
|
18457 | 1183 |
lemma simp_impliesI: |
16633
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents:
16587
diff
changeset
|
1184 |
assumes PQ: "(PROP P \<Longrightarrow> PROP Q)" |
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents:
16587
diff
changeset
|
1185 |
shows "PROP P =simp=> PROP Q" |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1186 |
unfolding simp_implies_def |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1187 |
by (iprover intro: PQ) |
16633
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents:
16587
diff
changeset
|
1188 |
|
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents:
16587
diff
changeset
|
1189 |
lemma simp_impliesE: |
25388 | 1190 |
assumes PQ: "PROP P =simp=> PROP Q" |
63575 | 1191 |
and P: "PROP P" |
1192 |
and QR: "PROP Q \<Longrightarrow> PROP R" |
|
16633
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents:
16587
diff
changeset
|
1193 |
shows "PROP R" |
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1194 |
by (iprover intro: QR P PQ [unfolded simp_implies_def]) |
16633
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents:
16587
diff
changeset
|
1195 |
|
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents:
16587
diff
changeset
|
1196 |
lemma simp_implies_cong: |
60759 | 1197 |
assumes PP' :"PROP P \<equiv> PROP P'" |
63575 | 1198 |
and P'QQ': "PROP P' \<Longrightarrow> (PROP Q \<equiv> PROP Q')" |
60759 | 1199 |
shows "(PROP P =simp=> PROP Q) \<equiv> (PROP P' =simp=> PROP Q')" |
63575 | 1200 |
unfolding simp_implies_def |
1201 |
proof (rule equal_intr_rule) |
|
16633
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents:
16587
diff
changeset
|
1202 |
assume PQ: "PROP P \<Longrightarrow> PROP Q" |
63575 | 1203 |
and P': "PROP P'" |
16633
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents:
16587
diff
changeset
|
1204 |
from PP' [symmetric] and P' have "PROP P" |
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents:
16587
diff
changeset
|
1205 |
by (rule equal_elim_rule1) |
23553 | 1206 |
then have "PROP Q" by (rule PQ) |
16633
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents:
16587
diff
changeset
|
1207 |
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
|
1208 |
next |
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents:
16587
diff
changeset
|
1209 |
assume P'Q': "PROP P' \<Longrightarrow> PROP Q'" |
63575 | 1210 |
and P: "PROP P" |
16633
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents:
16587
diff
changeset
|
1211 |
from PP' and P have P': "PROP P'" by (rule equal_elim_rule1) |
23553 | 1212 |
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
|
1213 |
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
|
1214 |
by (rule equal_elim_rule1) |
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents:
16587
diff
changeset
|
1215 |
qed |
208ebc9311f2
Implemented trick (due to Tobias Nipkow) for fine-tuning simplification
berghofe
parents:
16587
diff
changeset
|
1216 |
|
20944 | 1217 |
lemma uncurry: |
1218 |
assumes "P \<longrightarrow> Q \<longrightarrow> R" |
|
1219 |
shows "P \<and> Q \<longrightarrow> R" |
|
23553 | 1220 |
using assms by blast |
20944 | 1221 |
|
1222 |
lemma iff_allI: |
|
1223 |
assumes "\<And>x. P x = Q x" |
|
1224 |
shows "(\<forall>x. P x) = (\<forall>x. Q x)" |
|
23553 | 1225 |
using assms by blast |
20944 | 1226 |
|
1227 |
lemma iff_exI: |
|
1228 |
assumes "\<And>x. P x = Q x" |
|
1229 |
shows "(\<exists>x. P x) = (\<exists>x. Q x)" |
|
23553 | 1230 |
using assms by blast |
20944 | 1231 |
|
63575 | 1232 |
lemma all_comm: "(\<forall>x y. P x y) = (\<forall>y x. P x y)" |
20944 | 1233 |
by blast |
1234 |
||
63575 | 1235 |
lemma ex_comm: "(\<exists>x y. P x y) = (\<exists>y x. P x y)" |
20944 | 1236 |
by blast |
1237 |
||
69605 | 1238 |
ML_file \<open>Tools/simpdata.ML\<close> |
60758 | 1239 |
ML \<open>open Simpdata\<close> |
42455 | 1240 |
|
60758 | 1241 |
setup \<open> |
58826 | 1242 |
map_theory_simpset (put_simpset HOL_basic_ss) #> |
1243 |
Simplifier.method_setup Splitter.split_modifiers |
|
60758 | 1244 |
\<close> |
42455 | 1245 |
|
71886 | 1246 |
simproc_setup defined_Ex ("\<exists>x. P x") = \<open>K Quantifier1.rearrange_Ex\<close> |
1247 |
simproc_setup defined_All ("\<forall>x. P x") = \<open>K Quantifier1.rearrange_All\<close> |
|
71914 | 1248 |
simproc_setup defined_all("\<And>x. PROP P x") = \<open>K Quantifier1.rearrange_all\<close> |
1249 |
||
61799 | 1250 |
text \<open>Simproc for proving \<open>(y = x) \<equiv> False\<close> from premise \<open>\<not> (x = y)\<close>:\<close> |
24035 | 1251 |
|
78099
4d9349989d94
more uniform simproc_setup: avoid vacuous abstraction over morphism, which sometimes captures context values in its functional closure;
wenzelm
parents:
77172
diff
changeset
|
1252 |
simproc_setup neq ("x = y") = \<open> |
63575 | 1253 |
let |
1254 |
val neq_to_EQ_False = @{thm not_sym} RS @{thm Eq_FalseI}; |
|
1255 |
fun is_neq eq lhs rhs thm = |
|
1256 |
(case Thm.prop_of thm of |
|
1257 |
_ $ (Not $ (eq' $ l' $ r')) => |
|
1258 |
Not = HOLogic.Not andalso eq' = eq andalso |
|
1259 |
r' aconv lhs andalso l' aconv rhs |
|
1260 |
| _ => false); |
|
1261 |
fun proc ss ct = |
|
1262 |
(case Thm.term_of ct of |
|
1263 |
eq $ lhs $ rhs => |
|
1264 |
(case find_first (is_neq eq lhs rhs) (Simplifier.prems_of ss) of |
|
1265 |
SOME thm => SOME (thm RS neq_to_EQ_False) |
|
1266 |
| NONE => NONE) |
|
1267 |
| _ => NONE); |
|
78099
4d9349989d94
more uniform simproc_setup: avoid vacuous abstraction over morphism, which sometimes captures context values in its functional closure;
wenzelm
parents:
77172
diff
changeset
|
1268 |
in K proc end |
60758 | 1269 |
\<close> |
24035 | 1270 |
|
60758 | 1271 |
simproc_setup let_simp ("Let x f") = \<open> |
63575 | 1272 |
let |
1273 |
fun count_loose (Bound i) k = if i >= k then 1 else 0 |
|
1274 |
| count_loose (s $ t) k = count_loose s k + count_loose t k |
|
1275 |
| count_loose (Abs (_, _, t)) k = count_loose t (k + 1) |
|
1276 |
| count_loose _ _ = 0; |
|
80662 | 1277 |
fun is_trivial_let \<^Const_>\<open>Let _ _ for x t\<close> = |
63575 | 1278 |
(case t of |
1279 |
Abs (_, _, t') => count_loose t' 0 <= 1 |
|
1280 |
| _ => true); |
|
1281 |
in |
|
78099
4d9349989d94
more uniform simproc_setup: avoid vacuous abstraction over morphism, which sometimes captures context values in its functional closure;
wenzelm
parents:
77172
diff
changeset
|
1282 |
K (fn ctxt => fn ct => |
63575 | 1283 |
if is_trivial_let (Thm.term_of ct) |
1284 |
then SOME @{thm Let_def} (*no or one ocurrence of bound variable*) |
|
1285 |
else |
|
1286 |
let (*Norbert Schirmer's case*) |
|
1287 |
val t = Thm.term_of ct; |
|
70326 | 1288 |
val (t', ctxt') = yield_singleton (Variable.import_terms false) t ctxt; |
63575 | 1289 |
in |
1290 |
Option.map (hd o Variable.export ctxt' ctxt o single) |
|
80662 | 1291 |
(case t' of \<^Const_>\<open>Let _ _ for x f\<close> => (* x and f are already in normal form *) |
63575 | 1292 |
if is_Free x orelse is_Bound x orelse is_Const x |
1293 |
then SOME @{thm Let_def} |
|
1294 |
else |
|
1295 |
let |
|
1296 |
val n = case f of (Abs (x, _, _)) => x | _ => "x"; |
|
1297 |
val cx = Thm.cterm_of ctxt x; |
|
1298 |
val xT = Thm.typ_of_cterm cx; |
|
1299 |
val cf = Thm.cterm_of ctxt f; |
|
1300 |
val fx_g = Simplifier.rewrite ctxt (Thm.apply cf cx); |
|
1301 |
val (_ $ _ $ g) = Thm.prop_of fx_g; |
|
1302 |
val g' = abstract_over (x, g); |
|
1303 |
val abs_g'= Abs (n, xT, g'); |
|
1304 |
in |
|
1305 |
if g aconv g' then |
|
1306 |
let |
|
1307 |
val rl = |
|
1308 |
infer_instantiate ctxt [(("f", 0), cf), (("x", 0), cx)] @{thm Let_unfold}; |
|
1309 |
in SOME (rl OF [fx_g]) end |
|
1310 |
else if (Envir.beta_eta_contract f) aconv (Envir.beta_eta_contract abs_g') |
|
1311 |
then NONE (*avoid identity conversion*) |
|
1312 |
else |
|
1313 |
let |
|
1314 |
val g'x = abs_g' $ x; |
|
1315 |
val g_g'x = Thm.symmetric (Thm.beta_conversion false (Thm.cterm_of ctxt g'x)); |
|
1316 |
val rl = |
|
1317 |
@{thm Let_folded} |> infer_instantiate ctxt |
|
1318 |
[(("f", 0), Thm.cterm_of ctxt f), |
|
1319 |
(("x", 0), cx), |
|
1320 |
(("g", 0), Thm.cterm_of ctxt abs_g')]; |
|
1321 |
in SOME (rl OF [Thm.transitive fx_g g_g'x]) end |
|
1322 |
end |
|
1323 |
| _ => NONE) |
|
78099
4d9349989d94
more uniform simproc_setup: avoid vacuous abstraction over morphism, which sometimes captures context values in its functional closure;
wenzelm
parents:
77172
diff
changeset
|
1324 |
end) |
63575 | 1325 |
end |
1326 |
\<close> |
|
24035 | 1327 |
|
21151 | 1328 |
lemma True_implies_equals: "(True \<Longrightarrow> PROP P) \<equiv> PROP P" |
1329 |
proof |
|
23389 | 1330 |
assume "True \<Longrightarrow> PROP P" |
1331 |
from this [OF TrueI] show "PROP P" . |
|
21151 | 1332 |
next |
1333 |
assume "PROP P" |
|
23389 | 1334 |
then show "PROP P" . |
21151 | 1335 |
qed |
1336 |
||
59864 | 1337 |
lemma implies_True_equals: "(PROP P \<Longrightarrow> True) \<equiv> Trueprop True" |
61169 | 1338 |
by standard (intro TrueI) |
59864 | 1339 |
|
1340 |
lemma False_implies_equals: "(False \<Longrightarrow> P) \<equiv> Trueprop True" |
|
61169 | 1341 |
by standard simp_all |
59864 | 1342 |
|
71842
db120661dded
new HOL simproc: eliminate_false_implies
Manuel Eberl <eberlm@in.tum.de>
parents:
71833
diff
changeset
|
1343 |
(* It seems that making this a simp rule is slower than using the simproc below *) |
63575 | 1344 |
lemma implies_False_swap: |
71842
db120661dded
new HOL simproc: eliminate_false_implies
Manuel Eberl <eberlm@in.tum.de>
parents:
71833
diff
changeset
|
1345 |
"(False \<Longrightarrow> PROP P \<Longrightarrow> PROP Q) \<equiv> (PROP P \<Longrightarrow> False \<Longrightarrow> PROP Q)" |
63575 | 1346 |
by (rule swap_prems_eq) |
60169
5ef8ed685965
swap False to the right in assumptions to be eliminated at the right end
nipkow
parents:
60151
diff
changeset
|
1347 |
|
80663 | 1348 |
simproc_setup eliminate_false_implies ("False \<Longrightarrow> PROP P") = \<open> |
71842
db120661dded
new HOL simproc: eliminate_false_implies
Manuel Eberl <eberlm@in.tum.de>
parents:
71833
diff
changeset
|
1349 |
let |
80663 | 1350 |
fun conv n = |
71842
db120661dded
new HOL simproc: eliminate_false_implies
Manuel Eberl <eberlm@in.tum.de>
parents:
71833
diff
changeset
|
1351 |
if n > 1 then |
db120661dded
new HOL simproc: eliminate_false_implies
Manuel Eberl <eberlm@in.tum.de>
parents:
71833
diff
changeset
|
1352 |
Conv.rewr_conv @{thm Pure.swap_prems_eq} |
80663 | 1353 |
then_conv Conv.arg_conv (conv (n - 1)) |
71842
db120661dded
new HOL simproc: eliminate_false_implies
Manuel Eberl <eberlm@in.tum.de>
parents:
71833
diff
changeset
|
1354 |
then_conv Conv.rewr_conv @{thm HOL.implies_True_equals} |
db120661dded
new HOL simproc: eliminate_false_implies
Manuel Eberl <eberlm@in.tum.de>
parents:
71833
diff
changeset
|
1355 |
else |
db120661dded
new HOL simproc: eliminate_false_implies
Manuel Eberl <eberlm@in.tum.de>
parents:
71833
diff
changeset
|
1356 |
Conv.rewr_conv @{thm HOL.False_implies_equals} |
db120661dded
new HOL simproc: eliminate_false_implies
Manuel Eberl <eberlm@in.tum.de>
parents:
71833
diff
changeset
|
1357 |
in |
80663 | 1358 |
fn _ => fn _ => fn ct => |
1359 |
let |
|
1360 |
val t = Thm.term_of ct |
|
1361 |
val n = length (Logic.strip_imp_prems t) |
|
1362 |
in |
|
1363 |
(case Logic.strip_imp_concl t of |
|
1364 |
\<^Const_>\<open>Trueprop for _\<close> => SOME (conv n ct) |
|
1365 |
| _ => NONE) |
|
1366 |
end |
|
71842
db120661dded
new HOL simproc: eliminate_false_implies
Manuel Eberl <eberlm@in.tum.de>
parents:
71833
diff
changeset
|
1367 |
end |
db120661dded
new HOL simproc: eliminate_false_implies
Manuel Eberl <eberlm@in.tum.de>
parents:
71833
diff
changeset
|
1368 |
\<close> |
db120661dded
new HOL simproc: eliminate_false_implies
Manuel Eberl <eberlm@in.tum.de>
parents:
71833
diff
changeset
|
1369 |
|
db120661dded
new HOL simproc: eliminate_false_implies
Manuel Eberl <eberlm@in.tum.de>
parents:
71833
diff
changeset
|
1370 |
|
21151 | 1371 |
lemma ex_simps: |
60759 | 1372 |
"\<And>P Q. (\<exists>x. P x \<and> Q) = ((\<exists>x. P x) \<and> Q)" |
1373 |
"\<And>P Q. (\<exists>x. P \<and> Q x) = (P \<and> (\<exists>x. Q x))" |
|
1374 |
"\<And>P Q. (\<exists>x. P x \<or> Q) = ((\<exists>x. P x) \<or> Q)" |
|
1375 |
"\<And>P Q. (\<exists>x. P \<or> Q x) = (P \<or> (\<exists>x. Q x))" |
|
1376 |
"\<And>P Q. (\<exists>x. P x \<longrightarrow> Q) = ((\<forall>x. P x) \<longrightarrow> Q)" |
|
1377 |
"\<And>P Q. (\<exists>x. P \<longrightarrow> Q x) = (P \<longrightarrow> (\<exists>x. Q x))" |
|
61799 | 1378 |
\<comment> \<open>Miniscoping: pushing in existential quantifiers.\<close> |
21151 | 1379 |
by (iprover | blast)+ |
1380 |
||
1381 |
lemma all_simps: |
|
60759 | 1382 |
"\<And>P Q. (\<forall>x. P x \<and> Q) = ((\<forall>x. P x) \<and> Q)" |
1383 |
"\<And>P Q. (\<forall>x. P \<and> Q x) = (P \<and> (\<forall>x. Q x))" |
|
1384 |
"\<And>P Q. (\<forall>x. P x \<or> Q) = ((\<forall>x. P x) \<or> Q)" |
|
1385 |
"\<And>P Q. (\<forall>x. P \<or> Q x) = (P \<or> (\<forall>x. Q x))" |
|
1386 |
"\<And>P Q. (\<forall>x. P x \<longrightarrow> Q) = ((\<exists>x. P x) \<longrightarrow> Q)" |
|
1387 |
"\<And>P Q. (\<forall>x. P \<longrightarrow> Q x) = (P \<longrightarrow> (\<forall>x. Q x))" |
|
61799 | 1388 |
\<comment> \<open>Miniscoping: pushing in universal quantifiers.\<close> |
21151 | 1389 |
by (iprover | blast)+ |
15481 | 1390 |
|
21671 | 1391 |
lemmas [simp] = |
63575 | 1392 |
triv_forall_equality \<comment> \<open>prunes params\<close> |
1393 |
True_implies_equals implies_True_equals \<comment> \<open>prune \<open>True\<close> in asms\<close> |
|
1394 |
False_implies_equals \<comment> \<open>prune \<open>False\<close> in asms\<close> |
|
21671 | 1395 |
if_True |
1396 |
if_False |
|
1397 |
if_cancel |
|
1398 |
if_eq_cancel |
|
67443
3abf6a722518
standardized towards new-style formal comments: isabelle update_comments;
wenzelm
parents:
67405
diff
changeset
|
1399 |
imp_disjL \<comment> \<open>In general it seems wrong to add distributive laws by default: they |
63575 | 1400 |
might cause exponential blow-up. But \<open>imp_disjL\<close> has been in for a while |
20973 | 1401 |
and cannot be removed without affecting existing proofs. Moreover, |
63575 | 1402 |
rewriting by \<open>(P \<or> Q \<longrightarrow> R) = ((P \<longrightarrow> R) \<and> (Q \<longrightarrow> R))\<close> might be justified on the |
1403 |
grounds that it allows simplification of \<open>R\<close> in the two cases.\<close> |
|
21671 | 1404 |
conj_assoc |
1405 |
disj_assoc |
|
1406 |
de_Morgan_conj |
|
1407 |
de_Morgan_disj |
|
1408 |
imp_disj1 |
|
1409 |
imp_disj2 |
|
1410 |
not_imp |
|
1411 |
disj_not1 |
|
1412 |
not_all |
|
1413 |
not_ex |
|
1414 |
cases_simp |
|
1415 |
the_eq_trivial |
|
1416 |
the_sym_eq_trivial |
|
1417 |
ex_simps |
|
1418 |
all_simps |
|
1419 |
simp_thms |
|
71918 | 1420 |
subst_all |
21671 | 1421 |
|
1422 |
lemmas [cong] = imp_cong simp_implies_cong |
|
62390 | 1423 |
lemmas [split] = if_split |
20973 | 1424 |
|
69593 | 1425 |
ML \<open>val HOL_ss = simpset_of \<^context>\<close> |
20973 | 1426 |
|
63575 | 1427 |
text \<open>Simplifies \<open>x\<close> assuming \<open>c\<close> and \<open>y\<close> assuming \<open>\<not> c\<close>.\<close> |
20944 | 1428 |
lemma if_cong: |
1429 |
assumes "b = c" |
|
63575 | 1430 |
and "c \<Longrightarrow> x = u" |
1431 |
and "\<not> c \<Longrightarrow> y = v" |
|
20944 | 1432 |
shows "(if b then x else y) = (if c then u else v)" |
38525 | 1433 |
using assms by simp |
20944 | 1434 |
|
63575 | 1435 |
text \<open>Prevents simplification of \<open>x\<close> and \<open>y\<close>: |
60758 | 1436 |
faster and allows the execution of functional programs.\<close> |
20944 | 1437 |
lemma if_weak_cong [cong]: |
1438 |
assumes "b = c" |
|
1439 |
shows "(if b then x else y) = (if c then x else y)" |
|
23553 | 1440 |
using assms by (rule arg_cong) |
20944 | 1441 |
|
60758 | 1442 |
text \<open>Prevents simplification of t: much faster\<close> |
20944 | 1443 |
lemma let_weak_cong: |
1444 |
assumes "a = b" |
|
1445 |
shows "(let x = a in t x) = (let x = b in t x)" |
|
23553 | 1446 |
using assms by (rule arg_cong) |
20944 | 1447 |
|
60758 | 1448 |
text \<open>To tidy up the result of a simproc. Only the RHS will be simplified.\<close> |
20944 | 1449 |
lemma eq_cong2: |
1450 |
assumes "u = u'" |
|
1451 |
shows "(t \<equiv> u) \<equiv> (t \<equiv> u')" |
|
23553 | 1452 |
using assms by simp |
20944 | 1453 |
|
63575 | 1454 |
lemma if_distrib: "f (if c then x else y) = (if c then f x else f y)" |
20944 | 1455 |
by simp |
1456 |
||
68072
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
immler
parents:
67719
diff
changeset
|
1457 |
lemma if_distribR: "(if b then f else g) x = (if b then f x else g x)" |
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
immler
parents:
67719
diff
changeset
|
1458 |
by simp |
493b818e8e10
added Johannes' generalizations Modules.thy and Vector_Spaces.thy; adapted HOL and HOL-Analysis accordingly
immler
parents:
67719
diff
changeset
|
1459 |
|
67673
c8caefb20564
lots of new material, ultimately related to measure theory
paulson <lp15@cam.ac.uk>
parents:
67443
diff
changeset
|
1460 |
lemma all_if_distrib: "(\<forall>x. if x = a then P x else Q x) \<longleftrightarrow> P a \<and> (\<forall>x. x\<noteq>a \<longrightarrow> Q x)" |
c8caefb20564
lots of new material, ultimately related to measure theory
paulson <lp15@cam.ac.uk>
parents:
67443
diff
changeset
|
1461 |
by auto |
c8caefb20564
lots of new material, ultimately related to measure theory
paulson <lp15@cam.ac.uk>
parents:
67443
diff
changeset
|
1462 |
|
c8caefb20564
lots of new material, ultimately related to measure theory
paulson <lp15@cam.ac.uk>
parents:
67443
diff
changeset
|
1463 |
lemma ex_if_distrib: "(\<exists>x. if x = a then P x else Q x) \<longleftrightarrow> P a \<or> (\<exists>x. x\<noteq>a \<and> Q x)" |
c8caefb20564
lots of new material, ultimately related to measure theory
paulson <lp15@cam.ac.uk>
parents:
67443
diff
changeset
|
1464 |
by auto |
c8caefb20564
lots of new material, ultimately related to measure theory
paulson <lp15@cam.ac.uk>
parents:
67443
diff
changeset
|
1465 |
|
67719
bffb7482faaa
new material on matrices, etc., and consolidating duplicate results about of_nat
paulson <lp15@cam.ac.uk>
parents:
67673
diff
changeset
|
1466 |
lemma if_if_eq_conj: "(if P then if Q then x else y else y) = (if P \<and> Q then x else y)" |
bffb7482faaa
new material on matrices, etc., and consolidating duplicate results about of_nat
paulson <lp15@cam.ac.uk>
parents:
67673
diff
changeset
|
1467 |
by simp |
bffb7482faaa
new material on matrices, etc., and consolidating duplicate results about of_nat
paulson <lp15@cam.ac.uk>
parents:
67673
diff
changeset
|
1468 |
|
63575 | 1469 |
text \<open>As a simplification rule, it replaces all function equalities by |
60758 | 1470 |
first-order equalities.\<close> |
44277
bcb696533579
moved fundamental lemma fun_eq_iff to theory HOL; tuned whitespace
haftmann
parents:
44121
diff
changeset
|
1471 |
lemma fun_eq_iff: "f = g \<longleftrightarrow> (\<forall>x. f x = g x)" |
bcb696533579
moved fundamental lemma fun_eq_iff to theory HOL; tuned whitespace
haftmann
parents:
44121
diff
changeset
|
1472 |
by auto |
bcb696533579
moved fundamental lemma fun_eq_iff to theory HOL; tuned whitespace
haftmann
parents:
44121
diff
changeset
|
1473 |
|
17459 | 1474 |
|
60758 | 1475 |
subsubsection \<open>Generic cases and induction\<close> |
17459 | 1476 |
|
60758 | 1477 |
text \<open>Rule projections:\<close> |
1478 |
ML \<open> |
|
32172 | 1479 |
structure Project_Rule = Project_Rule |
25388 | 1480 |
( |
27126
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
wenzelm
parents:
27107
diff
changeset
|
1481 |
val conjunct1 = @{thm conjunct1} |
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
wenzelm
parents:
27107
diff
changeset
|
1482 |
val conjunct2 = @{thm conjunct2} |
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
wenzelm
parents:
27107
diff
changeset
|
1483 |
val mp = @{thm mp} |
59929 | 1484 |
); |
60758 | 1485 |
\<close> |
17459 | 1486 |
|
59940
087d81f5213e
local setup of induction tools, with restricted access to auxiliary consts;
wenzelm
parents:
59929
diff
changeset
|
1487 |
context |
087d81f5213e
local setup of induction tools, with restricted access to auxiliary consts;
wenzelm
parents:
59929
diff
changeset
|
1488 |
begin |
087d81f5213e
local setup of induction tools, with restricted access to auxiliary consts;
wenzelm
parents:
59929
diff
changeset
|
1489 |
|
59990
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59970
diff
changeset
|
1490 |
qualified definition "induct_forall P \<equiv> \<forall>x. P x" |
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59970
diff
changeset
|
1491 |
qualified definition "induct_implies A B \<equiv> A \<longrightarrow> B" |
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59970
diff
changeset
|
1492 |
qualified definition "induct_equal x y \<equiv> x = y" |
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59970
diff
changeset
|
1493 |
qualified definition "induct_conj A B \<equiv> A \<and> B" |
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59970
diff
changeset
|
1494 |
qualified definition "induct_true \<equiv> True" |
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents:
59970
diff
changeset
|
1495 |
qualified definition "induct_false \<equiv> False" |
35416
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
haftmann
parents:
35115
diff
changeset
|
1496 |
|
59929 | 1497 |
lemma induct_forall_eq: "(\<And>x. P x) \<equiv> Trueprop (induct_forall (\<lambda>x. P x))" |
18457 | 1498 |
by (unfold atomize_all induct_forall_def) |
11824
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
wenzelm
parents:
11770
diff
changeset
|
1499 |
|
59929 | 1500 |
lemma induct_implies_eq: "(A \<Longrightarrow> B) \<equiv> Trueprop (induct_implies A B)" |
18457 | 1501 |
by (unfold atomize_imp induct_implies_def) |
11824
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
wenzelm
parents:
11770
diff
changeset
|
1502 |
|
59929 | 1503 |
lemma induct_equal_eq: "(x \<equiv> y) \<equiv> Trueprop (induct_equal x y)" |
18457 | 1504 |
by (unfold atomize_eq induct_equal_def) |
1505 |
||
59929 | 1506 |
lemma induct_conj_eq: "(A &&& B) \<equiv> Trueprop (induct_conj A B)" |
18457 | 1507 |
by (unfold atomize_conj induct_conj_def) |
1508 |
||
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1509 |
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
|
1510 |
lemmas induct_atomize = induct_atomize' induct_equal_eq |
45607 | 1511 |
lemmas induct_rulify' [symmetric] = induct_atomize' |
1512 |
lemmas induct_rulify [symmetric] = induct_atomize |
|
18457 | 1513 |
lemmas induct_rulify_fallback = |
1514 |
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
|
1515 |
induct_true_def induct_false_def |
18457 | 1516 |
|
11989 | 1517 |
lemma induct_forall_conj: "induct_forall (\<lambda>x. induct_conj (A x) (B x)) = |
1518 |
induct_conj (induct_forall A) (induct_forall B)" |
|
17589 | 1519 |
by (unfold induct_forall_def induct_conj_def) iprover |
11824
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
wenzelm
parents:
11770
diff
changeset
|
1520 |
|
11989 | 1521 |
lemma induct_implies_conj: "induct_implies C (induct_conj A B) = |
1522 |
induct_conj (induct_implies C A) (induct_implies C B)" |
|
17589 | 1523 |
by (unfold induct_implies_def induct_conj_def) iprover |
11989 | 1524 |
|
59929 | 1525 |
lemma induct_conj_curry: "(induct_conj A B \<Longrightarrow> PROP C) \<equiv> (A \<Longrightarrow> B \<Longrightarrow> PROP C)" |
13598
8bc77b17f59f
Fixed problem with induct_conj_curry: variable C should have type prop.
berghofe
parents:
13596
diff
changeset
|
1526 |
proof |
59929 | 1527 |
assume r: "induct_conj A B \<Longrightarrow> PROP C" |
1528 |
assume ab: A B |
|
1529 |
show "PROP C" by (rule r) (simp add: induct_conj_def ab) |
|
13598
8bc77b17f59f
Fixed problem with induct_conj_curry: variable C should have type prop.
berghofe
parents:
13596
diff
changeset
|
1530 |
next |
59929 | 1531 |
assume r: "A \<Longrightarrow> B \<Longrightarrow> PROP C" |
1532 |
assume ab: "induct_conj A B" |
|
1533 |
show "PROP C" by (rule r) (simp_all add: ab [unfolded induct_conj_def]) |
|
13598
8bc77b17f59f
Fixed problem with induct_conj_curry: variable C should have type prop.
berghofe
parents:
13596
diff
changeset
|
1534 |
qed |
11824
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
wenzelm
parents:
11770
diff
changeset
|
1535 |
|
11989 | 1536 |
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
|
1537 |
|
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1538 |
lemma induct_trueI: "induct_true" |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1539 |
by (simp add: induct_true_def) |
11824
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
wenzelm
parents:
11770
diff
changeset
|
1540 |
|
60758 | 1541 |
text \<open>Method setup.\<close> |
11824
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
wenzelm
parents:
11770
diff
changeset
|
1542 |
|
69605 | 1543 |
ML_file \<open>~~/src/Tools/induct.ML\<close> |
60758 | 1544 |
ML \<open> |
32171 | 1545 |
structure Induct = Induct |
27126
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
wenzelm
parents:
27107
diff
changeset
|
1546 |
( |
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
wenzelm
parents:
27107
diff
changeset
|
1547 |
val cases_default = @{thm case_split} |
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
wenzelm
parents:
27107
diff
changeset
|
1548 |
val atomize = @{thms induct_atomize} |
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1549 |
val rulify = @{thms induct_rulify'} |
27126
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
wenzelm
parents:
27107
diff
changeset
|
1550 |
val rulify_fallback = @{thms induct_rulify_fallback} |
34988
cca208c8d619
Added setup for simplification of equality constraints in cases rules.
berghofe
parents:
34917
diff
changeset
|
1551 |
val equal_def = @{thm induct_equal_def} |
80662 | 1552 |
fun dest_def \<^Const_>\<open>induct_equal _ for t u\<close> = SOME (t, u) |
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1553 |
| dest_def _ = NONE |
58957 | 1554 |
fun trivial_tac ctxt = match_tac ctxt @{thms induct_trueI} |
27126
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
wenzelm
parents:
27107
diff
changeset
|
1555 |
) |
60758 | 1556 |
\<close> |
11824
f4c1882dde2c
setup generic cases and induction (from Inductive.thy);
wenzelm
parents:
11770
diff
changeset
|
1557 |
|
69605 | 1558 |
ML_file \<open>~~/src/Tools/induction.ML\<close> |
45014
0e847655b2d8
New proof method "induction" that gives induction hypotheses the name IH.
nipkow
parents:
44921
diff
changeset
|
1559 |
|
78799 | 1560 |
simproc_setup passive swap_induct_false ("induct_false \<Longrightarrow> PROP P \<Longrightarrow> PROP Q") = |
78794 | 1561 |
\<open>fn _ => fn _ => fn ct => |
1562 |
(case Thm.term_of ct of |
|
1563 |
_ $ (P as _ $ \<^Const_>\<open>induct_false\<close>) $ (_ $ Q $ _) => |
|
1564 |
if P <> Q then SOME Drule.swap_prems_eq else NONE |
|
1565 |
| _ => NONE)\<close> |
|
78799 | 1566 |
|
1567 |
simproc_setup passive induct_equal_conj_curry ("induct_conj P Q \<Longrightarrow> PROP R") = |
|
78794 | 1568 |
\<open>fn _ => fn _ => fn ct => |
1569 |
(case Thm.term_of ct of |
|
1570 |
_ $ (_ $ P) $ _ => |
|
1571 |
let |
|
1572 |
fun is_conj \<^Const_>\<open>induct_conj for P Q\<close> = is_conj P andalso is_conj Q |
|
1573 |
| is_conj \<^Const_>\<open>induct_equal _ for _ _\<close> = true |
|
1574 |
| is_conj \<^Const_>\<open>induct_true\<close> = true |
|
1575 |
| is_conj \<^Const_>\<open>induct_false\<close> = true |
|
1576 |
| is_conj _ = false |
|
1577 |
in if is_conj P then SOME @{thm induct_conj_curry} else NONE end |
|
1578 |
| _ => NONE)\<close> |
|
1579 |
||
60758 | 1580 |
declaration \<open> |
80701 | 1581 |
K (Induct.map_simpset |
1582 |
(Simplifier.add_proc \<^simproc>\<open>swap_induct_false\<close> #> |
|
1583 |
Simplifier.add_proc \<^simproc>\<open>induct_equal_conj_curry\<close> #> |
|
1584 |
Simplifier.set_mksimps (fn ctxt => |
|
1585 |
Simpdata.mksimps Simpdata.mksimps_pairs ctxt #> |
|
1586 |
map (rewrite_rule ctxt (map Thm.symmetric @{thms induct_rulify_fallback}))))) |
|
60758 | 1587 |
\<close> |
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1588 |
|
60758 | 1589 |
text \<open>Pre-simplification of induction and cases rules\<close> |
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1590 |
|
59929 | 1591 |
lemma [induct_simp]: "(\<And>x. induct_equal x t \<Longrightarrow> PROP P x) \<equiv> PROP P t" |
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1592 |
unfolding induct_equal_def |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1593 |
proof |
59929 | 1594 |
assume r: "\<And>x. x = t \<Longrightarrow> PROP P x" |
1595 |
show "PROP P t" by (rule r [OF refl]) |
|
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1596 |
next |
59929 | 1597 |
fix x |
1598 |
assume "PROP P t" "x = t" |
|
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1599 |
then show "PROP P x" by simp |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1600 |
qed |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1601 |
|
59929 | 1602 |
lemma [induct_simp]: "(\<And>x. induct_equal t x \<Longrightarrow> PROP P x) \<equiv> PROP P t" |
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1603 |
unfolding induct_equal_def |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1604 |
proof |
59929 | 1605 |
assume r: "\<And>x. t = x \<Longrightarrow> PROP P x" |
1606 |
show "PROP P t" by (rule r [OF refl]) |
|
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1607 |
next |
59929 | 1608 |
fix x |
1609 |
assume "PROP P t" "t = x" |
|
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1610 |
then show "PROP P x" by simp |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1611 |
qed |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1612 |
|
59929 | 1613 |
lemma [induct_simp]: "(induct_false \<Longrightarrow> P) \<equiv> Trueprop induct_true" |
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1614 |
unfolding induct_false_def induct_true_def |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1615 |
by (iprover intro: equal_intr_rule) |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1616 |
|
59929 | 1617 |
lemma [induct_simp]: "(induct_true \<Longrightarrow> PROP P) \<equiv> PROP P" |
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1618 |
unfolding induct_true_def |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1619 |
proof |
59929 | 1620 |
assume "True \<Longrightarrow> PROP P" |
1621 |
then show "PROP P" using TrueI . |
|
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1622 |
next |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1623 |
assume "PROP P" |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1624 |
then show "PROP P" . |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1625 |
qed |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1626 |
|
59929 | 1627 |
lemma [induct_simp]: "(PROP P \<Longrightarrow> induct_true) \<equiv> Trueprop induct_true" |
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1628 |
unfolding induct_true_def |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1629 |
by (iprover intro: equal_intr_rule) |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1630 |
|
62958
b41c1cb5e251
Type_Infer.object_logic controls improvement of type inference result;
wenzelm
parents:
62913
diff
changeset
|
1631 |
lemma [induct_simp]: "(\<And>x::'a::{}. induct_true) \<equiv> Trueprop induct_true" |
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1632 |
unfolding induct_true_def |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1633 |
by (iprover intro: equal_intr_rule) |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1634 |
|
59929 | 1635 |
lemma [induct_simp]: "induct_implies induct_true P \<equiv> P" |
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1636 |
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
|
1637 |
|
59929 | 1638 |
lemma [induct_simp]: "x = x \<longleftrightarrow> True" |
34908
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1639 |
by (rule simp_thms) |
d546e75631bb
Added setup for simplification of equality constraints in induction rules.
berghofe
parents:
34294
diff
changeset
|
1640 |
|
59940
087d81f5213e
local setup of induction tools, with restricted access to auxiliary consts;
wenzelm
parents:
59929
diff
changeset
|
1641 |
end |
18457 | 1642 |
|
69605 | 1643 |
ML_file \<open>~~/src/Tools/induct_tacs.ML\<close> |
27126
3ede9103de8e
eliminated obsolete case_split_thm -- use case_split;
wenzelm
parents:
27107
diff
changeset
|
1644 |
|
20944 | 1645 |
|
60758 | 1646 |
subsubsection \<open>Coherent logic\<close> |
28325 | 1647 |
|
69605 | 1648 |
ML_file \<open>~~/src/Tools/coherent.ML\<close> |
60758 | 1649 |
ML \<open> |
32734 | 1650 |
structure Coherent = Coherent |
28325 | 1651 |
( |
55632 | 1652 |
val atomize_elimL = @{thm atomize_elimL}; |
1653 |
val atomize_exL = @{thm atomize_exL}; |
|
1654 |
val atomize_conjL = @{thm atomize_conjL}; |
|
1655 |
val atomize_disjL = @{thm atomize_disjL}; |
|
69593 | 1656 |
val operator_names = [\<^const_name>\<open>HOL.disj\<close>, \<^const_name>\<open>HOL.conj\<close>, \<^const_name>\<open>Ex\<close>]; |
28325 | 1657 |
); |
60758 | 1658 |
\<close> |
28325 | 1659 |
|
1660 |
||
60758 | 1661 |
subsubsection \<open>Reorienting equalities\<close> |
31024
0fdf666e08bf
reimplement reorientation simproc using theory data
huffman
parents:
30980
diff
changeset
|
1662 |
|
60758 | 1663 |
ML \<open> |
31024
0fdf666e08bf
reimplement reorientation simproc using theory data
huffman
parents:
30980
diff
changeset
|
1664 |
signature REORIENT_PROC = |
0fdf666e08bf
reimplement reorientation simproc using theory data
huffman
parents:
30980
diff
changeset
|
1665 |
sig |
0fdf666e08bf
reimplement reorientation simproc using theory data
huffman
parents:
30980
diff
changeset
|
1666 |
val add : (term -> bool) -> theory -> theory |
78800 | 1667 |
val proc : Simplifier.proc |
31024
0fdf666e08bf
reimplement reorientation simproc using theory data
huffman
parents:
30980
diff
changeset
|
1668 |
end; |
0fdf666e08bf
reimplement reorientation simproc using theory data
huffman
parents:
30980
diff
changeset
|
1669 |
|
33523 | 1670 |
structure Reorient_Proc : REORIENT_PROC = |
31024
0fdf666e08bf
reimplement reorientation simproc using theory data
huffman
parents:
30980
diff
changeset
|
1671 |
struct |
33523 | 1672 |
structure Data = Theory_Data |
31024
0fdf666e08bf
reimplement reorientation simproc using theory data
huffman
parents:
30980
diff
changeset
|
1673 |
( |
33523 | 1674 |
type T = ((term -> bool) * stamp) list; |
1675 |
val empty = []; |
|
67405
e9ab4ad7bd15
uniform use of Standard ML op-infix -- eliminated warnings;
wenzelm
parents:
67399
diff
changeset
|
1676 |
fun merge data : T = Library.merge (eq_snd (op =)) data; |
33523 | 1677 |
); |
1678 |
fun add m = Data.map (cons (m, stamp ())); |
|
1679 |
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
|
1680 |
|
0fdf666e08bf
reimplement reorientation simproc using theory data
huffman
parents:
30980
diff
changeset
|
1681 |
val meta_reorient = @{thm eq_commute [THEN eq_reflection]}; |
78099
4d9349989d94
more uniform simproc_setup: avoid vacuous abstraction over morphism, which sometimes captures context values in its functional closure;
wenzelm
parents:
77172
diff
changeset
|
1682 |
fun proc ctxt ct = |
31024
0fdf666e08bf
reimplement reorientation simproc using theory data
huffman
parents:
30980
diff
changeset
|
1683 |
let |
42361 | 1684 |
val thy = Proof_Context.theory_of ctxt; |
31024
0fdf666e08bf
reimplement reorientation simproc using theory data
huffman
parents:
30980
diff
changeset
|
1685 |
in |
0fdf666e08bf
reimplement reorientation simproc using theory data
huffman
parents:
30980
diff
changeset
|
1686 |
case Thm.term_of ct of |
33523 | 1687 |
(_ $ 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
|
1688 |
| _ => NONE |
0fdf666e08bf
reimplement reorientation simproc using theory data
huffman
parents:
30980
diff
changeset
|
1689 |
end; |
0fdf666e08bf
reimplement reorientation simproc using theory data
huffman
parents:
30980
diff
changeset
|
1690 |
end; |
60758 | 1691 |
\<close> |
31024
0fdf666e08bf
reimplement reorientation simproc using theory data
huffman
parents:
30980
diff
changeset
|
1692 |
|
0fdf666e08bf
reimplement reorientation simproc using theory data
huffman
parents:
30980
diff
changeset
|
1693 |
|
60758 | 1694 |
subsection \<open>Other simple lemmas and lemma duplicates\<close> |
20944 | 1695 |
|
74741
6e1fad4f602b
added eq_iff_swap for creating symmetric variants of thms; applied it in List.
nipkow
parents:
74561
diff
changeset
|
1696 |
lemma eq_iff_swap: "(x = y \<longleftrightarrow> P) \<Longrightarrow> (y = x \<longleftrightarrow> P)" |
6e1fad4f602b
added eq_iff_swap for creating symmetric variants of thms; applied it in List.
nipkow
parents:
74561
diff
changeset
|
1697 |
by blast |
6e1fad4f602b
added eq_iff_swap for creating symmetric variants of thms; applied it in List.
nipkow
parents:
74561
diff
changeset
|
1698 |
|
68975
5ce4d117cea7
A few new results, elimination of duplicates and more use of "pairwise"
paulson <lp15@cam.ac.uk>
parents:
68072
diff
changeset
|
1699 |
lemma all_cong1: "(\<And>x. P x = P' x) \<Longrightarrow> (\<forall>x. P x) = (\<forall>x. P' x)" |
5ce4d117cea7
A few new results, elimination of duplicates and more use of "pairwise"
paulson <lp15@cam.ac.uk>
parents:
68072
diff
changeset
|
1700 |
by auto |
5ce4d117cea7
A few new results, elimination of duplicates and more use of "pairwise"
paulson <lp15@cam.ac.uk>
parents:
68072
diff
changeset
|
1701 |
|
5ce4d117cea7
A few new results, elimination of duplicates and more use of "pairwise"
paulson <lp15@cam.ac.uk>
parents:
68072
diff
changeset
|
1702 |
lemma ex_cong1: "(\<And>x. P x = P' x) \<Longrightarrow> (\<exists>x. P x) = (\<exists>x. P' x)" |
5ce4d117cea7
A few new results, elimination of duplicates and more use of "pairwise"
paulson <lp15@cam.ac.uk>
parents:
68072
diff
changeset
|
1703 |
by auto |
5ce4d117cea7
A few new results, elimination of duplicates and more use of "pairwise"
paulson <lp15@cam.ac.uk>
parents:
68072
diff
changeset
|
1704 |
|
67091 | 1705 |
lemma all_cong: "(\<And>x. Q x \<Longrightarrow> P x = P' x) \<Longrightarrow> (\<forall>x. Q x \<longrightarrow> P x) = (\<forall>x. Q x \<longrightarrow> P' x)" |
66836 | 1706 |
by auto |
1707 |
||
67091 | 1708 |
lemma ex_cong: "(\<And>x. Q x \<Longrightarrow> P x = P' x) \<Longrightarrow> (\<exists>x. Q x \<and> P x) = (\<exists>x. Q x \<and> P' x)" |
66836 | 1709 |
by auto |
1710 |
||
60759 | 1711 |
lemma ex1_eq [iff]: "\<exists>!x. x = t" "\<exists>!x. t = x" |
20944 | 1712 |
by blast+ |
1713 |
||
71608
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1714 |
lemma choice_eq: "(\<forall>x. \<exists>!y. P x y) = (\<exists>!f. \<forall>x. P x (f x))" (is "?lhs = ?rhs") |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1715 |
proof (intro iffI allI) |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1716 |
assume L: ?lhs |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1717 |
then have \<section>: "\<forall>x. P x (THE y. P x y)" |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1718 |
by (best intro: theI') |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1719 |
show ?rhs |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1720 |
by (rule ex1I) (use L \<section> in \<open>fast+\<close>) |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1721 |
next |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1722 |
fix x |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1723 |
assume R: ?rhs |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1724 |
then obtain f where f: "\<forall>x. P x (f x)" and f1: "\<And>y. (\<forall>x. P x (y x)) \<Longrightarrow> y = f" |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1725 |
by (blast elim: ex1E) |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1726 |
show "\<exists>!y. P x y" |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1727 |
proof (rule ex1I) |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1728 |
show "P x (f x)" |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1729 |
using f by blast |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1730 |
show "y = f x" if "P x y" for y |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1731 |
proof - |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1732 |
have "P z (if z = x then y else f z)" for z |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1733 |
using f that by (auto split: if_split) |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1734 |
with f1 [of "\<lambda>z. if z = x then y else f z"] f |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1735 |
show ?thesis |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1736 |
by (auto simp add: split: if_split_asm dest: fun_cong) |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1737 |
qed |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1738 |
qed |
856c68ab6f13
structured a lot of ancient, horrible proofs
paulson <lp15@cam.ac.uk>
parents:
71517
diff
changeset
|
1739 |
qed |
20944 | 1740 |
|
22218 | 1741 |
lemmas eq_sym_conv = eq_commute |
1742 |
||
23037
6c72943a71b1
added a set of NNF normalization lemmas and nnf_conv
chaieb
parents:
22993
diff
changeset
|
1743 |
lemma nnf_simps: |
63575 | 1744 |
"(\<not> (P \<and> Q)) = (\<not> P \<or> \<not> Q)" |
1745 |
"(\<not> (P \<or> Q)) = (\<not> P \<and> \<not> Q)" |
|
1746 |
"(P \<longrightarrow> Q) = (\<not> P \<or> Q)" |
|
1747 |
"(P = Q) = ((P \<and> Q) \<or> (\<not> P \<and> \<not> Q))" |
|
1748 |
"(\<not> (P = Q)) = ((P \<and> \<not> Q) \<or> (\<not> P \<and> Q))" |
|
1749 |
"(\<not> \<not> P) = P" |
|
1750 |
by blast+ |
|
1751 |
||
23037
6c72943a71b1
added a set of NNF normalization lemmas and nnf_conv
chaieb
parents:
22993
diff
changeset
|
1752 |
|
60758 | 1753 |
subsection \<open>Basic ML bindings\<close> |
21671 | 1754 |
|
60758 | 1755 |
ML \<open> |
22129 | 1756 |
val FalseE = @{thm FalseE} |
1757 |
val Let_def = @{thm Let_def} |
|
1758 |
val TrueI = @{thm TrueI} |
|
1759 |
val allE = @{thm allE} |
|
1760 |
val allI = @{thm allI} |
|
1761 |
val all_dupE = @{thm all_dupE} |
|
1762 |
val arg_cong = @{thm arg_cong} |
|
1763 |
val box_equals = @{thm box_equals} |
|
1764 |
val ccontr = @{thm ccontr} |
|
1765 |
val classical = @{thm classical} |
|
1766 |
val conjE = @{thm conjE} |
|
1767 |
val conjI = @{thm conjI} |
|
1768 |
val conjunct1 = @{thm conjunct1} |
|
1769 |
val conjunct2 = @{thm conjunct2} |
|
1770 |
val disjCI = @{thm disjCI} |
|
1771 |
val disjE = @{thm disjE} |
|
1772 |
val disjI1 = @{thm disjI1} |
|
1773 |
val disjI2 = @{thm disjI2} |
|
1774 |
val eq_reflection = @{thm eq_reflection} |
|
1775 |
val ex1E = @{thm ex1E} |
|
1776 |
val ex1I = @{thm ex1I} |
|
1777 |
val ex1_implies_ex = @{thm ex1_implies_ex} |
|
1778 |
val exE = @{thm exE} |
|
1779 |
val exI = @{thm exI} |
|
1780 |
val excluded_middle = @{thm excluded_middle} |
|
1781 |
val ext = @{thm ext} |
|
1782 |
val fun_cong = @{thm fun_cong} |
|
1783 |
val iffD1 = @{thm iffD1} |
|
1784 |
val iffD2 = @{thm iffD2} |
|
1785 |
val iffI = @{thm iffI} |
|
1786 |
val impE = @{thm impE} |
|
1787 |
val impI = @{thm impI} |
|
1788 |
val meta_eq_to_obj_eq = @{thm meta_eq_to_obj_eq} |
|
1789 |
val mp = @{thm mp} |
|
1790 |
val notE = @{thm notE} |
|
1791 |
val notI = @{thm notI} |
|
1792 |
val not_all = @{thm not_all} |
|
1793 |
val not_ex = @{thm not_ex} |
|
1794 |
val not_iff = @{thm not_iff} |
|
1795 |
val not_not = @{thm not_not} |
|
1796 |
val not_sym = @{thm not_sym} |
|
1797 |
val refl = @{thm refl} |
|
1798 |
val rev_mp = @{thm rev_mp} |
|
1799 |
val spec = @{thm spec} |
|
1800 |
val ssubst = @{thm ssubst} |
|
1801 |
val subst = @{thm subst} |
|
1802 |
val sym = @{thm sym} |
|
1803 |
val trans = @{thm trans} |
|
60758 | 1804 |
\<close> |
21671 | 1805 |
|
70486 | 1806 |
locale cnf |
1807 |
begin |
|
1808 |
||
1809 |
lemma clause2raw_notE: "\<lbrakk>P; \<not>P\<rbrakk> \<Longrightarrow> False" by auto |
|
1810 |
lemma clause2raw_not_disj: "\<lbrakk>\<not> P; \<not> Q\<rbrakk> \<Longrightarrow> \<not> (P \<or> Q)" by auto |
|
1811 |
lemma clause2raw_not_not: "P \<Longrightarrow> \<not>\<not> P" by auto |
|
1812 |
||
1813 |
lemma iff_refl: "(P::bool) = P" by auto |
|
1814 |
lemma iff_trans: "[| (P::bool) = Q; Q = R |] ==> P = R" by auto |
|
1815 |
lemma conj_cong: "[| P = P'; Q = Q' |] ==> (P \<and> Q) = (P' \<and> Q')" by auto |
|
1816 |
lemma disj_cong: "[| P = P'; Q = Q' |] ==> (P \<or> Q) = (P' \<or> Q')" by auto |
|
1817 |
||
1818 |
lemma make_nnf_imp: "[| (\<not>P) = P'; Q = Q' |] ==> (P \<longrightarrow> Q) = (P' \<or> Q')" by auto |
|
1819 |
lemma make_nnf_iff: "[| P = P'; (\<not>P) = NP; Q = Q'; (\<not>Q) = NQ |] ==> (P = Q) = ((P' \<or> NQ) \<and> (NP \<or> Q'))" by auto |
|
1820 |
lemma make_nnf_not_false: "(\<not>False) = True" by auto |
|
1821 |
lemma make_nnf_not_true: "(\<not>True) = False" by auto |
|
1822 |
lemma make_nnf_not_conj: "[| (\<not>P) = P'; (\<not>Q) = Q' |] ==> (\<not>(P \<and> Q)) = (P' \<or> Q')" by auto |
|
1823 |
lemma make_nnf_not_disj: "[| (\<not>P) = P'; (\<not>Q) = Q' |] ==> (\<not>(P \<or> Q)) = (P' \<and> Q')" by auto |
|
1824 |
lemma make_nnf_not_imp: "[| P = P'; (\<not>Q) = Q' |] ==> (\<not>(P \<longrightarrow> Q)) = (P' \<and> Q')" by auto |
|
1825 |
lemma make_nnf_not_iff: "[| P = P'; (\<not>P) = NP; Q = Q'; (\<not>Q) = NQ |] ==> (\<not>(P = Q)) = ((P' \<or> Q') \<and> (NP \<or> NQ))" by auto |
|
1826 |
lemma make_nnf_not_not: "P = P' ==> (\<not>\<not>P) = P'" by auto |
|
1827 |
||
1828 |
lemma simp_TF_conj_True_l: "[| P = True; Q = Q' |] ==> (P \<and> Q) = Q'" by auto |
|
1829 |
lemma simp_TF_conj_True_r: "[| P = P'; Q = True |] ==> (P \<and> Q) = P'" by auto |
|
1830 |
lemma simp_TF_conj_False_l: "P = False ==> (P \<and> Q) = False" by auto |
|
1831 |
lemma simp_TF_conj_False_r: "Q = False ==> (P \<and> Q) = False" by auto |
|
1832 |
lemma simp_TF_disj_True_l: "P = True ==> (P \<or> Q) = True" by auto |
|
1833 |
lemma simp_TF_disj_True_r: "Q = True ==> (P \<or> Q) = True" by auto |
|
1834 |
lemma simp_TF_disj_False_l: "[| P = False; Q = Q' |] ==> (P \<or> Q) = Q'" by auto |
|
1835 |
lemma simp_TF_disj_False_r: "[| P = P'; Q = False |] ==> (P \<or> Q) = P'" by auto |
|
1836 |
||
1837 |
lemma make_cnf_disj_conj_l: "[| (P \<or> R) = PR; (Q \<or> R) = QR |] ==> ((P \<and> Q) \<or> R) = (PR \<and> QR)" by auto |
|
1838 |
lemma make_cnf_disj_conj_r: "[| (P \<or> Q) = PQ; (P \<or> R) = PR |] ==> (P \<or> (Q \<and> R)) = (PQ \<and> PR)" by auto |
|
1839 |
||
1840 |
lemma make_cnfx_disj_ex_l: "((\<exists>(x::bool). P x) \<or> Q) = (\<exists>x. P x \<or> Q)" by auto |
|
1841 |
lemma make_cnfx_disj_ex_r: "(P \<or> (\<exists>(x::bool). Q x)) = (\<exists>x. P \<or> Q x)" by auto |
|
1842 |
lemma make_cnfx_newlit: "(P \<or> Q) = (\<exists>x. (P \<or> x) \<and> (Q \<or> \<not>x))" by auto |
|
1843 |
lemma make_cnfx_ex_cong: "(\<forall>(x::bool). P x = Q x) \<Longrightarrow> (\<exists>x. P x) = (\<exists>x. Q x)" by auto |
|
1844 |
||
1845 |
lemma weakening_thm: "[| P; Q |] ==> Q" by auto |
|
1846 |
||
1847 |
lemma cnftac_eq_imp: "[| P = Q; P |] ==> Q" by auto |
|
1848 |
||
1849 |
end |
|
1850 |
||
69605 | 1851 |
ML_file \<open>Tools/cnf.ML\<close> |
55239 | 1852 |
|
21671 | 1853 |
|
61799 | 1854 |
section \<open>\<open>NO_MATCH\<close> simproc\<close> |
58775
9cd64a66a765
move NO_MATCH simproc from the AFP entry Graph_Theory to HOL
hoelzl
parents:
58659
diff
changeset
|
1855 |
|
60758 | 1856 |
text \<open> |
63575 | 1857 |
The simplification procedure can be used to avoid simplification of terms |
1858 |
of a certain form. |
|
60758 | 1859 |
\<close> |
58775
9cd64a66a765
move NO_MATCH simproc from the AFP entry Graph_Theory to HOL
hoelzl
parents:
58659
diff
changeset
|
1860 |
|
63575 | 1861 |
definition NO_MATCH :: "'a \<Rightarrow> 'b \<Rightarrow> bool" |
1862 |
where "NO_MATCH pat val \<equiv> True" |
|
58830 | 1863 |
|
63575 | 1864 |
lemma NO_MATCH_cong[cong]: "NO_MATCH pat val = NO_MATCH pat val" |
1865 |
by (rule refl) |
|
58775
9cd64a66a765
move NO_MATCH simproc from the AFP entry Graph_Theory to HOL
hoelzl
parents:
58659
diff
changeset
|
1866 |
|
58830 | 1867 |
declare [[coercion_args NO_MATCH - -]] |
1868 |
||
78099
4d9349989d94
more uniform simproc_setup: avoid vacuous abstraction over morphism, which sometimes captures context values in its functional closure;
wenzelm
parents:
77172
diff
changeset
|
1869 |
simproc_setup NO_MATCH ("NO_MATCH pat val") = \<open>K (fn ctxt => fn ct => |
58775
9cd64a66a765
move NO_MATCH simproc from the AFP entry Graph_Theory to HOL
hoelzl
parents:
58659
diff
changeset
|
1870 |
let |
9cd64a66a765
move NO_MATCH simproc from the AFP entry Graph_Theory to HOL
hoelzl
parents:
58659
diff
changeset
|
1871 |
val thy = Proof_Context.theory_of ctxt |
9cd64a66a765
move NO_MATCH simproc from the AFP entry Graph_Theory to HOL
hoelzl
parents:
58659
diff
changeset
|
1872 |
val dest_binop = Term.dest_comb #> apfst (Term.dest_comb #> snd) |
9cd64a66a765
move NO_MATCH simproc from the AFP entry Graph_Theory to HOL
hoelzl
parents:
58659
diff
changeset
|
1873 |
val m = Pattern.matches thy (dest_binop (Thm.term_of ct)) |
78099
4d9349989d94
more uniform simproc_setup: avoid vacuous abstraction over morphism, which sometimes captures context values in its functional closure;
wenzelm
parents:
77172
diff
changeset
|
1874 |
in if m then NONE else SOME @{thm NO_MATCH_def} end) |
60758 | 1875 |
\<close> |
58775
9cd64a66a765
move NO_MATCH simproc from the AFP entry Graph_Theory to HOL
hoelzl
parents:
58659
diff
changeset
|
1876 |
|
60758 | 1877 |
text \<open> |
69593 | 1878 |
This setup ensures that a rewrite rule of the form \<^term>\<open>NO_MATCH pat val \<Longrightarrow> t\<close> |
63575 | 1879 |
is only applied, if the pattern \<open>pat\<close> does not match the value \<open>val\<close>. |
60758 | 1880 |
\<close> |
58775
9cd64a66a765
move NO_MATCH simproc from the AFP entry Graph_Theory to HOL
hoelzl
parents:
58659
diff
changeset
|
1881 |
|
9cd64a66a765
move NO_MATCH simproc from the AFP entry Graph_Theory to HOL
hoelzl
parents:
58659
diff
changeset
|
1882 |
|
63575 | 1883 |
text\<open> |
1884 |
Tagging a premise of a simp rule with ASSUMPTION forces the simplifier |
|
1885 |
not to simplify the argument and to solve it by an assumption. |
|
1886 |
\<close> |
|
61202 | 1887 |
|
63575 | 1888 |
definition ASSUMPTION :: "bool \<Rightarrow> bool" |
1889 |
where "ASSUMPTION A \<equiv> A" |
|
61202 | 1890 |
|
1891 |
lemma ASSUMPTION_cong[cong]: "ASSUMPTION A = ASSUMPTION A" |
|
63575 | 1892 |
by (rule refl) |
61202 | 1893 |
|
1894 |
lemma ASSUMPTION_I: "A \<Longrightarrow> ASSUMPTION A" |
|
63575 | 1895 |
by (simp add: ASSUMPTION_def) |
61202 | 1896 |
|
1897 |
lemma ASSUMPTION_D: "ASSUMPTION A \<Longrightarrow> A" |
|
63575 | 1898 |
by (simp add: ASSUMPTION_def) |
61202 | 1899 |
|
61222 | 1900 |
setup \<open> |
61202 | 1901 |
let |
1902 |
val asm_sol = mk_solver "ASSUMPTION" (fn ctxt => |
|
1903 |
resolve_tac ctxt [@{thm ASSUMPTION_I}] THEN' |
|
1904 |
resolve_tac ctxt (Simplifier.prems_of ctxt)) |
|
1905 |
in |
|
1906 |
map_theory_simpset (fn ctxt => Simplifier.addSolver (ctxt,asm_sol)) |
|
1907 |
end |
|
61222 | 1908 |
\<close> |
61202 | 1909 |
|
1910 |
||
60758 | 1911 |
subsection \<open>Code generator setup\<close> |
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
1912 |
|
60758 | 1913 |
subsubsection \<open>Generic code generator preprocessor setup\<close> |
31151 | 1914 |
|
63575 | 1915 |
lemma conj_left_cong: "P \<longleftrightarrow> Q \<Longrightarrow> P \<and> R \<longleftrightarrow> Q \<and> R" |
53146
3a93bc5d3370
congruence rules for code_simp to mimic typical non-strict behaviour of conj and disj
haftmann
parents:
52654
diff
changeset
|
1916 |
by (fact arg_cong) |
3a93bc5d3370
congruence rules for code_simp to mimic typical non-strict behaviour of conj and disj
haftmann
parents:
52654
diff
changeset
|
1917 |
|
63575 | 1918 |
lemma disj_left_cong: "P \<longleftrightarrow> Q \<Longrightarrow> P \<or> R \<longleftrightarrow> Q \<or> R" |
53146
3a93bc5d3370
congruence rules for code_simp to mimic typical non-strict behaviour of conj and disj
haftmann
parents:
52654
diff
changeset
|
1919 |
by (fact arg_cong) |
3a93bc5d3370
congruence rules for code_simp to mimic typical non-strict behaviour of conj and disj
haftmann
parents:
52654
diff
changeset
|
1920 |
|
60758 | 1921 |
setup \<open> |
58826 | 1922 |
Code_Preproc.map_pre (put_simpset HOL_basic_ss) #> |
1923 |
Code_Preproc.map_post (put_simpset HOL_basic_ss) #> |
|
1924 |
Code_Simp.map_ss (put_simpset HOL_basic_ss #> |
|
1925 |
Simplifier.add_cong @{thm conj_left_cong} #> |
|
1926 |
Simplifier.add_cong @{thm disj_left_cong}) |
|
60758 | 1927 |
\<close> |
31151 | 1928 |
|
53146
3a93bc5d3370
congruence rules for code_simp to mimic typical non-strict behaviour of conj and disj
haftmann
parents:
52654
diff
changeset
|
1929 |
|
60758 | 1930 |
subsubsection \<open>Equality\<close> |
24844
98c006a30218
certificates for code generator case expressions
haftmann
parents:
24842
diff
changeset
|
1931 |
|
38857
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
haftmann
parents:
38795
diff
changeset
|
1932 |
class equal = |
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
haftmann
parents:
38795
diff
changeset
|
1933 |
fixes equal :: "'a \<Rightarrow> 'a \<Rightarrow> bool" |
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
haftmann
parents:
38795
diff
changeset
|
1934 |
assumes equal_eq: "equal x y \<longleftrightarrow> x = y" |
26513 | 1935 |
begin |
1936 |
||
67399 | 1937 |
lemma equal: "equal = (=)" |
38857
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
haftmann
parents:
38795
diff
changeset
|
1938 |
by (rule ext equal_eq)+ |
28346
b8390cd56b8f
discontinued special treatment of op = vs. eq_class.eq
haftmann
parents:
28325
diff
changeset
|
1939 |
|
38857
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
haftmann
parents:
38795
diff
changeset
|
1940 |
lemma equal_refl: "equal x x \<longleftrightarrow> True" |
75669
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74741
diff
changeset
|
1941 |
unfolding equal by (rule iffI TrueI refl)+ |
28346
b8390cd56b8f
discontinued special treatment of op = vs. eq_class.eq
haftmann
parents:
28325
diff
changeset
|
1942 |
|
67399 | 1943 |
lemma eq_equal: "(=) \<equiv> equal" |
38857
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
haftmann
parents:
38795
diff
changeset
|
1944 |
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
|
1945 |
|
26513 | 1946 |
end |
1947 |
||
38857
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
haftmann
parents:
38795
diff
changeset
|
1948 |
declare eq_equal [symmetric, code_post] |
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
haftmann
parents:
38795
diff
changeset
|
1949 |
declare eq_equal [code] |
30966 | 1950 |
|
78799 | 1951 |
simproc_setup passive equal (HOL.eq) = |
78794 | 1952 |
\<open>fn _ => fn _ => fn ct => |
1953 |
(case Thm.term_of ct of |
|
80662 | 1954 |
\<^Const_>\<open>HOL.eq T\<close> => if is_Type T then SOME @{thm eq_equal} else NONE |
78794 | 1955 |
| _ => NONE)\<close> |
1956 |
||
80701 | 1957 |
setup \<open>Code_Preproc.map_pre (Simplifier.add_proc \<^simproc>\<open>equal\<close>)\<close> |
31151 | 1958 |
|
30966 | 1959 |
|
60758 | 1960 |
subsubsection \<open>Generic code generator foundation\<close> |
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
1961 |
|
69593 | 1962 |
text \<open>Datatype \<^typ>\<open>bool\<close>\<close> |
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
1963 |
|
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
1964 |
code_datatype True False |
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 |
lemma [code]: |
33185
247f6c6969d9
tuned code setup for primitive boolean connectors
haftmann
parents:
33084
diff
changeset
|
1967 |
shows "False \<and> P \<longleftrightarrow> False" |
247f6c6969d9
tuned code setup for primitive boolean connectors
haftmann
parents:
33084
diff
changeset
|
1968 |
and "True \<and> P \<longleftrightarrow> P" |
247f6c6969d9
tuned code setup for primitive boolean connectors
haftmann
parents:
33084
diff
changeset
|
1969 |
and "P \<and> False \<longleftrightarrow> False" |
63575 | 1970 |
and "P \<and> True \<longleftrightarrow> P" |
1971 |
by simp_all |
|
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
1972 |
|
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
1973 |
lemma [code]: |
33185
247f6c6969d9
tuned code setup for primitive boolean connectors
haftmann
parents:
33084
diff
changeset
|
1974 |
shows "False \<or> P \<longleftrightarrow> P" |
247f6c6969d9
tuned code setup for primitive boolean connectors
haftmann
parents:
33084
diff
changeset
|
1975 |
and "True \<or> P \<longleftrightarrow> True" |
247f6c6969d9
tuned code setup for primitive boolean connectors
haftmann
parents:
33084
diff
changeset
|
1976 |
and "P \<or> False \<longleftrightarrow> P" |
63575 | 1977 |
and "P \<or> True \<longleftrightarrow> True" |
1978 |
by simp_all |
|
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
1979 |
|
33185
247f6c6969d9
tuned code setup for primitive boolean connectors
haftmann
parents:
33084
diff
changeset
|
1980 |
lemma [code]: |
247f6c6969d9
tuned code setup for primitive boolean connectors
haftmann
parents:
33084
diff
changeset
|
1981 |
shows "(False \<longrightarrow> P) \<longleftrightarrow> True" |
247f6c6969d9
tuned code setup for primitive boolean connectors
haftmann
parents:
33084
diff
changeset
|
1982 |
and "(True \<longrightarrow> P) \<longleftrightarrow> P" |
247f6c6969d9
tuned code setup for primitive boolean connectors
haftmann
parents:
33084
diff
changeset
|
1983 |
and "(P \<longrightarrow> False) \<longleftrightarrow> \<not> P" |
63575 | 1984 |
and "(P \<longrightarrow> True) \<longleftrightarrow> True" |
1985 |
by simp_all |
|
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
1986 |
|
69593 | 1987 |
text \<open>More about \<^typ>\<open>prop\<close>\<close> |
39421
b6a77cffc231
introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
haftmann
parents:
39403
diff
changeset
|
1988 |
|
b6a77cffc231
introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
haftmann
parents:
39403
diff
changeset
|
1989 |
lemma [code nbe]: |
58826 | 1990 |
shows "(True \<Longrightarrow> PROP Q) \<equiv> PROP Q" |
39421
b6a77cffc231
introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
haftmann
parents:
39403
diff
changeset
|
1991 |
and "(PROP Q \<Longrightarrow> True) \<equiv> Trueprop True" |
63575 | 1992 |
and "(P \<Longrightarrow> R) \<equiv> Trueprop (P \<longrightarrow> R)" |
1993 |
by (auto intro!: equal_intr_rule) |
|
39421
b6a77cffc231
introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
haftmann
parents:
39403
diff
changeset
|
1994 |
|
63575 | 1995 |
lemma Trueprop_code [code]: "Trueprop True \<equiv> Code_Generator.holds" |
39421
b6a77cffc231
introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
haftmann
parents:
39403
diff
changeset
|
1996 |
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
|
1997 |
|
b6a77cffc231
introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
haftmann
parents:
39403
diff
changeset
|
1998 |
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
|
1999 |
|
60758 | 2000 |
text \<open>Equality\<close> |
39421
b6a77cffc231
introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
haftmann
parents:
39403
diff
changeset
|
2001 |
|
b6a77cffc231
introduced "holds" as synthetic datatype constructor for "prop"; moved Pure code generator setup to Code_Generator.thy
haftmann
parents:
39403
diff
changeset
|
2002 |
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
|
2003 |
|
38857
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
haftmann
parents:
38795
diff
changeset
|
2004 |
instantiation itself :: (type) equal |
31132 | 2005 |
begin |
2006 |
||
63575 | 2007 |
definition equal_itself :: "'a itself \<Rightarrow> 'a itself \<Rightarrow> bool" |
2008 |
where "equal_itself x y \<longleftrightarrow> x = y" |
|
31132 | 2009 |
|
63575 | 2010 |
instance |
2011 |
by standard (fact equal_itself_def) |
|
31132 | 2012 |
|
2013 |
end |
|
2014 |
||
63575 | 2015 |
lemma equal_itself_code [code]: "equal TYPE('a) TYPE('a) \<longleftrightarrow> True" |
38857
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
haftmann
parents:
38795
diff
changeset
|
2016 |
by (simp add: equal) |
31132 | 2017 |
|
69593 | 2018 |
setup \<open>Sign.add_const_constraint (\<^const_name>\<open>equal\<close>, SOME \<^typ>\<open>'a::type \<Rightarrow> 'a \<Rightarrow> bool\<close>)\<close> |
31956
c3844c4d0c2c
more accurate certificates for constant aliasses
haftmann
parents:
31902
diff
changeset
|
2019 |
|
67399 | 2020 |
lemma equal_alias_cert: "OFCLASS('a, equal_class) \<equiv> (((=) :: 'a \<Rightarrow> 'a \<Rightarrow> bool) \<equiv> equal)" |
63575 | 2021 |
(is "?ofclass \<equiv> ?equal") |
31956
c3844c4d0c2c
more accurate certificates for constant aliasses
haftmann
parents:
31902
diff
changeset
|
2022 |
proof |
c3844c4d0c2c
more accurate certificates for constant aliasses
haftmann
parents:
31902
diff
changeset
|
2023 |
assume "PROP ?ofclass" |
38857
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
haftmann
parents:
38795
diff
changeset
|
2024 |
show "PROP ?equal" |
69593 | 2025 |
by (tactic \<open>ALLGOALS (resolve_tac \<^context> [Thm.unconstrainT @{thm eq_equal}])\<close>) |
60758 | 2026 |
(fact \<open>PROP ?ofclass\<close>) |
31956
c3844c4d0c2c
more accurate certificates for constant aliasses
haftmann
parents:
31902
diff
changeset
|
2027 |
next |
38857
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
haftmann
parents:
38795
diff
changeset
|
2028 |
assume "PROP ?equal" |
31956
c3844c4d0c2c
more accurate certificates for constant aliasses
haftmann
parents:
31902
diff
changeset
|
2029 |
show "PROP ?ofclass" proof |
60758 | 2030 |
qed (simp add: \<open>PROP ?equal\<close>) |
31956
c3844c4d0c2c
more accurate certificates for constant aliasses
haftmann
parents:
31902
diff
changeset
|
2031 |
qed |
c3844c4d0c2c
more accurate certificates for constant aliasses
haftmann
parents:
31902
diff
changeset
|
2032 |
|
69593 | 2033 |
setup \<open>Sign.add_const_constraint (\<^const_name>\<open>equal\<close>, SOME \<^typ>\<open>'a::equal \<Rightarrow> 'a \<Rightarrow> bool\<close>)\<close> |
58826 | 2034 |
|
60758 | 2035 |
setup \<open>Nbe.add_const_alias @{thm equal_alias_cert}\<close> |
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2036 |
|
60758 | 2037 |
text \<open>Cases\<close> |
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2038 |
|
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2039 |
lemma Let_case_cert: |
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2040 |
assumes "CASE \<equiv> (\<lambda>x. Let x f)" |
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2041 |
shows "CASE x \<equiv> f x" |
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2042 |
using assms by simp_all |
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2043 |
|
60758 | 2044 |
setup \<open> |
66251
cd935b7cb3fb
proper concept of code declaration wrt. atomicity and Isar declarations
haftmann
parents:
66109
diff
changeset
|
2045 |
Code.declare_case_global @{thm Let_case_cert} #> |
69593 | 2046 |
Code.declare_undefined_global \<^const_name>\<open>undefined\<close> |
60758 | 2047 |
\<close> |
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2048 |
|
54890
cb892d835803
fundamental treatment of undefined vs. universally partial replaces code_abort
haftmann
parents:
54742
diff
changeset
|
2049 |
declare [[code abort: undefined]] |
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2050 |
|
38972 | 2051 |
|
60758 | 2052 |
subsubsection \<open>Generic code generator target languages\<close> |
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2053 |
|
69593 | 2054 |
text \<open>type \<^typ>\<open>bool\<close>\<close> |
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2055 |
|
52435
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2056 |
code_printing |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2057 |
type_constructor bool \<rightharpoonup> |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2058 |
(SML) "bool" and (OCaml) "bool" and (Haskell) "Bool" and (Scala) "Boolean" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2059 |
| constant True \<rightharpoonup> |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2060 |
(SML) "true" and (OCaml) "true" and (Haskell) "True" and (Scala) "true" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2061 |
| constant False \<rightharpoonup> |
58826 | 2062 |
(SML) "false" and (OCaml) "false" and (Haskell) "False" and (Scala) "false" |
34294 | 2063 |
|
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2064 |
code_reserved SML |
52435
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2065 |
bool true false |
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2066 |
|
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2067 |
code_reserved OCaml |
52435
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2068 |
bool |
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2069 |
|
34294 | 2070 |
code_reserved Scala |
2071 |
Boolean |
|
2072 |
||
52435
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2073 |
code_printing |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2074 |
constant Not \<rightharpoonup> |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2075 |
(SML) "not" and (OCaml) "not" and (Haskell) "not" and (Scala) "'! _" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2076 |
| constant HOL.conj \<rightharpoonup> |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2077 |
(SML) infixl 1 "andalso" and (OCaml) infixl 3 "&&" and (Haskell) infixr 3 "&&" and (Scala) infixl 3 "&&" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2078 |
| constant HOL.disj \<rightharpoonup> |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2079 |
(SML) infixl 0 "orelse" and (OCaml) infixl 2 "||" and (Haskell) infixl 2 "||" and (Scala) infixl 1 "||" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2080 |
| constant HOL.implies \<rightharpoonup> |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2081 |
(SML) "!(if (_)/ then (_)/ else true)" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2082 |
and (OCaml) "!(if (_)/ then (_)/ else true)" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2083 |
and (Haskell) "!(if (_)/ then (_)/ else True)" |
80088
5afbf04418ec
avoid Scala if-expressions and thus make it work both for -new-syntax or -old-syntax;
wenzelm
parents:
79772
diff
changeset
|
2084 |
and (Scala) "!((_) match {/ case true => (_)/ case false => true/ })" |
52435
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2085 |
| constant If \<rightharpoonup> |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2086 |
(SML) "!(if (_)/ then (_)/ else (_))" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2087 |
and (OCaml) "!(if (_)/ then (_)/ else (_))" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2088 |
and (Haskell) "!(if (_)/ then (_)/ else (_))" |
80088
5afbf04418ec
avoid Scala if-expressions and thus make it work both for -new-syntax or -old-syntax;
wenzelm
parents:
79772
diff
changeset
|
2089 |
and (Scala) "!((_) match {/ case true => (_)/ case false => (_)/ })" |
52435
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2090 |
|
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2091 |
code_reserved SML |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2092 |
not |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2093 |
|
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2094 |
code_reserved OCaml |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2095 |
not |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2096 |
|
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2097 |
code_identifier |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2098 |
code_module Pure \<rightharpoonup> |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2099 |
(SML) HOL and (OCaml) HOL and (Haskell) HOL and (Scala) HOL |
39026 | 2100 |
|
63575 | 2101 |
text \<open>Using built-in Haskell equality.\<close> |
52435
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2102 |
code_printing |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2103 |
type_class equal \<rightharpoonup> (Haskell) "Eq" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2104 |
| constant HOL.equal \<rightharpoonup> (Haskell) infix 4 "==" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2105 |
| constant HOL.eq \<rightharpoonup> (Haskell) infix 4 "==" |
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2106 |
|
63575 | 2107 |
text \<open>\<open>undefined\<close>\<close> |
52435
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2108 |
code_printing |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2109 |
constant undefined \<rightharpoonup> |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2110 |
(SML) "!(raise/ Fail/ \"undefined\")" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2111 |
and (OCaml) "failwith/ \"undefined\"" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2112 |
and (Haskell) "error/ \"undefined\"" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2113 |
and (Scala) "!sys.error(\"undefined\")" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52432
diff
changeset
|
2114 |
|
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2115 |
|
60758 | 2116 |
subsubsection \<open>Evaluation and normalization by evaluation\<close> |
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2117 |
|
60758 | 2118 |
method_setup eval = \<open> |
58826 | 2119 |
let |
2120 |
fun eval_tac ctxt = |
|
74536 | 2121 |
let val conv = Code_Runtime.dynamic_holds_conv |
58839 | 2122 |
in |
74536 | 2123 |
CONVERSION (Conv.params_conv ~1 (Conv.concl_conv ~1 o conv) ctxt) THEN' |
59498
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents:
59028
diff
changeset
|
2124 |
resolve_tac ctxt [TrueI] |
58839 | 2125 |
end |
58826 | 2126 |
in |
2127 |
Scan.succeed (SIMPLE_METHOD' o eval_tac) |
|
2128 |
end |
|
60758 | 2129 |
\<close> "solve goal by evaluation" |
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2130 |
|
60758 | 2131 |
method_setup normalization = \<open> |
46190
a42c5f23109f
more conventional eval_tac vs. method_setup "eval";
wenzelm
parents:
46161
diff
changeset
|
2132 |
Scan.succeed (fn ctxt => |
a42c5f23109f
more conventional eval_tac vs. method_setup "eval";
wenzelm
parents:
46161
diff
changeset
|
2133 |
SIMPLE_METHOD' |
a42c5f23109f
more conventional eval_tac vs. method_setup "eval";
wenzelm
parents:
46161
diff
changeset
|
2134 |
(CHANGED_PROP o |
55757 | 2135 |
(CONVERSION (Nbe.dynamic_conv ctxt) |
59498
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents:
59028
diff
changeset
|
2136 |
THEN_ALL_NEW (TRY o resolve_tac ctxt [TrueI])))) |
60758 | 2137 |
\<close> "solve goal by normalization" |
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2138 |
|
31902 | 2139 |
|
60758 | 2140 |
subsection \<open>Counterexample Search Units\<close> |
33084 | 2141 |
|
60758 | 2142 |
subsubsection \<open>Quickcheck\<close> |
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2143 |
|
33084 | 2144 |
quickcheck_params [size = 5, iterations = 50] |
2145 |
||
30929
d9343c0aac11
code generator bootstrap theory src/Tools/Code_Generator.thy
haftmann
parents:
30927
diff
changeset
|
2146 |
|
60758 | 2147 |
subsubsection \<open>Nitpick setup\<close> |
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
|
2148 |
|
59028 | 2149 |
named_theorems nitpick_unfold "alternative definitions of constants as needed by Nitpick" |
2150 |
and nitpick_simp "equational specification of constants as needed by Nitpick" |
|
2151 |
and nitpick_psimp "partial equational specification of constants as needed by Nitpick" |
|
2152 |
and nitpick_choice_spec "choice specification of constants as needed by Nitpick" |
|
30980 | 2153 |
|
41792
ff3cb0c418b7
renamed "nitpick\_def" to "nitpick_unfold" to reflect its new semantics
blanchet
parents:
41636
diff
changeset
|
2154 |
declare if_bool_eq_conj [nitpick_unfold, no_atp] |
63575 | 2155 |
and if_bool_eq_disj [no_atp] |
41792
ff3cb0c418b7
renamed "nitpick\_def" to "nitpick_unfold" to reflect its new semantics
blanchet
parents:
41636
diff
changeset
|
2156 |
|
29863
dadad1831e9d
Added "nitpick_const_simps" and "nitpick_ind_intros" attributes for theorems;
blanchet
parents:
29608
diff
changeset
|
2157 |
|
60758 | 2158 |
subsection \<open>Preprocessing for the predicate compiler\<close> |
33084 | 2159 |
|
59028 | 2160 |
named_theorems code_pred_def "alternative definitions of constants for the Predicate Compiler" |
2161 |
and code_pred_inline "inlining definitions for the Predicate Compiler" |
|
2162 |
and code_pred_simp "simplification rules for the optimisations in the Predicate Compiler" |
|
33084 | 2163 |
|
2164 |
||
60758 | 2165 |
subsection \<open>Legacy tactics and ML bindings\<close> |
21671 | 2166 |
|
60758 | 2167 |
ML \<open> |
58826 | 2168 |
(* combination of (spec RS spec RS ...(j times) ... spec RS mp) *) |
2169 |
local |
|
80662 | 2170 |
fun wrong_prem \<^Const_>\<open>All _ for \<open>Abs (_, _, t)\<close>\<close> = wrong_prem t |
58826 | 2171 |
| wrong_prem (Bound _) = true |
2172 |
| wrong_prem _ = false; |
|
2173 |
val filter_right = filter (not o wrong_prem o HOLogic.dest_Trueprop o hd o Thm.prems_of); |
|
61914 | 2174 |
fun smp i = funpow i (fn m => filter_right ([spec] RL m)) [mp]; |
58826 | 2175 |
in |
59498
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents:
59028
diff
changeset
|
2176 |
fun smp_tac ctxt j = EVERY' [dresolve_tac ctxt (smp j), assume_tac ctxt]; |
58826 | 2177 |
end; |
22839 | 2178 |
|
58826 | 2179 |
local |
2180 |
val nnf_ss = |
|
69593 | 2181 |
simpset_of (put_simpset HOL_basic_ss \<^context> addsimps @{thms simp_thms nnf_simps}); |
58826 | 2182 |
in |
2183 |
fun nnf_conv ctxt = Simplifier.rewrite (put_simpset nnf_ss ctxt); |
|
2184 |
end |
|
60758 | 2185 |
\<close> |
21671 | 2186 |
|
38866 | 2187 |
hide_const (open) eq equal |
2188 |
||
14357 | 2189 |
end |