| author | wenzelm | 
| Fri, 29 Oct 2010 11:49:56 +0200 | |
| changeset 40255 | 9ffbc25e1606 | 
| parent 39776 | cde508d2eac8 | 
| child 41081 | fb1e5377143d | 
| permissions | -rw-r--r-- | 
| 7700 | 1 | (* Title: HOL/Inductive.thy | 
| 10402 | 2 | Author: Markus Wenzel, TU Muenchen | 
| 11688 | 3 | *) | 
| 10727 | 4 | |
| 24915 | 5 | header {* Knaster-Tarski Fixpoint Theorem and inductive definitions *}
 | 
| 1187 | 6 | |
| 15131 | 7 | theory Inductive | 
| 33959 
2afc55e8ed27
bootstrap datatype_rep_proofs in Datatype.thy (avoids unchecked dynamic name references)
 haftmann parents: 
32701diff
changeset | 8 | imports Complete_Lattice | 
| 16417 | 9 | uses | 
| 31723 
f5cafe803b55
discontinued ancient tradition to suffix certain ML module names with "_package"
 haftmann parents: 
31604diff
changeset | 10 |   ("Tools/inductive.ML")
 | 
| 24625 
0398a5e802d3
separated code for inductive sequences from inductive_codegen.ML
 haftmann parents: 
24349diff
changeset | 11 | "Tools/dseq.ML" | 
| 33959 
2afc55e8ed27
bootstrap datatype_rep_proofs in Datatype.thy (avoids unchecked dynamic name references)
 haftmann parents: 
32701diff
changeset | 12 | "Tools/Datatype/datatype_aux.ML" | 
| 
2afc55e8ed27
bootstrap datatype_rep_proofs in Datatype.thy (avoids unchecked dynamic name references)
 haftmann parents: 
32701diff
changeset | 13 | "Tools/Datatype/datatype_prop.ML" | 
| 
2afc55e8ed27
bootstrap datatype_rep_proofs in Datatype.thy (avoids unchecked dynamic name references)
 haftmann parents: 
32701diff
changeset | 14 | "Tools/Datatype/datatype_case.ML" | 
| 31775 | 15 |   ("Tools/Datatype/datatype_abs_proofs.ML")
 | 
| 33963 
977b94b64905
renamed former datatype.ML to datatype_data.ML; datatype.ML provides uniform view on datatype.ML and datatype_rep_proofs.ML
 haftmann parents: 
33959diff
changeset | 16 |   ("Tools/Datatype/datatype_data.ML")
 | 
| 31723 
f5cafe803b55
discontinued ancient tradition to suffix certain ML module names with "_package"
 haftmann parents: 
31604diff
changeset | 17 |   ("Tools/primrec.ML")
 | 
| 31775 | 18 |   ("Tools/Datatype/datatype_codegen.ML")
 | 
| 15131 | 19 | begin | 
| 10727 | 20 | |
| 24915 | 21 | subsection {* Least and greatest fixed points *}
 | 
| 22 | ||
| 26013 
8764a1f1253b
Theorem Inductive.lfp_ordinal_induct generalized to complete lattices
 haftmann parents: 
25557diff
changeset | 23 | context complete_lattice | 
| 
8764a1f1253b
Theorem Inductive.lfp_ordinal_induct generalized to complete lattices
 haftmann parents: 
25557diff
changeset | 24 | begin | 
| 
8764a1f1253b
Theorem Inductive.lfp_ordinal_induct generalized to complete lattices
 haftmann parents: 
25557diff
changeset | 25 | |
| 24915 | 26 | definition | 
| 26013 
8764a1f1253b
Theorem Inductive.lfp_ordinal_induct generalized to complete lattices
 haftmann parents: 
25557diff
changeset | 27 |   lfp :: "('a \<Rightarrow> 'a) \<Rightarrow> 'a" where
 | 
| 24915 | 28 |   "lfp f = Inf {u. f u \<le> u}"    --{*least fixed point*}
 | 
