src/HOL/Library/DAList.thy
author wenzelm
Sun, 26 Nov 2017 21:08:32 +0100
changeset 67091 1393c2340eec
parent 63684 905d3fc815ff
child 72581 de581f98a3a1
permissions -rw-r--r--
more symbols;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
46237
99c80c2f841a renamed theory AList to DAList
bulwahn
parents: 46171
diff changeset
     1
(*  Title:      HOL/Library/DAList.thy
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
     2
    Author:     Lukas Bulwahn, TU Muenchen
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
     3
*)
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
     4
58881
b9556a055632 modernized header;
wenzelm
parents: 58806
diff changeset
     5
section \<open>Abstract type of association lists with unique keys\<close>
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
     6
46237
99c80c2f841a renamed theory AList to DAList
bulwahn
parents: 46171
diff changeset
     7
theory DAList
46238
9ace9e5b79be renaming theory AList_Impl back to AList (reverting 1fec5b365f9b; AList with distinct key invariant is called DAList)
bulwahn
parents: 46237
diff changeset
     8
imports AList
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
     9
begin
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
    10
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
    11
text \<open>This was based on some existing fragments in the AFP-Collection framework.\<close>
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
    12
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
    13
subsection \<open>Preliminaries\<close>
47143
212f7a975d49 association lists with distinct keys uses the quotient infrastructure to obtain code certificates;
bulwahn
parents: 46507
diff changeset
    14
212f7a975d49 association lists with distinct keys uses the quotient infrastructure to obtain code certificates;
bulwahn
parents: 46507
diff changeset
    15
lemma distinct_map_fst_filter:
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
    16
  "distinct (map fst xs) \<Longrightarrow> distinct (map fst (List.filter P xs))"
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
    17
  by (induct xs) auto
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
    18
47143
212f7a975d49 association lists with distinct keys uses the quotient infrastructure to obtain code certificates;
bulwahn
parents: 46507
diff changeset
    19
61585
a9599d3d7610 isabelle update_cartouches -c -t;
wenzelm
parents: 60919
diff changeset
    20
subsection \<open>Type \<open>('key, 'value) alist\<close>\<close>
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
    21
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
    22
typedef ('key, 'value) alist = "{xs :: ('key \<times> 'value) list. (distinct \<circ> map fst) xs}"
46507
1b24c24017dd tuned proofs;
wenzelm
parents: 46238
diff changeset
    23
  morphisms impl_of Alist
1b24c24017dd tuned proofs;
wenzelm
parents: 46238
diff changeset
    24
proof
67091
1393c2340eec more symbols;
wenzelm
parents: 63684
diff changeset
    25
  show "[] \<in> {xs. (distinct \<circ> map fst) xs}"
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
    26
    by simp
46507
1b24c24017dd tuned proofs;
wenzelm
parents: 46238
diff changeset
    27
qed
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
    28
47143
212f7a975d49 association lists with distinct keys uses the quotient infrastructure to obtain code certificates;
bulwahn
parents: 46507
diff changeset
    29
setup_lifting type_definition_alist
212f7a975d49 association lists with distinct keys uses the quotient infrastructure to obtain code certificates;
bulwahn
parents: 46507
diff changeset
    30
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
    31
lemma alist_ext: "impl_of xs = impl_of ys \<Longrightarrow> xs = ys"
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
    32
  by (simp add: impl_of_inject)
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
    33
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
    34
lemma alist_eq_iff: "xs = ys \<longleftrightarrow> impl_of xs = impl_of ys"
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
    35
  by (simp add: impl_of_inject)
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
    36
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
    37
lemma impl_of_distinct [simp, intro]: "distinct (map fst (impl_of xs))"
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
    38
  using impl_of[of xs] by simp
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
    39
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
    40
lemma Alist_impl_of [code abstype]: "Alist (impl_of xs) = xs"
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
    41
  by (rule impl_of_inverse)
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
    42
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
    43
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
    44
