src/HOL/Library/DAList.thy
author haftmann
Sun, 06 Sep 2015 22:14:51 +0200
changeset 61127 76cd7f1ec257
parent 60919 b0ba7799d05a
child 61585 a9599d3d7610
permissions -rw-r--r--
tuned notation, proofs, namespace
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
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
    20
subsection \<open>Type @{text "('key, 'value) alist" }\<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
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
    25
  show "[] \<in> {xs. (distinct o map fst) xs}"
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"
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
    80
  by (simp add: empty_def lookup_def Alist_inverse)
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
    81
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
    82
lemma lookup_delete [simp]: "lookup (delete k al) = (lookup al)(k := None)"
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
    83
  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
    84
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
    85
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
    86
subsection \<open>Further operations\<close>
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
    87
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
    88
subsubsection \<open>Equality\<close>
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
    89
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
    90
instantiation alist :: (equal, equal) equal
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
    91
begin
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
    92
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
    93
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
    94
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
    95
instance
60679
ade12ef2773c tuned proofs;
wenzelm
parents: 59581
diff changeset
    96
  by standard (simp add: equal_alist_def impl_of_inject)
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
end
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
    99
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   100
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   101
subsubsection \<open>Size\<close>
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   102
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   103
instantiation alist :: (type, type) size
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   104
begin
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   105
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   106
definition "size (al :: ('a, 'b) alist) = length (impl_of al)"
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   107
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   108
instance ..
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   109
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   110
end
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   111
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   112
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   113
subsection \<open>Quickcheck generators\<close>
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   114
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   115
notation fcomp (infixl "\<circ>>" 60)
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   116
notation scomp (infixl "\<circ>\<rightarrow>" 60)
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   117
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   118
definition (in term_syntax)
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   119
  valterm_empty :: "('key :: typerep, 'value :: typerep) alist \<times> (unit \<Rightarrow> Code_Evaluation.term)"
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   120
  where "valterm_empty = Code_Evaluation.valtermify empty"
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 (in term_syntax)
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   123
  valterm_update :: "'key :: typerep \<times> (unit \<Rightarrow> Code_Evaluation.term) \<Rightarrow>
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   124
  'value :: typerep \<times> (unit \<Rightarrow> Code_Evaluation.term) \<Rightarrow>
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   125
  ('key, 'value) alist \<times> (unit \<Rightarrow> Code_Evaluation.term) \<Rightarrow>
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   126
  ('key, 'value) alist \<times> (unit \<Rightarrow> Code_Evaluation.term)" where
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   127
  [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
   128
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   129
fun (in term_syntax) random_aux_alist
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   130
where
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   131
  "random_aux_alist i j =
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   132
    (if i = 0 then Pair valterm_empty
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   133
     else Quickcheck_Random.collapse
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   134
       (Random.select_weight
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   135
         [(i, Quickcheck_Random.random j \<circ>\<rightarrow> (\<lambda>k. Quickcheck_Random.random j \<circ>\<rightarrow>
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   136
           (\<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
   137
          (1, Pair valterm_empty)]))"
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   138
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   139
instantiation alist :: (random, random) random
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   140
begin
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   141
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   142
definition random_alist
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   143
where
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   144
  "random_alist i = random_aux_alist i i"
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   145
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   146
instance ..
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   147
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   148
end
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   149
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   150
no_notation fcomp (infixl "\<circ>>" 60)
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   151
no_notation scomp (infixl "\<circ>\<rightarrow>" 60)
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   152
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   153
instantiation alist :: (exhaustive, exhaustive) exhaustive
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   154
begin
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   155
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   156
fun exhaustive_alist ::
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   157
  "(('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
   158
where
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   159
  "exhaustive_alist f i =
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   160
    (if i = 0 then None
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   161
     else
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   162
      case f empty of
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   163
        Some ts \<Rightarrow> Some ts
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   164
      | None \<Rightarrow>
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   165
          exhaustive_alist
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   166
            (\<lambda>a. Quickcheck_Exhaustive.exhaustive
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   167
              (\<lambda>k. Quickcheck_Exhaustive.exhaustive (\<lambda>v. f (update k v a)) (i - 1)) (i - 1))
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   168
            (i - 1))"
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   169
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   170
instance ..
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   171
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   172
end
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   173
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   174
instantiation alist :: (full_exhaustive, full_exhaustive) full_exhaustive
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   175
begin
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   176
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   177
fun full_exhaustive_alist ::
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   178
  "(('a, 'b) alist \<times> (unit \<Rightarrow> term) \<Rightarrow> (bool \<times> term list) option) \<Rightarrow> natural \<Rightarrow>
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   179
    (bool \<times> term list) option"
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   180
where
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   181
  "full_exhaustive_alist f i =
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   182
    (if i = 0 then None
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   183
     else
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   184
      case f valterm_empty of
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   185
        Some ts \<Rightarrow> Some ts
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   186
      | None \<Rightarrow>
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   187
          full_exhaustive_alist
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   188
            (\<lambda>a.
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   189
              Quickcheck_Exhaustive.full_exhaustive
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   190
                (\<lambda>k. Quickcheck_Exhaustive.full_exhaustive (\<lambda>v. f (valterm_update k v a)) (i - 1))
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   191
              (i - 1))
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55565
diff changeset
   192
            (i - 1))"
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   193
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   194
instance ..
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   195
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   196
end
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   197
59581
09722854b8f4 alist is a BNF
traytel
parents: 58881
diff changeset
   198
09722854b8f4 alist is a BNF
traytel
parents: 58881
diff changeset
   199
section \<open>alist is a BNF\<close>
09722854b8f4 alist is a BNF
traytel
parents: 58881
diff changeset
   200
60919
b0ba7799d05a use lift_bnf in an example
traytel
parents: 60679
diff changeset
   201
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
   202
  by auto
59581
09722854b8f4 alist is a BNF
traytel
parents: 58881
diff changeset
   203
46167
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   204
hide_const valterm_empty valterm_update random_aux_alist
25eba8a5d7d0 adding theory association lists with invariant
bulwahn
parents:
diff changeset
   205
46171
19f68d7671f0 proper hiding of facts and constants in AList_Impl and AList theory
bulwahn
parents: 46167
diff changeset
   206
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
   207
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
   208
46238
9ace9e5b79be renaming theory AList_Impl back to AList (reverting 1fec5b365f9b; AList with distinct key invariant is called DAList)
bulwahn
parents: 46237
diff changeset
   209
end