| 29 | ||
| 30 | definition | |
| 26013 
8764a1f1253b
Theorem Inductive.lfp_ordinal_induct generalized to complete lattices
 haftmann parents: 
25557diff
changeset | 31 |   gfp :: "('a \<Rightarrow> 'a) \<Rightarrow> 'a" where
 | 
| 24915 | 32 |   "gfp f = Sup {u. u \<le> f u}"    --{*greatest fixed point*}
 | 
| 33 | ||
| 34 | ||
| 35 | subsection{* Proof of Knaster-Tarski Theorem using @{term lfp} *}
 | |
| 36 | ||
| 37 | text{*@{term "lfp f"} is the least upper bound of 
 | |
| 38 |       the set @{term "{u. f(u) \<le> u}"} *}
 | |
| 39 | ||
| 40 | lemma lfp_lowerbound: "f A \<le> A ==> lfp f \<le> A" | |
| 41 | by (auto simp add: lfp_def intro: Inf_lower) | |
| 42 | ||
| 43 | lemma lfp_greatest: "(!!u. f u \<le> u ==> A \<le> u) ==> A \<le> lfp f" | |
| 44 | by (auto simp add: lfp_def intro: Inf_greatest) | |
| 45 | ||
| 26013 
8764a1f1253b
Theorem Inductive.lfp_ordinal_induct generalized to complete lattices
 haftmann parents: 
25557diff
changeset | 46 | end | 
| 
8764a1f1253b
Theorem Inductive.lfp_ordinal_induct generalized to complete lattices
 haftmann parents: 
25557diff
changeset | 47 | |
| 24915 | 48 | lemma lfp_lemma2: "mono f ==> f (lfp f) \<le> lfp f" | 
| 49 | by (iprover intro: lfp_greatest order_trans monoD lfp_lowerbound) | |
| 50 | ||
| 51 | lemma lfp_lemma3: "mono f ==> lfp f \<le> f (lfp f)" | |
| 52 | by (iprover intro: lfp_lemma2 monoD lfp_lowerbound) | |
| 53 | ||
| 54 | lemma lfp_unfold: "mono f ==> lfp f = f (lfp f)" | |
| 55 | by (iprover intro: order_antisym lfp_lemma2 lfp_lemma3) | |
| 56 | ||
| 57 | lemma lfp_const: "lfp (\<lambda>x. t) = t" | |
| 58 | by (rule lfp_unfold) (simp add:mono_def) | |
| 59 | ||
| 60 | ||
| 61 | subsection {* General induction rules for least fixed points *}
 | |
| 62 | ||
| 63 | theorem lfp_induct: | |
| 64 | assumes mono: "mono f" and ind: "f (inf (lfp f) P) <= P" | |
| 65 | shows "lfp f <= P" | |
| 66 | proof - | |
| 67 | have "inf (lfp f) P <= lfp f" by (rule inf_le1) | |
| 68 | with mono have "f (inf (lfp f) P) <= f (lfp f)" .. | |
| 69 | also from mono have "f (lfp f) = lfp f" by (rule lfp_unfold [symmetric]) | |
| 70 | finally have "f (inf (lfp f) P) <= lfp f" . | |
| 71 | from this and ind have "f (inf (lfp f) P) <= inf (lfp f) P" by (rule le_infI) | |
| 72 | hence "lfp f <= inf (lfp f) P" by (rule lfp_lowerbound) | |
| 73 | also have "inf (lfp f) P <= P" by (rule inf_le2) | |
| 74 | finally show ?thesis . | |
| 75 | qed | |
| 76 | ||
| 77 | lemma lfp_induct_set: | |
| 78 | assumes lfp: "a: lfp(f)" | |
| 79 | and mono: "mono(f)" | |
| 80 |       and indhyp: "!!x. [| x: f(lfp(f) Int {x. P(x)}) |] ==> P(x)"
 | |
