src/HOL/Enum.thy
author bulwahn
Mon, 22 Nov 2010 11:35:07 +0100
changeset 40657 58a6ba7ccfc5
parent 40652 7bdfc1d6b143
child 40659 b26afaa55a75
permissions -rw-r--r--
hiding the constants
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
31596
c96d7e5df659 tuned whitespace
haftmann
parents: 31482
diff changeset
     1
(* Author: Florian Haftmann, TU Muenchen *)
26348
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
     2
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
     3
header {* Finite types as explicit enumerations *}
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
     4
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
     5
theory Enum
40650
d40b347d5b0b adding Enum to HOL-Main image and removing it from HOL-Library
bulwahn
parents: 40649
diff changeset
     6
imports Map String
26348
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
     7
begin
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
     8
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
     9
subsection {* Class @{text enum} *}
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
    10
29797
08ef36ed2f8a handling type classes without parameters
haftmann
parents: 29024
diff changeset
    11
class enum =
26348
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
    12
  fixes enum :: "'a list"
33635
dcaada178c6f moved lemma map_of_zip_map to Map.thy
haftmann
parents: 31596
diff changeset
    13
  assumes UNIV_enum: "UNIV = set enum"
26444
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
    14
    and enum_distinct: "distinct enum"
26348
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
    15
begin
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
    16
29797
08ef36ed2f8a handling type classes without parameters
haftmann
parents: 29024
diff changeset
    17
subclass finite proof
08ef36ed2f8a handling type classes without parameters
haftmann
parents: 29024
diff changeset
    18
qed (simp add: UNIV_enum)
26444
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
    19
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
    20
lemma enum_all: "set enum = UNIV" unfolding UNIV_enum ..
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
    21
26348
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
    22
lemma in_enum [intro]: "x \<in> set enum"
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
    23
  unfolding enum_all by auto
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
    24
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
    25
lemma enum_eq_I:
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
    26
  assumes "\<And>x. x \<in> set xs"
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
    27
  shows "set enum = set xs"
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
    28
proof -
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
    29
  from assms UNIV_eq_I have "UNIV = set xs" by auto
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
    30
  with enum_all show ?thesis by simp
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
    31
qed
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
    32
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
    33
end
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
    34
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
    35
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
    36
subsection {* Equality and order on functions *}
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
    37
38857
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 37765
diff changeset
    38
instantiation "fun" :: (enum, equal) equal
26513
6f306c8c2c54 explicit class "eq" for operational equality
haftmann
parents: 26444
diff changeset
    39
begin
26348
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
    40
26513
6f306c8c2c54 explicit class "eq" for operational equality
haftmann
parents: 26444
diff changeset
    41
definition
38857
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 37765
diff changeset
    42
  "HOL.equal f g \<longleftrightarrow> (\<forall>x \<in> set enum. f x = g x)"
26513
6f306c8c2c54 explicit class "eq" for operational equality
haftmann
parents: 26444
diff changeset
    43
31464
b2aca38301c4 tuned proofs
haftmann
parents: 31193
diff changeset
    44
instance proof
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39198
diff changeset
    45
qed (simp_all add: equal_fun_def enum_all fun_eq_iff)
26513
6f306c8c2c54 explicit class "eq" for operational equality
haftmann
parents: 26444
diff changeset
    46
6f306c8c2c54 explicit class "eq" for operational equality
haftmann
parents: 26444
diff changeset
    47
end
26348
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
    48
38857
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 37765
diff changeset
    49
lemma [code nbe]:
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 37765
diff changeset
    50
  "HOL.equal (f :: _ \<Rightarrow> _) f \<longleftrightarrow> True"
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 37765
diff changeset
    51
  by (fact equal_refl)
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 37765
diff changeset
    52
40651
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
    53
lemma [code]:
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
    54
  "HOL.equal f g \<longleftrightarrow>  list_all (%x. f x = g x) enum"
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
    55
by (auto simp add: list_all_iff enum_all equal fun_eq_iff)
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
    56
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 28245
diff changeset
    57
lemma order_fun [code]:
26348
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
    58
  fixes f g :: "'a\<Colon>enum \<Rightarrow> 'b\<Colon>order"
