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