| 81 | shows "P(a)" | |
| 82 | by (rule lfp_induct [THEN subsetD, THEN CollectD, OF mono _ lfp]) | |
| 32683 
7c1fe854ca6a
inter and union are mere abbreviations for inf and sup
 haftmann parents: 
32587diff
changeset | 83 | (auto simp: intro: indhyp) | 
| 24915 | 84 | |
| 26013 
8764a1f1253b
Theorem Inductive.lfp_ordinal_induct generalized to complete lattices
 haftmann parents: 
25557diff
changeset | 85 | lemma lfp_ordinal_induct: | 
| 
8764a1f1253b
Theorem Inductive.lfp_ordinal_induct generalized to complete lattices
 haftmann parents: 
25557diff
changeset | 86 | fixes f :: "'a\<Colon>complete_lattice \<Rightarrow> 'a" | 
| 
8764a1f1253b
Theorem Inductive.lfp_ordinal_induct generalized to complete lattices
 haftmann parents: 
25557diff
changeset | 87 | assumes mono: "mono f" | 
| 
8764a1f1253b
Theorem Inductive.lfp_ordinal_induct generalized to complete lattices
 haftmann parents: 
25557diff
changeset | 88 | and P_f: "\<And>S. P S \<Longrightarrow> P (f S)" | 
| 
8764a1f1253b
Theorem Inductive.lfp_ordinal_induct generalized to complete lattices
 haftmann parents: 
25557diff
changeset | 89 | and P_Union: "\<And>M. \<forall>S\<in>M. P S \<Longrightarrow> P (Sup M)" | 
| 
8764a1f1253b
Theorem Inductive.lfp_ordinal_induct generalized to complete lattices
 haftmann parents: 
25557diff
changeset | 90 | shows "P (lfp f)" | 
| 
8764a1f1253b
Theorem Inductive.lfp_ordinal_induct generalized to complete lattices
 haftmann parents: 
25557diff
changeset | 91 | proof - | 
| 
8764a1f1253b
Theorem Inductive.lfp_ordinal_induct generalized to complete lattices
 haftmann parents: 
25557diff
changeset | 92 |   let ?M = "{S. S \<le> lfp f \<and> P S}"
 | 
| 
8764a1f1253b
Theorem Inductive.lfp_ordinal_induct generalized to complete lattices
 haftmann parents: 
25557diff
changeset | 93 | have "P (Sup ?M)" using P_Union by simp | 
| 
8764a1f1253b
Theorem Inductive.lfp_ordinal_induct generalized to complete lattices
 haftmann parents: 
25557diff
changeset | 94 | also have "Sup ?M = lfp f" | 
| 
8764a1f1253b
Theorem Inductive.lfp_ordinal_induct generalized to complete lattices
 haftmann parents: 
25557diff
changeset | 95 | proof (rule antisym) | 
| 
8764a1f1253b
Theorem Inductive.lfp_ordinal_induct generalized to complete lattices
 haftmann parents: 
25557diff
changeset | 96 | show "Sup ?M \<le> lfp f" by (blast intro: Sup_least) | 
| 
8764a1f1253b
Theorem Inductive.lfp_ordinal_induct generalized to complete lattices
 haftmann parents: 
25557diff
changeset | 97 | hence "f (Sup ?M) \<le> f (lfp f)" by (rule mono [THEN monoD]) | 
| 
8764a1f1253b
Theorem Inductive.lfp_ordinal_induct generalized to complete lattices
 haftmann parents: 
25557diff
changeset | 98 | hence "f (Sup ?M) \<le> lfp f" using mono [THEN lfp_unfold] by simp | 
| 
8764a1f1253b
Theorem Inductive.lfp_ordinal_induct generalized to complete lattices
 haftmann parents: 
25557diff
changeset | 99 | hence "f (Sup ?M) \<in> ?M" using P_f P_Union by simp | 
| 
8764a1f1253b
Theorem Inductive.lfp_ordinal_induct generalized to complete lattices
 haftmann parents: 