26968
bb0a56a66180 added code for quantifiers
haftmann
parents: 26815
diff changeset
    59
  shows "f \<le> g \<longleftrightarrow> list_all (\<lambda>x. f x \<le> g x) enum"
37601
2a4fb776ca53 tuned lemma formulations
haftmann
parents: 33639
diff changeset
    60
    and "f < g \<longleftrightarrow> f \<le> g \<and> list_ex (\<lambda>x. f x \<noteq> g x) enum"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39198
diff changeset
    61
  by (simp_all add: list_all_iff list_ex_iff enum_all fun_eq_iff le_fun_def order_less_le)
26968
bb0a56a66180 added code for quantifiers
haftmann
parents: 26815
diff changeset
    62
bb0a56a66180 added code for quantifiers
haftmann
parents: 26815
diff changeset
    63
bb0a56a66180 added code for quantifiers
haftmann
parents: 26815
diff changeset
    64
subsection {* Quantifiers *}
bb0a56a66180 added code for quantifiers
haftmann
parents: 26815
diff changeset
    65
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 28245
diff changeset
    66
lemma all_code [code]: "(\<forall>x. P x) \<longleftrightarrow> list_all P enum"
26968
bb0a56a66180 added code for quantifiers
haftmann
parents: 26815
diff changeset
    67
  by (simp add: list_all_iff enum_all)
bb0a56a66180 added code for quantifiers
haftmann
parents: 26815
diff changeset
    68
37601
2a4fb776ca53 tuned lemma formulations
haftmann
parents: 33639
diff changeset
    69
lemma exists_code [code]: "(\<exists>x. P x) \<longleftrightarrow> list_ex P enum"
2a4fb776ca53 tuned lemma formulations
haftmann
parents: 33639
diff changeset
    70
  by (simp add: list_ex_iff enum_all)
26348
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
    71
40652
7bdfc1d6b143 adding code equations for EX1 on finite types
bulwahn
parents: 40651
diff changeset
    72
lemma exists1_code[code]: "(\<exists>!x. P x) \<longleftrightarrow> list_ex1 P enum"
7bdfc1d6b143 adding code equations for EX1 on finite types
bulwahn
parents: 40651
diff changeset
    73
unfolding list_ex1_iff enum_all by auto
7bdfc1d6b143 adding code equations for EX1 on finite types
bulwahn
parents: 40651
diff changeset
    74
26348
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
    75
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
    76
subsection {* Default instances *}
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
    77
26444
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
    78
primrec n_lists :: "nat \<Rightarrow> 'a list \<Rightarrow> 'a list list" where
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
    79
  "n_lists 0 xs = [[]]"
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
    80
  | "n_lists (Suc n) xs = concat (map (\<lambda>ys. map (\<lambda>y. y # ys) xs) (n_lists n xs))"
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
    81
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
    82
lemma n_lists_Nil [simp]: "n_lists n [] = (if n = 0 then [[]] else [])"
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
    83
  by (induct n) simp_all
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
    84
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
    85
lemma length_n_lists: "length (n_lists n xs) = length xs ^ n"
33639
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33635
diff changeset
    86
  by (induct n) (auto simp add: length_concat o_def listsum_triv)
26444
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
    87
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
    88
lemma length_n_lists_elem: "ys \<in> set (n_lists n xs) \<Longrightarrow> length ys = n"
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
    89
  by (induct n arbitrary: ys) auto
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
    90
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
    91
lemma set_n_lists: "set (n_lists n xs) = {ys. length ys = n \<and> set ys \<subseteq> set xs}"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39198
diff changeset
    92