subsection \<open>Primitive operations\<close>
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
    45
55565
f663fc1e653b simplify proofs because of the stronger reflexivity prover
kuncar
parents: 51143
diff changeset
    46
lift_definition lookup :: "('key, 'value) alist \<Rightarrow> 'key \<Rightarrow> 'value option" is map_of  .
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
    47
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
    48
lift_definition empty :: "('key, 'value) alist" is "[]"
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
    49
  by simp
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
    50
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47178
diff changeset
    51
lift_definition update :: "'key \<Rightarrow> 'value \<Rightarrow> ('key, 'value) alist \<Rightarrow> ('key, 'value) alist"
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47178
diff changeset
    52
  is AList.update
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
    53
  by (simp add: distinct_update)
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
    54
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
    55
(* FIXME: we use an unoptimised delete operation. *)
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47178
diff changeset
    56
lift_definition delete :: "'key \<Rightarrow> ('key, 'value) alist \<Rightarrow> ('key, 'value) alist"
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47178
diff changeset
    57
  is AList.delete
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
    58
  by (simp add: distinct_delete)
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
    59
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
    60
lift_definition map_entry ::
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
    61
    "'key \<Rightarrow> ('value \<Rightarrow> 'value) \<Rightarrow> ('key, 'value) alist \<Rightarrow> ('key, 'value) alist"
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47178
diff changeset
    62
  is AList.map_entry
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
    63
  by (simp add: distinct_map_entry)
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
    64
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47178
diff changeset
    65
lift_definition filter :: "('key \<times> 'value \<Rightarrow> bool) \<Rightarrow> ('key, 'value) alist \<Rightarrow> ('key, 'value) alist"
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47178
diff changeset
    66
  is List.filter
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
    67
  by (simp add: distinct_map_fst_filter)
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
    68
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
    69
lift_definition map_default ::
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
    70
    "'key \<Rightarrow> 'value \<Rightarrow> ('value \<Rightarrow> 'value) \<Rightarrow> ('key, 'value) alist \<Rightarrow> ('key, 'value) alist"
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47178
diff changeset
    71
  is AList.map_default
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
    72
  by (simp add: distinct_map_default)
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
    73
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
    74
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
    75
subsection \<open>Abstract operation properties\<close>
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
    76
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
    77
(* FIXME: to be completed *)
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
    78
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
    79
lemma lookup_empty [simp]: "lookup empty k = None"
63684
905d3fc815ff added [simp] lemmas
nipkow
parents: 61585
diff changeset
    80
by (simp add: empty_def lookup_def Alist_inverse)
905d3fc815ff added [simp] lemmas
nipkow
parents: 61585
diff changeset
    81
905d3fc815ff added [simp] lemmas
nipkow
parents: 61585
diff changeset
    82
lemma lookup_update:
905d3fc815ff added [simp] lemmas
nipkow
parents: 61585
diff changeset
    83
  "lookup (update k1 v xs) k2 = (if k1 = k2 then Some v else lookup xs k2)"
905d3fc815ff added [simp] lemmas
nipkow
parents: 61585
diff changeset
    84