25557diff
changeset | 100 | hence "f (Sup ?M) \<le> Sup ?M" by (rule Sup_upper) | 
| 
8764a1f1253b
Theorem Inductive.lfp_ordinal_induct generalized to complete lattices
 haftmann parents: 
25557diff
changeset | 101 | thus "lfp f \<le> Sup ?M" by (rule lfp_lowerbound) | 
| 
8764a1f1253b
Theorem Inductive.lfp_ordinal_induct generalized to complete lattices
 haftmann parents: 
25557diff
changeset | 102 | qed | 
| 
8764a1f1253b
Theorem Inductive.lfp_ordinal_induct generalized to complete lattices
 haftmann parents: 
25557diff
changeset | 103 | finally show ?thesis . | 
| 
8764a1f1253b
Theorem Inductive.lfp_ordinal_induct generalized to complete lattices
 haftmann parents: 
25557diff
changeset | 104 | qed | 
| 
8764a1f1253b
Theorem Inductive.lfp_ordinal_induct generalized to complete lattices
 haftmann parents: 
25557diff
changeset | 105 | |
| 
8764a1f1253b
Theorem Inductive.lfp_ordinal_induct generalized to complete lattices
 haftmann parents: 
25557diff
changeset | 106 | lemma lfp_ordinal_induct_set: | 
| 24915 | 107 | assumes mono: "mono f" | 
| 108 | and P_f: "!!S. P S ==> P(f S)" | |
| 109 | and P_Union: "!!M. !S:M. P S ==> P(Union M)" | |
| 110 | shows "P(lfp f)" | |
| 32587 
caa5ada96a00
Inter and Union are mere abbreviations for Inf and Sup
 haftmann parents: 
31949diff
changeset | 111 | using assms by (rule lfp_ordinal_induct [where P=P]) | 
| 24915 | 112 | |
| 113 | ||
| 114 | text{*Definition forms of @{text lfp_unfold} and @{text lfp_induct}, 
 | |
| 115 | to control unfolding*} | |
| 116 | ||
| 117 | lemma def_lfp_unfold: "[| h==lfp(f); mono(f) |] ==> h = f(h)" | |
| 118 | by (auto intro!: lfp_unfold) | |
| 119 | ||
| 120 | lemma def_lfp_induct: | |
| 121 | "[| A == lfp(f); mono(f); | |
| 122 | f (inf A P) \<le> P | |
| 123 | |] ==> A \<le> P" | |
| 124 | by (blast intro: lfp_induct) | |
| 125 | ||
| 126 | lemma def_lfp_induct_set: | |
| 127 | "[| A == lfp(f); mono(f); a:A; | |
| 128 |         !!x. [| x: f(A Int {x. P(x)}) |] ==> P(x)         
 | |
| 129 | |] ==> P(a)" | |
| 130 | by (blast intro: lfp_induct_set) | |
| 131 | ||
| 132 | (*Monotonicity of lfp!*) | |
| 133 | lemma lfp_mono: "(!!Z. f Z \<le> g Z) ==> lfp f \<le> lfp g" | |
| 134 | by (rule lfp_lowerbound [THEN lfp_greatest], blast intro: order_trans) | |
| 135 | ||
| 136 | ||
| 137 | subsection {* Proof of Knaster-Tarski Theorem using @{term gfp} *}
 | |
| 138 | ||
| 139 | text{*@{term "gfp f"} is the greatest lower bound of 
 | |
| 140 |       the set @{term "{u. u \<le> f(u)}"} *}
 | |