proof (rule set_eqI)
26444
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
    93
  fix ys :: "'a list"
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
    94
  show "ys \<in> set (n_lists n xs) \<longleftrightarrow> ys \<in> {ys. length ys = n \<and> set ys \<subseteq> set xs}"
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
    95
  proof -
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
    96
    have "ys \<in> set (n_lists n xs) \<Longrightarrow> length ys = n"
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
    97
      by (induct n arbitrary: ys) auto
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
    98
    moreover have "\<And>x. ys \<in> set (n_lists n xs) \<Longrightarrow> x \<in> set ys \<Longrightarrow> x \<in> set xs"
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
    99
      by (induct n arbitrary: ys) auto
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   100
    moreover have "set ys \<subseteq> set xs \<Longrightarrow> ys \<in> set (n_lists (length ys) xs)"
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   101
      by (induct ys) auto
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   102
    ultimately show ?thesis by auto
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   103
  qed
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   104
qed
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   105
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   106
lemma distinct_n_lists:
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   107
  assumes "distinct xs"
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   108
  shows "distinct (n_lists n xs)"
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   109
proof (rule card_distinct)
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   110
  from assms have card_length: "card (set xs) = length xs" by (rule distinct_card)
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   111
  have "card (set (n_lists n xs)) = card (set xs) ^ n"
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   112
  proof (induct n)
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   113
    case 0 then show ?case by simp
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   114
  next
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   115
    case (Suc n)
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   116
    moreover have "card (\<Union>ys\<in>set (n_lists n xs). (\<lambda>y. y # ys) ` set xs)
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   117
      = (\<Sum>ys\<in>set (n_lists n xs). card ((\<lambda>y. y # ys) ` set xs))"
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   118
      by (rule card_UN_disjoint) auto
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   119
    moreover have "\<And>ys. card ((\<lambda>y. y # ys) ` set xs) = card (set xs)"
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   120
      by (rule card_image) (simp add: inj_on_def)
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   121
    ultimately show ?case by auto
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   122
  qed
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   123
  also have "\<dots> = length xs ^ n" by (simp add: card_length)
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   124
  finally show "card (set (n_lists n xs)) = length (n_lists n xs)"
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   125
    by (simp add: length_n_lists)
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   126
qed
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   127
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   128
lemma map_of_zip_enum_is_Some:
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   129
  assumes "length ys = length (enum \<Colon> 'a\<Colon>enum list)"
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   130
  shows "\<exists>y. map_of (zip (enum \<Colon> 'a\<Colon>enum list) ys) x = Some y"
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   131
proof -
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   132
  from assms have "x \<in> set (enum \<Colon> 'a\<Colon>enum list) \<longleftrightarrow>
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   133
    (\<exists>y. map_of (zip (enum \<Colon> 'a\<Colon>enum list) ys) x = Some y)"
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   134
    by (auto intro!: map_of_zip_is_Some)
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   135
  then show ?thesis using enum_all by auto
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   136
qed
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   137
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   138
lemma map_of_zip_enum_inject:
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   139
  fixes xs ys :: "'b\<Colon>enum list"
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   140
  assumes length: "length xs = length (enum \<Colon> 'a\<Colon>enum list)"
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   141
      "length ys = length (enum \<Colon> 'a\<Colon>enum list)"
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   142
    and map_of: "the \<circ> map_of (zip (enum \<Colon> 'a\<Colon>enum list) xs) = the \<circ> map_of (zip (enum \<Colon> 'a\<Colon>enum list) ys)"
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   143
  shows "xs = ys"
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   144
proof -
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   145
  have "map_of (zip (enum \<Colon> 'a list) xs) = map_of (zip (enum \<Colon> 'a list) ys)"
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   146
  proof
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   147
    fix x :: 'a
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   148
    from length map_of_zip_enum_is_Some obtain y1 y2
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   149
      where "map_of (zip (enum \<Colon> 'a list) xs) x = Some y1"
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   150
        and "map_of (zip (enum \<Colon> 'a list) ys) x = Some y2" by blast
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   151
    moreover from map_of have "the (map_of (zip (enum \<Colon> 'a\<Colon>enum list) xs) x) = the (map_of (zip (enum \<Colon> 'a\<Colon>enum list) ys) x)"
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   152
      by (auto dest: fun_cong)
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   153
    ultimately show "map_of (zip (enum \<Colon> 'a\<Colon>enum list) xs) x = map_of (zip (enum \<Colon> 'a\<Colon>enum list) ys) x"
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   154
      by simp
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   155
  qed
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   156
  with length enum_distinct show "xs = ys" by (rule map_of_zip_inject)
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   157
qed
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   158
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   159
instantiation "fun" :: (enum, enum) enum
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   160
begin
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   161
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   162
definition
37765
26bdfb7b680b dropped superfluous [code del]s
haftmann
parents: 37678
diff changeset
   163
  "enum = map (\<lambda>ys. the o map_of (zip (enum\<Colon>'a list) ys)) (n_lists (length (enum\<Colon>'a\<Colon>enum list)) enum)"
26444
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   164
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   165
instance proof
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   166
  show "UNIV = set (enum \<Colon> ('a \<Rightarrow> 'b) list)"
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   167
  proof (rule UNIV_eq_I)
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   168
    fix f :: "'a \<Rightarrow> 'b"
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   169
    have "f = the \<circ> map_of (zip (enum \<Colon> 'a\<Colon>enum list) (map f enum))"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39198
diff changeset
   170
      by (auto simp add: map_of_zip_map fun_eq_iff)
26444
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   171
    then show "f \<in> set enum"
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   172
      by (auto simp add: enum_fun_def set_n_lists)
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   173
  qed
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   174
next
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   175
  from map_of_zip_enum_inject
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   176
  show "distinct (enum \<Colon> ('a \<Rightarrow> 'b) list)"
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   177
    by (auto intro!: inj_onI simp add: enum_fun_def
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   178
      distinct_map distinct_n_lists enum_distinct set_n_lists enum_all)
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   179
qed
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   180
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   181
end
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   182
38857
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 37765
diff changeset
   183
lemma enum_fun_code [code]: "enum = (let enum_a = (enum \<Colon> 'a\<Colon>{enum, equal} list)
28245
9767dd8e1e54 celver code lemma avoid type ambiguity problem with Haskell
haftmann
parents: 27487
diff changeset
   184
  in map (\<lambda>ys. the o map_of (zip enum_a ys)) (n_lists (length enum_a) enum))"
9767dd8e1e54 celver code lemma avoid type ambiguity problem with Haskell
haftmann
parents: 27487
diff changeset
   185
  by (simp add: enum_fun_def Let_def)
26444
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   186
26348
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   187
instantiation unit :: enum
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   188
begin
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   189
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   190
definition
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   191
  "enum = [()]"
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   192
31464
b2aca38301c4 tuned proofs
haftmann
parents: 31193
diff changeset
   193
instance proof
b2aca38301c4 tuned proofs
haftmann
parents: 31193
diff changeset
   194
qed (simp_all add: enum_unit_def UNIV_unit)
26348
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   195
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   196
end
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   197
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   198
instantiation bool :: enum
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   199
begin
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   200
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   201
definition
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   202
  "enum = [False, True]"
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   203
31464
b2aca38301c4 tuned proofs
haftmann
parents: 31193
diff changeset
   204
instance proof
b2aca38301c4 tuned proofs
haftmann
parents: 31193
diff changeset
   205
qed (simp_all add: enum_bool_def UNIV_bool)
26348
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   206
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   207
end
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   208
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   209
primrec product :: "'a list \<Rightarrow> 'b list \<Rightarrow> ('a \<times> 'b) list" where
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   210
  "product [] _ = []"
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   211
  | "product (x#xs) ys = map (Pair x) ys @ product xs ys"
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   212
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   213
lemma product_list_set:
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   214
  "set (product xs ys) = set xs \<times> set ys"
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   215
  by (induct xs) auto
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   216
26444
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   217
lemma distinct_product:
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   218
  assumes "distinct xs" and "distinct ys"
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   219
  shows "distinct (product xs ys)"
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   220
  using assms by (induct xs)
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   221
    (auto intro: inj_onI simp add: product_list_set distinct_map)
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   222
37678
0040bafffdef "prod" and "sum" replace "*" and "+" respectively
haftmann
parents: 37601
diff changeset
   223
instantiation prod :: (enum, enum) enum
26348
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   224
begin
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   225
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   226
definition
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   227
  "enum = product enum enum"
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   228
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   229
instance by default
26444
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   230
  (simp_all add: enum_prod_def product_list_set distinct_product enum_all enum_distinct)
26348
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   231
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   232
end
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   233
37678
0040bafffdef "prod" and "sum" replace "*" and "+" respectively
haftmann
parents: 37601
diff changeset
   234
instantiation sum :: (enum, enum) enum
26348
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   235
begin
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   236
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   237
definition
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   238
  "enum = map Inl enum @ map Inr enum"
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   239
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   240
instance by default
26444
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   241
  (auto simp add: enum_all enum_sum_def, case_tac x, auto intro: inj_onI simp add: distinct_map enum_distinct)
26348
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   242
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   243
end
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   244
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   245
primrec sublists :: "'a list \<Rightarrow> 'a list list" where
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   246
  "sublists [] = [[]]"
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   247
  | "sublists (x#xs) = (let xss = sublists xs in map (Cons x) xss @ xss)"
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   248
26444
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   249
lemma length_sublists:
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   250
  "length (sublists xs) = Suc (Suc (0\<Colon>nat)) ^ length xs"
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   251
  by (induct xs) (simp_all add: Let_def)
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   252
26348
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   253
lemma sublists_powset:
26444
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   254
  "set ` set (sublists xs) = Pow (set xs)"
26348
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   255
proof -
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   256
  have aux: "\<And>x A. set ` Cons x ` A = insert x ` set ` A"
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   257
    by (auto simp add: image_def)
26444
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   258
  have "set (map set (sublists xs)) = Pow (set xs)"
26348
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   259
    by (induct xs)
33639
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33635
diff changeset
   260
      (simp_all add: aux Let_def Pow_insert Un_commute comp_def del: map_map)
26444
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   261
  then show ?thesis by simp
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   262
qed
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   263
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   264
lemma distinct_set_sublists:
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   265
  assumes "distinct xs"
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   266
  shows "distinct (map set (sublists xs))"
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   267
proof (rule card_distinct)
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   268
  have "finite (set xs)" by rule
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   269
  then have "card (Pow (set xs)) = Suc (Suc 0) ^ card (set xs)" by (rule card_Pow)
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   270
  with assms distinct_card [of xs]
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   271
    have "card (Pow (set xs)) = Suc (Suc 0) ^ length xs" by simp
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   272
  then show "card (set (map set (sublists xs))) = length (map set (sublists xs))"
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   273
    by (simp add: sublists_powset length_sublists)
26348
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   274
qed
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   275
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   276
instantiation nibble :: enum
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   277
begin
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   278
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   279
definition
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   280
  "enum = [Nibble0, Nibble1, Nibble2, Nibble3, Nibble4, Nibble5, Nibble6, Nibble7,
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   281
    Nibble8, Nibble9, NibbleA, NibbleB, NibbleC, NibbleD, NibbleE, NibbleF]"
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   282
31464
b2aca38301c4 tuned proofs
haftmann
parents: 31193
diff changeset
   283
instance proof
b2aca38301c4 tuned proofs
haftmann
parents: 31193
diff changeset
   284
qed (simp_all add: enum_nibble_def UNIV_nibble)
26348
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   285
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   286
end
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   287
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   288
instantiation char :: enum
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   289
begin
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   290
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   291
definition
37765
26bdfb7b680b dropped superfluous [code del]s
haftmann
parents: 37678
diff changeset
   292
  "enum = map (split Char) (product enum enum)"
26444
6a5faa5bcf19 instance for functions, explicit characters
haftmann
parents: 26348
diff changeset
   293
31482
7288382fd549 using constant "chars"
haftmann
parents: 31464
diff changeset
   294
lemma enum_chars [code]:
7288382fd549 using constant "chars"
haftmann
parents: 31464
diff changeset
   295
  "enum = chars"
7288382fd549 using constant "chars"
haftmann
parents: 31464
diff changeset
   296
  unfolding enum_char_def chars_def enum_nibble_def by simp
26348
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   297
31464
b2aca38301c4 tuned proofs
haftmann
parents: 31193
diff changeset
   298
instance proof
b2aca38301c4 tuned proofs
haftmann
parents: 31193
diff changeset
   299
qed (auto intro: char.exhaust injI simp add: enum_char_def product_list_set enum_all full_SetCompr_eq [symmetric]
b2aca38301c4 tuned proofs
haftmann
parents: 31193
diff changeset
   300
  distinct_map distinct_product enum_distinct)
26348
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   301
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   302
end
0f8e23edd357 added theory Library/Enum.thy
haftmann
parents:
diff changeset
   303
29024
6cfa380af73b instantiation option :: (enum) enum
huffman
parents: 28684
diff changeset
   304
instantiation option :: (enum) enum
6cfa380af73b instantiation option :: (enum) enum
huffman
parents: 28684
diff changeset
   305
begin
6cfa380af73b instantiation option :: (enum) enum
huffman
parents: 28684
diff changeset
   306
6cfa380af73b instantiation option :: (enum) enum
huffman
parents: 28684
diff changeset
   307
definition
6cfa380af73b instantiation option :: (enum) enum
huffman
parents: 28684
diff changeset
   308
  "enum = None # map Some enum"
6cfa380af73b instantiation option :: (enum) enum
huffman
parents: 28684
diff changeset
   309
31464
b2aca38301c4 tuned proofs
haftmann
parents: 31193
diff changeset
   310
instance proof
b2aca38301c4 tuned proofs
haftmann
parents: 31193
diff changeset
   311
qed (auto simp add: enum_all enum_option_def, rule option.exhaust, auto intro: simp add: distinct_map enum_distinct)
29024
6cfa380af73b instantiation option :: (enum) enum
huffman
parents: 28684
diff changeset
   312
6cfa380af73b instantiation option :: (enum) enum
huffman
parents: 28684
diff changeset
   313
end
6cfa380af73b instantiation option :: (enum) enum
huffman
parents: 28684
diff changeset
   314
40647
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   315
subsection {* Small finite types *}
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   316
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   317
text {* We define small finite types for the use in Quickcheck *}
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   318
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   319
datatype finite_1 = a\<^isub>1
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   320
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   321
instantiation finite_1 :: enum
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   322
begin
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   323
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   324
definition
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   325
  "enum = [a\<^isub>1]"
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   326
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   327
instance proof
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   328
qed (auto simp add: enum_finite_1_def intro: finite_1.exhaust)
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   329
29024
6cfa380af73b instantiation option :: (enum) enum
huffman
parents: 28684
diff changeset
   330
end
40647
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   331
40651
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   332
instantiation finite_1 :: linorder
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   333
begin
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   334
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   335
definition less_eq_finite_1 :: "finite_1 \<Rightarrow> finite_1 \<Rightarrow> bool"
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   336
where
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   337
  "less_eq_finite_1 x y = True"
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   338
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   339
definition less_finite_1 :: "finite_1 \<Rightarrow> finite_1 \<Rightarrow> bool"
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   340
where
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   341
  "less_finite_1 x y = False"
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   342
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   343
instance
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   344
apply (intro_classes)
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   345
apply (auto simp add: less_finite_1_def less_eq_finite_1_def)
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   346
apply (metis finite_1.exhaust)
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   347
done
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   348
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   349
end
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   350
40657
58a6ba7ccfc5 hiding the constants
bulwahn
parents: 40652
diff changeset
   351
hide_const a\<^isub>1
58a6ba7ccfc5 hiding the constants
bulwahn
parents: 40652
diff changeset
   352
40647
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   353
datatype finite_2 = a\<^isub>1 | a\<^isub>2
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   354
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   355
instantiation finite_2 :: enum
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   356
begin
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   357
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   358
definition
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   359
  "enum = [a\<^isub>1, a\<^isub>2]"
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   360
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   361
instance proof
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   362
qed (auto simp add: enum_finite_2_def intro: finite_2.exhaust)
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   363
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   364
end
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   365
40651
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   366
instantiation finite_2 :: linorder
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   367
begin
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   368
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   369
definition less_finite_2 :: "finite_2 \<Rightarrow> finite_2 \<Rightarrow> bool"
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   370
where
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   371
  "less_finite_2 x y = ((x = a\<^isub>1) & (y = a\<^isub>2))"
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   372
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   373
definition less_eq_finite_2 :: "finite_2 \<Rightarrow> finite_2 \<Rightarrow> bool"
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   374
where
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   375
  "less_eq_finite_2 x y = ((x = y) \<or> (x < y))"
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   376
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   377
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   378
instance
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   379
apply (intro_classes)
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   380
apply (auto simp add: less_finite_2_def less_eq_finite_2_def)
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   381
apply (metis finite_2.distinct finite_2.nchotomy)+
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   382
done
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   383
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   384
end
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   385
40657
58a6ba7ccfc5 hiding the constants
bulwahn
parents: 40652
diff changeset
   386
hide_const a\<^isub>1 a\<^isub>2
58a6ba7ccfc5 hiding the constants
bulwahn
parents: 40652
diff changeset
   387
40651
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   388
40647
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   389
datatype finite_3 = a\<^isub>1 | a\<^isub>2 | a\<^isub>3
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   390
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   391
instantiation finite_3 :: enum
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   392
begin
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   393
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   394
definition
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   395
  "enum = [a\<^isub>1, a\<^isub>2, a\<^isub>3]"
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   396
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   397
instance proof
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   398
qed (auto simp add: enum_finite_3_def intro: finite_3.exhaust)
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   399
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   400
end
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   401
40651
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   402
instantiation finite_3 :: linorder
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   403
begin
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   404
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   405
definition less_finite_3 :: "finite_3 \<Rightarrow> finite_3 \<Rightarrow> bool"
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   406
where
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   407
  "less_finite_3 x y = (case x of a\<^isub>1 => (y \<noteq> a\<^isub>1)
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   408
     | a\<^isub>2 => (y = a\<^isub>3)| a\<^isub>3 => False)"
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   409
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   410
definition less_eq_finite_3 :: "finite_3 \<Rightarrow> finite_3 \<Rightarrow> bool"
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   411
where
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   412
  "less_eq_finite_3 x y = ((x = y) \<or> (x < y))"
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   413
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   414
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   415
instance proof (intro_classes)
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   416
qed (auto simp add: less_finite_3_def less_eq_finite_3_def split: finite_3.split_asm)
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   417
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   418
end
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   419
40657
58a6ba7ccfc5 hiding the constants
bulwahn
parents: 40652
diff changeset
   420
hide_const a\<^isub>1 a\<^isub>2 a\<^isub>3
58a6ba7ccfc5 hiding the constants
bulwahn
parents: 40652
diff changeset
   421
40651
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   422
40647
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   423
datatype finite_4 = a\<^isub>1 | a\<^isub>2 | a\<^isub>3 | a\<^isub>4
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   424
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   425
instantiation finite_4 :: enum
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   426
begin
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   427
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   428
definition
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   429
  "enum = [a\<^isub>1, a\<^isub>2, a\<^isub>3, a\<^isub>4]"
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   430
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   431
instance proof
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   432
qed (auto simp add: enum_finite_4_def intro: finite_4.exhaust)
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   433
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   434
end
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   435
40657
58a6ba7ccfc5 hiding the constants
bulwahn
parents: 40652
diff changeset
   436
hide_const a\<^isub>1 a\<^isub>2 a\<^isub>3 a\<^isub>4
40651
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   437
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   438
40647
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   439
datatype finite_5 = a\<^isub>1 | a\<^isub>2 | a\<^isub>3 | a\<^isub>4 | a\<^isub>5
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   440
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   441
instantiation finite_5 :: enum
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   442
begin
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   443
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   444
definition
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   445
  "enum = [a\<^isub>1, a\<^isub>2, a\<^isub>3, a\<^isub>4, a\<^isub>5]"
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   446
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   447
instance proof
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   448
qed (auto simp add: enum_finite_5_def intro: finite_5.exhaust)
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   449
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   450
end
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   451
40657
58a6ba7ccfc5 hiding the constants
bulwahn
parents: 40652
diff changeset
   452
hide_const a\<^isub>1 a\<^isub>2 a\<^isub>3 a\<^isub>4 a\<^isub>5
58a6ba7ccfc5 hiding the constants
bulwahn
parents: 40652
diff changeset
   453
58a6ba7ccfc5 hiding the constants
bulwahn
parents: 40652
diff changeset
   454
40647
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   455
hide_type finite_1 finite_2 finite_3 finite_4 finite_5
40651
9752ba7348b5 adding code equation for function equality; adding some instantiations for the finite types
bulwahn
parents: 40650
diff changeset
   456
hide_const (open) n_lists product
40647
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   457
6e92ca8e981b adding prototype for finite_type instantiations
bulwahn
parents: 39302
diff changeset
   458
end