by(transfer)(simp add: update_conv')
905d3fc815ff added [simp] lemmas
nipkow
parents: 61585
diff changeset
    85
905d3fc815ff added [simp] lemmas
nipkow
parents: 61585
diff changeset
    86
lemma lookup_update_eq [simp]:
905d3fc815ff added [simp] lemmas
nipkow
parents: 61585
diff changeset
    87
  "k1 = k2 \<Longrightarrow> lookup (update k1 v xs) k2 = Some v"
905d3fc815ff added [simp] lemmas
nipkow
parents: 61585
diff changeset
    88
by(simp add: lookup_update)
905d3fc815ff added [simp] lemmas
nipkow
parents: 61585
diff changeset
    89
905d3fc815ff added [simp] lemmas
nipkow
parents: 61585
diff changeset
    90
lemma lookup_update_neq [simp]:
905d3fc815ff added [simp] lemmas
nipkow
parents: 61585
diff changeset
    91
  "k1 \<noteq> k2 \<Longrightarrow> lookup (update k1 v xs) k2 = lookup xs k2"
905d3fc815ff added [simp] lemmas
nipkow
parents: 61585
diff changeset
    92
by(simp add: lookup_update)
905d3fc815ff added [simp] lemmas
nipkow
parents: 61585
diff changeset
    93
905d3fc815ff added [simp] lemmas
nipkow
parents: 61585
diff changeset
    94
lemma update_update_eq [simp]:
905d3fc815ff added [simp] lemmas
nipkow
parents: 61585
diff changeset
    95
  "k1 = k2 \<Longrightarrow> update k2 v2 (update k1 v1 xs) = update k2 v2 xs"
905d3fc815ff added [simp] lemmas
nipkow
parents: 61585
diff changeset
    96
by(transfer)(simp add: update_conv')
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
    97
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
    98
lemma lookup_delete [simp]: "lookup (delete k al) = (lookup al)(k := None)"
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
    99
  by (simp add: lookup_def delete_def Alist_inverse distinct_delete delete_conv')
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   100
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   101
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   102
subsection \<open>Further operations\<close>
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   103
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   104
subsubsection \<open>Equality\<close>
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   105
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   106
instantiation alist :: (equal, equal) equal
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   107
begin
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   108
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   109
definition "HOL.equal (xs :: ('a, 'b) alist) ys == impl_of xs = impl_of ys"
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   110
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   111
instance
60679
ade12ef2773c tuned proofs;
wenzelm
parents: 59581
diff changeset
   112
  by standard (simp add: equal_alist_def impl_of_inject)
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   113
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   114
end
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   115
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   116
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   117
subsubsection \<open>Size\<close>
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   118
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   119
instantiation alist :: (type, type) size
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   120
begin
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   121
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   122
definition "size (al :: ('a, 'b) alist) = length (impl_of al)"
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   123
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   124
instance ..
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   125
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   126
end
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   127
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   128
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   129
subsection \<open>Quickcheck generators\<close>
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   130
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   131
notation fcomp (infixl "\<circ>>" 60)
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   132
notation scomp (infixl "\<circ>\<rightarrow>" 60)
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   133
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   134
definition (in term_syntax)
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   135
  valterm_empty :: "('key :: typerep, 'value :: typerep) alist \<times> (unit \<Rightarrow> Code_Evaluation.term)"
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   136
  where "valterm_empty = Code_Evaluation.valtermify empty"
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   137
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   138
definition (in term_syntax)
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   139
  valterm_update :: "'key :: typerep \<times> (unit \<Rightarrow> Code_Evaluation.term) \<Rightarrow>
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   140
  'value :: typerep \<times> (unit \<Rightarrow> Code_Evaluation.term) \<Rightarrow>
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   141
  ('key, 'value) alist \<times> (unit \<Rightarrow> Code_Evaluation.term) \<Rightarrow>
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   142
  ('key, 'value) alist \<times> (unit \<Rightarrow> Code_Evaluation.term)" where
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   143
  [code_unfold]: "valterm_update k v a = Code_Evaluation.valtermify update {\<cdot>} k {\<cdot>} v {\<cdot>}a"
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   144
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   145
fun (in term_syntax) random_aux_alist
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   146
where
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   147
  "random_aux_alist i j =
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   148
    (if i = 0 then Pair valterm_empty
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   149
     else Quickcheck_Random.collapse
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   150
       (Random.select_weight
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   151
         [(i, Quickcheck_Random.random j \<circ>\<rightarrow> (\<lambda>k. Quickcheck_Random.random j \<circ>\<rightarrow>
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   152
           (\<lambda>v. random_aux_alist (i - 1) j \<circ>\<rightarrow> (\<lambda>a. Pair (valterm_update k v a))))),
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   153
          (1, Pair valterm_empty)]))"
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   154
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   155
instantiation alist :: (random, random) random
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   156
begin
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   157
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   158
definition random_alist
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   159
where
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   160
  "random_alist i = random_aux_alist i i"
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   161
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   162
instance ..
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   163
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   164
end
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   165
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   166
no_notation fcomp (infixl "\<circ>>" 60)
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   167
no_notation scomp (infixl "\<circ>\<rightarrow>" 60)
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   168
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   169
instantiation alist :: (exhaustive, exhaustive) exhaustive
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   170
begin
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   171
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   172
fun exhaustive_alist ::
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   173
  "(('a, 'b) alist \<Rightarrow> (bool \<times> term list) option) \<Rightarrow> natural \<Rightarrow> (bool \<times> term list) option"
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   174
where
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   175
  "exhaustive_alist f i =
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   176
    (if i = 0 then None
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   177
     else
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   178
      case f empty of
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   179
        Some ts \<Rightarrow> Some ts
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   180
      | None \<Rightarrow>
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   181
          exhaustive_alist
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   182
            (\<lambda>a. Quickcheck_Exhaustive.exhaustive
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   183
              (\<lambda>k. Quickcheck_Exhaustive.exhaustive (\<lambda>v. f (update k v a)) (i - 1)) (i - 1))
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   184
            (i - 1))"
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   185
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   186
instance ..
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   187
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   188
end
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   189
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   190
instantiation alist :: (full_exhaustive, full_exhaustive) full_exhaustive
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   191
begin
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   192
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   193
fun full_exhaustive_alist ::
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   194
  "(('a, 'b) alist \<times> (unit \<Rightarrow> term) \<Rightarrow> (bool \<times> term list) option) \<Rightarrow> natural \<Rightarrow>
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   195
    (bool \<times> term list) option"
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   196
where
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   197
  "full_exhaustive_alist f i =
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   198
    (if i = 0 then None
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   199
     else
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   200
      case f valterm_empty of
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   201
        Some ts \<Rightarrow> Some ts
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   202
      | None \<Rightarrow>
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   203
          full_exhaustive_alist
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   204
            (\<lambda>a.
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   205
              Quickcheck_Exhaustive.full_exhaustive
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   206
                (\<lambda>k. Quickcheck_Exhaustive.full_exhaustive (\<lambda>v. f (valterm_update k v a)) (i - 1))
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   207
              (i - 1))
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   208
            (i - 1))"
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   209
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   210
instance ..
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   211
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   212
end
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   213
59581
09722854b8f4 alist is a BNF
traytel
parents: 58881
diff changeset
   214
09722854b8f4 alist is a BNF
traytel
parents: 58881
diff changeset
   215
section \<open>alist is a BNF\<close>
09722854b8f4 alist is a BNF
traytel
parents: 58881
diff changeset
   216
60919
b0ba7799d05a use lift_bnf in an example
traytel
parents: 60679
diff changeset
   217
lift_bnf (dead 'k, set: 'v) alist [wits: "[] :: ('k \<times> 'v) list"] for map: map rel: rel
b0ba7799d05a use lift_bnf in an example
traytel
parents: 60679
diff changeset
   218
  by auto
59581
09722854b8f4 alist is a BNF
traytel
parents: 58881
diff changeset
   219
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   220
hide_const valterm_empty valterm_update random_aux_alist
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   221
46171
19f68d7671f0 proper hiding of facts and constants in AList_Impl and AList theory
bulwahn
parents: 46167
diff changeset
   222
hide_fact (open) lookup_def empty_def update_def delete_def map_entry_def filter_def map_default_def
59581
09722854b8f4 alist is a BNF
traytel
parents: 58881
diff changeset
   223
hide_const (open) impl_of lookup empty update delete map_entry filter map_default map set rel
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   224
46238
9ace9e5b79be renaming theory AList_Impl back to AList (reverting 1fec5b365f9b; AList with distinct key invariant is called DAList)
bulwahn
parents: 46237
diff changeset
   225
end