| 141 | ||
| 142 | lemma gfp_upperbound: "X \<le> f X ==> X \<le> gfp f" | |
| 143 | by (auto simp add: gfp_def intro: Sup_upper) | |
| 144 | ||
| 145 | lemma gfp_least: "(!!u. u \<le> f u ==> u \<le> X) ==> gfp f \<le> X" | |
| 146 | by (auto simp add: gfp_def intro: Sup_least) | |
| 147 | ||
| 148 | lemma gfp_lemma2: "mono f ==> gfp f \<le> f (gfp f)" | |
| 149 | by (iprover intro: gfp_least order_trans monoD gfp_upperbound) | |
| 150 | ||
| 151 | lemma gfp_lemma3: "mono f ==> f (gfp f) \<le> gfp f" | |
| 152 | by (iprover intro: gfp_lemma2 monoD gfp_upperbound) | |
| 153 | ||
| 154 | lemma gfp_unfold: "mono f ==> gfp f = f (gfp f)" | |
| 155 | by (iprover intro: order_antisym gfp_lemma2 gfp_lemma3) | |
| 156 | ||
| 157 | ||
| 158 | subsection {* Coinduction rules for greatest fixed points *}
 | |
| 159 | ||
| 160 | text{*weak version*}
 | |
| 161 | lemma weak_coinduct: "[| a: X; X \<subseteq> f(X) |] ==> a : gfp(f)" | |
| 162 | by (rule gfp_upperbound [THEN subsetD], auto) | |
| 163 | ||
| 164 | lemma weak_coinduct_image: "!!X. [| a : X; g`X \<subseteq> f (g`X) |] ==> g a : gfp f" | |
| 165 | apply (erule gfp_upperbound [THEN subsetD]) | |
| 166 | apply (erule imageI) | |
| 167 | done | |
| 168 | ||
| 169 | lemma coinduct_lemma: | |
| 170 | "[| X \<le> f (sup X (gfp f)); mono f |] ==> sup X (gfp f) \<le> f (sup X (gfp f))" | |
| 171 | apply (frule gfp_lemma2) | |
| 172 | apply (drule mono_sup) | |
| 173 | apply (rule le_supI) | |
| 174 | apply assumption | |
| 175 | apply (rule order_trans) | |
| 176 | apply (rule order_trans) | |
| 177 | apply assumption | |
| 178 | apply (rule sup_ge2) | |
| 179 | apply assumption | |
| 180 | done | |
| 181 | ||
| 182 | text{*strong version, thanks to Coen and Frost*}
 | |
| 183 | lemma coinduct_set: "[| mono(f); a: X; X \<subseteq> f(X Un gfp(f)) |] ==> a : gfp(f)" | |
| 32683 
7c1fe854ca6a
inter and union are mere abbreviations for inf and sup
 haftmann parents: 
32587diff
changeset | 184 | by (blast intro: weak_coinduct [OF _ coinduct_lemma]) | 
| 24915 | 185 | |
| 186 | lemma coinduct: "[| mono(f); X \<le> f (sup X (gfp f)) |] ==> X \<le> gfp(f)" | |
| 187 | apply (rule order_trans) | |
| 188 | apply (rule sup_ge1) | |
| 189 | apply (erule gfp_upperbound [OF coinduct_lemma]) | |
| 190 | apply assumption | |
| 191 | done | |
| 192 | ||
| 193 | lemma gfp_fun_UnI2: "[| mono(f); a: gfp(f) |] ==> a: f(X Un gfp(f))" | |
| 194 | by (blast dest: gfp_lemma2 mono_Un) | |
| 195 | ||
| 196 | ||
| 197 | subsection {* Even Stronger Coinduction Rule, by Martin Coen *}
 | |
| 198 | ||
| 199 | text{* Weakens the condition @{term "X \<subseteq> f(X)"} to one expressed using both
 | |
| 200 |   @{term lfp} and @{term gfp}*}
 | |
| 201 | ||
| 202 | lemma coinduct3_mono_lemma: "mono(f) ==> mono(%x. f(x) Un X Un B)" | |
| 203 | by (iprover intro: subset_refl monoI Un_mono monoD) | |
| 204 | ||
| 205 | lemma coinduct3_lemma: | |
| 206 | "[| X \<subseteq> f(lfp(%x. f(x) Un X Un gfp(f))); mono(f) |] | |
| 207 | ==> lfp(%x. f(x) Un X Un gfp(f)) \<subseteq> f(lfp(%x. f(x) Un X Un gfp(f)))" | |
| 208 | apply (rule subset_trans) | |
| 209 | apply (erule coinduct3_mono_lemma [THEN lfp_lemma3]) | |
| 210 | apply (rule Un_least [THEN Un_least]) | |
| 211 | apply (rule subset_refl, assumption) | |
| 212 | apply (rule gfp_unfold [THEN equalityD1, THEN subset_trans], assumption) | |
| 26793 
e36a92ff543e
Instantiated some rules to avoid problems with HO unification.
 berghofe parents: 
26013diff
changeset | 213 | apply (rule monoD [where f=f], assumption) | 
| 24915 | 214 | apply (subst coinduct3_mono_lemma [THEN lfp_unfold], auto) | 
| 215 | done | |
| 216 | ||
| 217 | lemma coinduct3: | |
| 218 | "[| mono(f); a:X; X \<subseteq> f(lfp(%x. f(x) Un X Un gfp(f))) |] ==> a : gfp(f)" | |
| 219 | apply (rule coinduct3_lemma [THEN [2] weak_coinduct]) | |
| 220 | apply (rule coinduct3_mono_lemma [THEN lfp_unfold, THEN ssubst], auto) | |
| 221 | done | |
| 222 | ||
| 223 | ||
| 224 | text{*Definition forms of @{text gfp_unfold} and @{text coinduct}, 
 | |
| 225 | to control unfolding*} | |
| 226 | ||
| 227 | lemma def_gfp_unfold: "[| A==gfp(f); mono(f) |] ==> A = f(A)" | |
| 228 | by (auto intro!: gfp_unfold) | |
| 229 | ||
| 230 | lemma def_coinduct: | |
| 231 | "[| A==gfp(f); mono(f); X \<le> f(sup X A) |] ==> X \<le> A" | |
| 232 | by (iprover intro!: coinduct) | |
| 233 | ||
| 234 | lemma def_coinduct_set: | |
| 235 | "[| A==gfp(f); mono(f); a:X; X \<subseteq> f(X Un A) |] ==> a: A" | |
| 236 | by (auto intro!: coinduct_set) | |
| 237 | ||
| 238 | (*The version used in the induction/coinduction package*) | |
| 239 | lemma def_Collect_coinduct: | |
| 240 | "[| A == gfp(%w. Collect(P(w))); mono(%w. Collect(P(w))); | |
| 241 | a: X; !!z. z: X ==> P (X Un A) z |] ==> | |
| 242 | a : A" | |
| 243 | apply (erule def_coinduct_set, auto) | |
| 244 | done | |
| 245 | ||
| 246 | lemma def_coinduct3: | |
| 247 | "[| A==gfp(f); mono(f); a:X; X \<subseteq> f(lfp(%x. f(x) Un X Un A)) |] ==> a: A" | |
| 248 | by (auto intro!: coinduct3) | |
| 249 | ||
| 250 | text{*Monotonicity of @{term gfp}!*}
 | |
| 251 | lemma gfp_mono: "(!!Z. f Z \<le> g Z) ==> gfp f \<le> gfp g" | |
| 252 | by (rule gfp_upperbound [THEN gfp_least], blast intro: order_trans) | |
| 253 | ||
| 254 | ||
| 23734 | 255 | subsection {* Inductive predicates and sets *}
 | 
| 11688 | 256 | |
| 257 | text {* Package setup. *}
 | |
| 10402 | 258 | |
| 23734 | 259 | theorems basic_monos = | 
| 22218 | 260 | subset_refl imp_refl disj_mono conj_mono ex_mono all_mono if_bool_eq_conj | 
| 11688 | 261 | Collect_mono in_mono vimage_mono | 
| 262 | ||
| 31723 
f5cafe803b55
discontinued ancient tradition to suffix certain ML module names with "_package"
 haftmann parents: 
31604diff
changeset | 263 | use "Tools/inductive.ML" | 
| 
f5cafe803b55
discontinued ancient tradition to suffix certain ML module names with "_package"
 haftmann parents: 
31604diff
changeset | 264 | setup Inductive.setup | 
| 21018 
e6b8d6784792
Added new package for inductive definitions, moved old package
 berghofe parents: 
20604diff
changeset | 265 | |
| 23734 | 266 | theorems [mono] = | 
| 22218 | 267 | imp_refl disj_mono conj_mono ex_mono all_mono if_bool_eq_conj | 
| 33934 
25d6a8982e37
Streamlined setup for monotonicity rules (no longer requires classical rules).
 berghofe parents: 
32701diff
changeset | 268 | imp_mono not_mono | 
| 21018 
e6b8d6784792
Added new package for inductive definitions, moved old package
 berghofe parents: 
20604diff
changeset | 269 | Ball_def Bex_def | 
| 
e6b8d6784792
Added new package for inductive definitions, moved old package
 berghofe parents: 
20604diff
changeset | 270 | induct_rulify_fallback | 
| 
e6b8d6784792
Added new package for inductive definitions, moved old package
 berghofe parents: 
20604diff
changeset | 271 | |
| 11688 | 272 | |
| 12023 | 273 | subsection {* Inductive datatypes and primitive recursion *}
 | 
| 11688 | 274 | |
| 11825 | 275 | text {* Package setup. *}
 | 
| 276 | ||
| 31775 | 277 | use "Tools/Datatype/datatype_abs_proofs.ML" | 
| 33963 
977b94b64905
renamed former datatype.ML to datatype_data.ML; datatype.ML provides uniform view on datatype.ML and datatype_rep_proofs.ML
 haftmann parents: 
33959diff
changeset | 278 | use "Tools/Datatype/datatype_data.ML" | 
| 
977b94b64905
renamed former datatype.ML to datatype_data.ML; datatype.ML provides uniform view on datatype.ML and datatype_rep_proofs.ML
 haftmann parents: 
33959diff
changeset | 279 | setup Datatype_Data.setup | 
| 31604 | 280 | |
| 33968 
f94fb13ecbb3
modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
 haftmann parents: 
33966diff
changeset | 281 | use "Tools/Datatype/datatype_codegen.ML" | 
| 
f94fb13ecbb3
modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
 haftmann parents: 
33966diff
changeset | 282 | setup Datatype_Codegen.setup | 
| 
f94fb13ecbb3
modernized structures and tuned headers of datatype package modules; joined former datatype.ML and datatype_rep_proofs.ML
 haftmann parents: 
33966diff
changeset | 283 | |
| 31723 
f5cafe803b55
discontinued ancient tradition to suffix certain ML module names with "_package"
 haftmann parents: 
31604diff
changeset | 284 | use "Tools/primrec.ML" | 
| 12437 
6d4e02b6dd43
Moved code generator setup from Recdef to Inductive.
 berghofe parents: 
12023diff
changeset | 285 | |
| 23526 | 286 | text{* Lambda-abstractions with pattern matching: *}
 | 
| 287 | ||
| 288 | syntax | |
| 23529 | 289 |   "_lam_pats_syntax" :: "cases_syn => 'a => 'b"               ("(%_)" 10)
 | 
| 23526 | 290 | syntax (xsymbols) | 
| 23529 | 291 |   "_lam_pats_syntax" :: "cases_syn => 'a => 'b"               ("(\<lambda>_)" 10)
 | 
| 23526 | 292 | |
| 23529 | 293 | parse_translation (advanced) {*
 | 
| 294 | let | |
| 295 | fun fun_tr ctxt [cs] = | |
| 296 | let | |
| 29281 | 297 | val x = Free (Name.variant (Term.add_free_names cs []) "x", dummyT); | 
| 35115 | 298 | val ft = Datatype_Case.case_tr true Datatype_Data.info_of_constr ctxt [x, cs]; | 
| 23529 | 299 | in lambda x ft end | 
| 35115 | 300 | in [(@{syntax_const "_lam_pats_syntax"}, fun_tr)] end
 | 
| 23526 | 301 | *} | 
| 302 | ||
| 303 | end |