src/HOL/Library/DAList_Multiset.thy
author haftmann
Thu, 19 Jun 2025 17:15:40 +0200
changeset 82734 89347c0cc6a3
parent 82596 267db8c321c4
permissions -rw-r--r--
treat map_filter similar to list_all, list_ex, list_ex1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
     1
(*  Title:      HOL/Library/DAList_Multiset.thy
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
     2
    Author:     Lukas Bulwahn, TU Muenchen
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
     3
*)
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
     4
58881
b9556a055632 modernized header;
wenzelm
parents: 58806
diff changeset
     5
section \<open>Multisets partially implemented by association lists\<close>
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
     6
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
     7
theory DAList_Multiset
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
     8
imports Multiset DAList
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
     9
begin
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
    10
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    11
text \<open>Delete prexisting code equations\<close>
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
    12
66148
5e60c2d0a1f1 avoid ancient [code, code del] antipattern
haftmann
parents: 64587
diff changeset
    13
declare [[code drop: "{#}" Multiset.is_empty add_mset
5e60c2d0a1f1 avoid ancient [code, code del] antipattern
haftmann
parents: 64587
diff changeset
    14
  "plus :: 'a multiset \<Rightarrow> _" "minus :: 'a multiset \<Rightarrow> _"
73393
716d256259d5 consolidated names
haftmann
parents: 73270
diff changeset
    15
  inter_mset union_mset image_mset filter_mset count
66148
5e60c2d0a1f1 avoid ancient [code, code del] antipattern
haftmann
parents: 64587
diff changeset
    16
  "size :: _ multiset \<Rightarrow> nat" sum_mset prod_mset
5e60c2d0a1f1 avoid ancient [code, code del] antipattern
haftmann
parents: 64587
diff changeset
    17
  set_mset sorted_list_of_multiset subset_mset subseteq_mset
5e60c2d0a1f1 avoid ancient [code, code del] antipattern
haftmann
parents: 64587
diff changeset
    18
  equal_multiset_inst.equal_multiset]]
5e60c2d0a1f1 avoid ancient [code, code del] antipattern
haftmann
parents: 64587
diff changeset
    19
    
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
    20
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    21
text \<open>Raw operations on lists\<close>
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
    22
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    23
definition join_raw ::
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    24
    "('key \<Rightarrow> 'val \<times> 'val \<Rightarrow> 'val) \<Rightarrow>
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    25
      ('key \<times> 'val) list \<Rightarrow> ('key \<times> 'val) list \<Rightarrow> ('key \<times> 'val) list"
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    26
  where "join_raw f xs ys = foldr (\<lambda>(k, v). map_default k v (\<lambda>v'. f k (v', v))) ys xs"
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
    27
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    28
lemma join_raw_Nil [simp]: "join_raw f xs [] = xs"
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    29
  by (simp add: join_raw_def)
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
    30
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
    31
lemma join_raw_Cons [simp]:
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    32
  "join_raw f xs ((k, v) # ys) = map_default k v (\<lambda>v'. f k (v', v)) (join_raw f xs ys)"
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    33
  by (simp add: join_raw_def)
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
    34
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
    35
lemma map_of_join_raw:
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
    36
  assumes "distinct (map fst ys)"
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    37
  shows "map_of (join_raw f xs ys) x =
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    38
    (case map_of xs x of
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    39
      None \<Rightarrow> map_of ys x
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    40
    | Some v \<Rightarrow> (case map_of ys x of None \<Rightarrow> Some v | Some v' \<Rightarrow> Some (f x (v, v'))))"
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    41
  using assms
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    42
  apply (induct ys)
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    43
  apply (auto simp add: map_of_map_default split: option.split)
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    44
  apply (metis map_of_eq_None_iff option.simps(2) weak_map_of_SomeI)
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    45
  apply (metis Some_eq_map_of_iff map_of_eq_None_iff option.simps(2))
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    46
  done
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
    47
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
    48
lemma distinct_join_raw:
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
    49
  assumes "distinct (map fst xs)"
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
    50
  shows "distinct (map fst (join_raw f xs ys))"
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    51
  using assms
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
    52
proof (induct ys)
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    53
  case Nil
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    54
  then show ?case by simp
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    55
next
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
    56
  case (Cons y ys)
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    57
  then show ?case by (cases y) (simp add: distinct_map_default)
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    58
qed
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
    59
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    60
definition "subtract_entries_raw xs ys = foldr (\<lambda>(k, v). AList.map_entry k (\<lambda>v'. v' - v)) ys xs"
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
    61
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
    62
lemma map_of_subtract_entries_raw:
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
    63
  assumes "distinct (map fst ys)"
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    64
  shows "map_of (subtract_entries_raw xs ys) x =
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    65
    (case map_of xs x of
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    66
      None \<Rightarrow> None
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    67
    | Some v \<Rightarrow> (case map_of ys x of None \<Rightarrow> Some v | Some v' \<Rightarrow> Some (v - v')))"
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    68
  using assms
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    69
  unfolding subtract_entries_raw_def
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    70
  apply (induct ys)
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    71
  apply auto
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    72
  apply (simp split: option.split)
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    73
  apply (simp add: map_of_map_entry)
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    74
  apply (auto split: option.split)
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    75
  apply (metis map_of_eq_None_iff option.simps(3) option.simps(4))
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    76
  apply (metis map_of_eq_None_iff option.simps(4) option.simps(5))
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    77
  done
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
    78
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
    79
lemma distinct_subtract_entries_raw:
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
    80
  assumes "distinct (map fst xs)"
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
    81
  shows "distinct (map fst (subtract_entries_raw xs ys))"
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    82
  using assms
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    83
  unfolding subtract_entries_raw_def
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    84
  by (induct ys) (auto simp add: distinct_map_entry)
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
    85
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
    86
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    87
text \<open>Operations on alists with distinct keys\<close>
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
    88
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    89
lift_definition join :: "('a \<Rightarrow> 'b \<times> 'b \<Rightarrow> 'b) \<Rightarrow> ('a, 'b) alist \<Rightarrow> ('a, 'b) alist \<Rightarrow> ('a, 'b) alist"
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    90
  is join_raw
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    91
  by (simp add: distinct_join_raw)
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
    92
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
    93
lift_definition subtract_entries :: "('a, ('b :: minus)) alist \<Rightarrow> ('a, 'b) alist \<Rightarrow> ('a, 'b) alist"
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    94
  is subtract_entries_raw
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    95
  by (simp add: distinct_subtract_entries_raw)
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
    96
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
    97
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
    98
text \<open>Implementing multisets by means of association lists\<close>
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
    99
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   100
definition count_of :: "('a \<times> nat) list \<Rightarrow> 'a \<Rightarrow> nat"
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   101
  where "count_of xs x = (case map_of xs x of None \<Rightarrow> 0 | Some n \<Rightarrow> n)"
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   102
73270
e2d03448d5b5 get rid of traditional predicate
haftmann
parents: 69593
diff changeset
   103
lemma count_of_multiset: "finite {x. 0 < count_of xs x}"
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   104
proof -
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   105
  let ?A = "{x::'a. 0 < (case map_of xs x of None \<Rightarrow> 0::nat | Some n \<Rightarrow> n)}"
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   106
  have "?A \<subseteq> dom (map_of xs)"
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   107
  proof
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   108
    fix x
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   109
    assume "x \<in> ?A"
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   110
    then have "0 < (case map_of xs x of None \<Rightarrow> 0::nat | Some n \<Rightarrow> n)"
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   111
      by simp
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   112
    then have "map_of xs x \<noteq> None"
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   113
      by (cases "map_of xs x") auto
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   114
    then show "x \<in> dom (map_of xs)"
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   115
      by auto
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   116
  qed
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   117
  with finite_dom_map_of [of xs] have "finite ?A"
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   118
    by (auto intro: finite_subset)
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   119
  then show ?thesis
73270
e2d03448d5b5 get rid of traditional predicate
haftmann
parents: 69593
diff changeset
   120
    by (simp add: count_of_def fun_eq_iff)
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   121
qed
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   122
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   123
lemma count_simps [simp]:
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   124
  "count_of [] = (\<lambda>_. 0)"
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   125
  "count_of ((x, n) # xs) = (\<lambda>y. if x = y then n else count_of xs y)"
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   126
  by (simp_all add: count_of_def fun_eq_iff)
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   127
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   128
lemma count_of_empty: "x \<notin> fst ` set xs \<Longrightarrow> count_of xs x = 0"
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   129
  by (induct xs) (simp_all add: count_of_def)
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   130
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   131
lemma count_of_filter: "count_of (List.filter (P \<circ> fst) xs) x = (if P x then count_of xs x else 0)"
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   132
  by (induct xs) auto
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   133
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   134
lemma count_of_map_default [simp]:
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   135
  "count_of (map_default x b (\<lambda>x. x + b) xs) y =
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   136
    (if x = y then count_of xs x + b else count_of xs y)"
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   137
  unfolding count_of_def by (simp add: map_of_map_default split: option.split)
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   138
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   139
lemma count_of_join_raw:
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   140
  "distinct (map fst ys) \<Longrightarrow>
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   141
    count_of xs x + count_of ys x = count_of (join_raw (\<lambda>x (x, y). x + y) xs ys) x"
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   142
  unfolding count_of_def by (simp add: map_of_join_raw split: option.split)
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   143
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   144
lemma count_of_subtract_entries_raw:
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   145
  "distinct (map fst ys) \<Longrightarrow>
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   146
    count_of xs x - count_of ys x = count_of (subtract_entries_raw xs ys) x"
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   147
  unfolding count_of_def by (simp add: map_of_subtract_entries_raw split: option.split)
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   148
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   149
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   150
text \<open>Code equations for multiset operations\<close>
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   151
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   152
definition Bag :: "('a, nat) alist \<Rightarrow> 'a multiset"
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   153
  where "Bag xs = Abs_multiset (count_of (DAList.impl_of xs))"
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   154
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   155
code_datatype Bag
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   156
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   157
lemma count_Bag [simp, code]: "count (Bag xs) = count_of (DAList.impl_of xs)"
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   158
  by (simp add: Bag_def count_of_multiset)
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   159
82596
267db8c321c4 executable sorted_list_of_multiset
haftmann
parents: 73411
diff changeset
   160
lemma Bag_eq:
267db8c321c4 executable sorted_list_of_multiset
haftmann
parents: 73411
diff changeset
   161
  \<open>Bag ms = (\<Sum>(a, n)\<leftarrow>alist.impl_of ms. replicate_mset n a)\<close>
267db8c321c4 executable sorted_list_of_multiset
haftmann
parents: 73411
diff changeset
   162
  for ms :: \<open>('a, nat) alist\<close>
267db8c321c4 executable sorted_list_of_multiset
haftmann
parents: 73411
diff changeset
   163
proof -
267db8c321c4 executable sorted_list_of_multiset
haftmann
parents: 73411
diff changeset
   164
  have *: \<open>count_of xs a = count (\<Sum>(a, n)\<leftarrow>xs. replicate_mset n a) a\<close>
267db8c321c4 executable sorted_list_of_multiset
haftmann
parents: 73411
diff changeset
   165
    if \<open>distinct (map fst xs)\<close>
267db8c321c4 executable sorted_list_of_multiset
haftmann
parents: 73411
diff changeset
   166
    for xs and a :: 'a
267db8c321c4 executable sorted_list_of_multiset
haftmann
parents: 73411
diff changeset
   167
  using that proof (induction xs)
267db8c321c4 executable sorted_list_of_multiset
haftmann
parents: 73411
diff changeset
   168
    case Nil
267db8c321c4 executable sorted_list_of_multiset
haftmann
parents: 73411
diff changeset
   169
    then show ?case
267db8c321c4 executable sorted_list_of_multiset
haftmann
parents: 73411
diff changeset
   170
      by simp
267db8c321c4 executable sorted_list_of_multiset
haftmann
parents: 73411
diff changeset
   171
  next
267db8c321c4 executable sorted_list_of_multiset
haftmann
parents: 73411
diff changeset
   172
    case (Cons xn xs)
267db8c321c4 executable sorted_list_of_multiset
haftmann
parents: 73411
diff changeset
   173
    then show ?case by (cases xn)
267db8c321c4 executable sorted_list_of_multiset
haftmann
parents: 73411
diff changeset
   174
      (auto simp add: count_eq_zero_iff if_split_mem2 image_iff)
267db8c321c4 executable sorted_list_of_multiset
haftmann
parents: 73411
diff changeset
   175
  qed
267db8c321c4 executable sorted_list_of_multiset
haftmann
parents: 73411
diff changeset
   176
  show ?thesis
267db8c321c4 executable sorted_list_of_multiset
haftmann
parents: 73411
diff changeset
   177
    by (rule multiset_eqI) (simp add: *)
267db8c321c4 executable sorted_list_of_multiset
haftmann
parents: 73411
diff changeset
   178
qed
267db8c321c4 executable sorted_list_of_multiset
haftmann
parents: 73411
diff changeset
   179
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   180
lemma Mempty_Bag [code]: "{#} = Bag (DAList.empty)"
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   181
  by (simp add: multiset_eq_iff alist.Alist_inverse DAList.empty_def)
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   182
63195
f3f08c0d4aaf Tuned code equations for mappings and PMFs
eberlm
parents: 63040
diff changeset
   183
lift_definition is_empty_Bag_impl :: "('a, nat) alist \<Rightarrow> bool" is
f3f08c0d4aaf Tuned code equations for mappings and PMFs
eberlm
parents: 63040
diff changeset
   184
  "\<lambda>xs. list_all (\<lambda>x. snd x = 0) xs" .
f3f08c0d4aaf Tuned code equations for mappings and PMFs
eberlm
parents: 63040
diff changeset
   185
f3f08c0d4aaf Tuned code equations for mappings and PMFs
eberlm
parents: 63040
diff changeset
   186
lemma is_empty_Bag [code]: "Multiset.is_empty (Bag xs) \<longleftrightarrow> is_empty_Bag_impl xs"
f3f08c0d4aaf Tuned code equations for mappings and PMFs
eberlm
parents: 63040
diff changeset
   187
proof -
f3f08c0d4aaf Tuned code equations for mappings and PMFs
eberlm
parents: 63040
diff changeset
   188
  have "Multiset.is_empty (Bag xs) \<longleftrightarrow> (\<forall>x. count (Bag xs) x = 0)"
f3f08c0d4aaf Tuned code equations for mappings and PMFs
eberlm
parents: 63040
diff changeset
   189
    unfolding Multiset.is_empty_def multiset_eq_iff by simp
f3f08c0d4aaf Tuned code equations for mappings and PMFs
eberlm
parents: 63040
diff changeset
   190
  also have "\<dots> \<longleftrightarrow> (\<forall>x\<in>fst ` set (alist.impl_of xs). count (Bag xs) x = 0)"
f3f08c0d4aaf Tuned code equations for mappings and PMFs
eberlm
parents: 63040
diff changeset
   191
  proof (intro iffI allI ballI)
f3f08c0d4aaf Tuned code equations for mappings and PMFs
eberlm
parents: 63040
diff changeset
   192
    fix x assume A: "\<forall>x\<in>fst ` set (alist.impl_of xs). count (Bag xs) x = 0"
f3f08c0d4aaf Tuned code equations for mappings and PMFs
eberlm
parents: 63040
diff changeset
   193
    thus "count (Bag xs) x = 0"
f3f08c0d4aaf Tuned code equations for mappings and PMFs
eberlm
parents: 63040
diff changeset
   194
    proof (cases "x \<in> fst ` set (alist.impl_of xs)")
f3f08c0d4aaf Tuned code equations for mappings and PMFs
eberlm
parents: 63040
diff changeset
   195
      case False
f3f08c0d4aaf Tuned code equations for mappings and PMFs
eberlm
parents: 63040
diff changeset
   196
      thus ?thesis by (force simp: count_of_def split: option.splits)
f3f08c0d4aaf Tuned code equations for mappings and PMFs
eberlm
parents: 63040
diff changeset
   197
    qed (insert A, auto)
f3f08c0d4aaf Tuned code equations for mappings and PMFs
eberlm
parents: 63040
diff changeset
   198
  qed simp_all
f3f08c0d4aaf Tuned code equations for mappings and PMFs
eberlm
parents: 63040
diff changeset
   199
  also have "\<dots> \<longleftrightarrow> list_all (\<lambda>x. snd x = 0) (alist.impl_of xs)" 
f3f08c0d4aaf Tuned code equations for mappings and PMFs
eberlm
parents: 63040
diff changeset
   200
    by (auto simp: count_of_def list_all_def)
f3f08c0d4aaf Tuned code equations for mappings and PMFs
eberlm
parents: 63040
diff changeset
   201
  finally show ?thesis by (simp add: is_empty_Bag_impl.rep_eq)
f3f08c0d4aaf Tuned code equations for mappings and PMFs
eberlm
parents: 63040
diff changeset
   202
qed
f3f08c0d4aaf Tuned code equations for mappings and PMFs
eberlm
parents: 63040
diff changeset
   203
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   204
lemma union_Bag [code]: "Bag xs + Bag ys = Bag (join (\<lambda>x (n1, n2). n1 + n2) xs ys)"
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   205
  by (rule multiset_eqI)
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   206
    (simp add: count_of_join_raw alist.Alist_inverse distinct_join_raw join_def)
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   207
63793
e68a0b651eb5 add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 63310
diff changeset
   208
lemma add_mset_Bag [code]: "add_mset x (Bag xs) =
e68a0b651eb5 add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 63310
diff changeset
   209
    Bag (join (\<lambda>x (n1, n2). n1 + n2) (DAList.update x 1 DAList.empty) xs)"
e68a0b651eb5 add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 63310
diff changeset
   210
  unfolding add_mset_add_single[of x "Bag xs"] union_Bag[symmetric]
e68a0b651eb5 add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 63310
diff changeset
   211
  by (simp add: multiset_eq_iff update.rep_eq empty.rep_eq)
e68a0b651eb5 add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 63310
diff changeset
   212
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   213
lemma minus_Bag [code]: "Bag xs - Bag ys = Bag (subtract_entries xs ys)"
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   214
  by (rule multiset_eqI)
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   215
    (simp add: count_of_subtract_entries_raw alist.Alist_inverse
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   216
      distinct_subtract_entries_raw subtract_entries_def)
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   217
59998
c54d36be22ef renamed Multiset.fold -> fold_mset, Multiset.filter -> filter_mset
nipkow
parents: 59949
diff changeset
   218
lemma filter_Bag [code]: "filter_mset P (Bag xs) = Bag (DAList.filter (P \<circ> fst) xs)"
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   219
  by (rule multiset_eqI) (simp add: count_of_filter DAList.filter.rep_eq)
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   220
55808
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 51623
diff changeset
   221
64587
8355a6e2df79 standardized notation
haftmann
parents: 63830
diff changeset
   222
lemma mset_eq [code]: "HOL.equal (m1::'a::equal multiset) m2 \<longleftrightarrow> m1 \<subseteq># m2 \<and> m2 \<subseteq># m1"
73411
1f1366966296 avoid name clash
haftmann
parents: 73393
diff changeset
   223
  by (metis equal_multiset_def subset_mset.order_eq_iff)
55808
488c3e8282c8 added Rene Thiemann's patch for the nonterminating equality/subset test code for multisets
nipkow
parents: 51623
diff changeset
   224
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69064
diff changeset
   225
text \<open>By default the code for \<open><\<close> is \<^prop>\<open>xs < ys \<longleftrightarrow> xs \<le> ys \<and> \<not> xs = ys\<close>.
61585
a9599d3d7610 isabelle update_cartouches -c -t;
wenzelm
parents: 61115
diff changeset
   226
With equality implemented by \<open>\<le>\<close>, this leads to three calls of  \<open>\<le>\<close>.
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   227
Here is a more efficient version:\<close>
64587
8355a6e2df79 standardized notation
haftmann
parents: 63830
diff changeset
   228
lemma mset_less[code]: "xs \<subset># (ys :: 'a multiset) \<longleftrightarrow> xs \<subseteq># ys \<and> \<not> ys \<subseteq># xs"
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59998
diff changeset
   229
  by (rule subset_mset.less_le_not_le)
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   230
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   231
lemma mset_less_eq_Bag0:
64587
8355a6e2df79 standardized notation
haftmann
parents: 63830
diff changeset
   232
  "Bag xs \<subseteq># A \<longleftrightarrow> (\<forall>(x, n) \<in> set (DAList.impl_of xs). count_of (DAList.impl_of xs) x \<le> count A x)"
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   233
    (is "?lhs \<longleftrightarrow> ?rhs")
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   234
proof
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   235
  assume ?lhs
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59998
diff changeset
   236
  then show ?rhs by (auto simp add: subseteq_mset_def)
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   237
next
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   238
  assume ?rhs
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   239
  show ?lhs
63310
caaacf37943f normalising multiset theorem names
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 63195
diff changeset
   240
  proof (rule mset_subset_eqI)
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   241
    fix x
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   242
    from \<open>?rhs\<close> have "count_of (DAList.impl_of xs) x \<le> count A x"
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   243
      by (cases "x \<in> fst ` set (DAList.impl_of xs)") (auto simp add: count_of_empty)
60397
f8a513fedb31 Renaming multiset operators < ~> <#,...
Mathias Fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 59998
diff changeset
   244
    then show "count (Bag xs) x \<le> count A x" by (simp add: subset_mset_def)
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   245
  qed
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   246
qed
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   247
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   248
lemma mset_less_eq_Bag [code]:
64587
8355a6e2df79 standardized notation
haftmann
parents: 63830
diff changeset
   249
  "Bag xs \<subseteq># (A :: 'a multiset) \<longleftrightarrow> (\<forall>(x, n) \<in> set (DAList.impl_of xs). n \<le> count A x)"
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   250
proof -
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   251
  {
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   252
    fix x n
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   253
    assume "(x,n) \<in> set (DAList.impl_of xs)"
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   254
    then have "count_of (DAList.impl_of xs) x = n"
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   255
    proof transfer
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   256
      fix x n
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   257
      fix xs :: "('a \<times> nat) list"
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   258
      show "(distinct \<circ> map fst) xs \<Longrightarrow> (x, n) \<in> set xs \<Longrightarrow> count_of xs x = n"
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   259
      proof (induct xs)
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   260
        case Nil
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   261
        then show ?case by simp
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   262
      next
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   263
        case (Cons ym ys)
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   264
        obtain y m where ym: "ym = (y,m)" by force
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   265
        note Cons = Cons[unfolded ym]
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   266
        show ?case
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   267
        proof (cases "x = y")
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   268
          case False
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   269
          with Cons show ?thesis
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   270
            unfolding ym by auto
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   271
        next
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   272
          case True
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   273
          with Cons(2-3) have "m = n" by force
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   274
          with True show ?thesis
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   275
            unfolding ym by auto
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   276
        qed
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   277
      qed
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   278
    qed
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   279
  }
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   280
  then show ?thesis
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   281
    unfolding mset_less_eq_Bag0 by auto
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   282
qed
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   283
73393
716d256259d5 consolidated names
haftmann
parents: 73270
diff changeset
   284
declare inter_mset_def [code]
716d256259d5 consolidated names
haftmann
parents: 73270
diff changeset
   285
declare union_mset_def [code]
60515
484559628038 renamed multiset_of -> mset
nipkow
parents: 60495
diff changeset
   286
declare mset.simps [code]
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
   287
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   288
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   289
fun fold_impl :: "('a \<Rightarrow> nat \<Rightarrow> 'b \<Rightarrow> 'b) \<Rightarrow> 'b \<Rightarrow> ('a \<times> nat) list \<Rightarrow> 'b"
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   290
where
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   291
  "fold_impl fn e ((a,n) # ms) = (fold_impl fn ((fn a n) e) ms)"
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   292
| "fold_impl fn e [] = e"
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   293
61115
3a4400985780 modernized name space management -- more uniform qualification;
wenzelm
parents: 60679
diff changeset
   294
context
3a4400985780 modernized name space management -- more uniform qualification;
wenzelm
parents: 60679
diff changeset
   295
begin
3a4400985780 modernized name space management -- more uniform qualification;
wenzelm
parents: 60679
diff changeset
   296
3a4400985780 modernized name space management -- more uniform qualification;
wenzelm
parents: 60679
diff changeset
   297
qualified definition fold :: "('a \<Rightarrow> nat \<Rightarrow> 'b \<Rightarrow> 'b) \<Rightarrow> 'b \<Rightarrow> ('a, nat) alist \<Rightarrow> 'b"
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   298
  where "fold f e al = fold_impl f e (DAList.impl_of al)"
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   299
61115
3a4400985780 modernized name space management -- more uniform qualification;
wenzelm
parents: 60679
diff changeset
   300
end
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   301
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   302
context comp_fun_commute
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   303
begin
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   304
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   305
lemma DAList_Multiset_fold:
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   306
  assumes fn: "\<And>a n x. fn a n x = (f a ^^ n) x"
59998
c54d36be22ef renamed Multiset.fold -> fold_mset, Multiset.filter -> filter_mset
nipkow
parents: 59949
diff changeset
   307
  shows "fold_mset f e (Bag al) = DAList_Multiset.fold fn e al"
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   308
  unfolding DAList_Multiset.fold_def
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   309
proof (induct al)
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   310
  fix ys
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   311
  let ?inv = "{xs :: ('a \<times> nat) list. (distinct \<circ> map fst) xs}"
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   312
  note cs[simp del] = count_simps
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   313
  have count[simp]: "\<And>x. count (Abs_multiset (count_of x)) = count_of x"
73270
e2d03448d5b5 get rid of traditional predicate
haftmann
parents: 69593
diff changeset
   314
    by (rule Abs_multiset_inverse) (simp add: count_of_multiset)
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   315
  assume ys: "ys \<in> ?inv"
59998
c54d36be22ef renamed Multiset.fold -> fold_mset, Multiset.filter -> filter_mset
nipkow
parents: 59949
diff changeset
   316
  then show "fold_mset f e (Bag (Alist ys)) = fold_impl fn e (DAList.impl_of (Alist ys))"
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   317
    unfolding Bag_def unfolding Alist_inverse[OF ys]
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   318
  proof (induct ys arbitrary: e rule: list.induct)
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   319
    case Nil
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   320
    show ?case
59998
c54d36be22ef renamed Multiset.fold -> fold_mset, Multiset.filter -> filter_mset
nipkow
parents: 59949
diff changeset
   321
      by (rule trans[OF arg_cong[of _ "{#}" "fold_mset f e", OF multiset_eqI]])
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   322
         (auto, simp add: cs)
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   323
  next
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   324
    case (Cons pair ys e)
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   325
    obtain a n where pair: "pair = (a,n)"
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   326
      by force
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   327
    from fn[of a n] have [simp]: "fn a n = (f a ^^ n)"
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   328
      by auto
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   329
    have inv: "ys \<in> ?inv"
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   330
      using Cons(2) by auto
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   331
    note IH = Cons(1)[OF inv]
63040
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 61585
diff changeset
   332
    define Ys where "Ys = Abs_multiset (count_of ys)"
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66148
diff changeset
   333
    have id: "Abs_multiset (count_of ((a, n) # ys)) = (((+) {# a #}) ^^ n) Ys"
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   334
      unfolding Ys_def
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   335
    proof (rule multiset_eqI, unfold count)
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   336
      fix c
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   337
      show "count_of ((a, n) # ys) c =
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66148
diff changeset
   338
        count (((+) {#a#} ^^ n) (Abs_multiset (count_of ys))) c" (is "?l = ?r")
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   339
      proof (cases "c = a")
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   340
        case False
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   341
        then show ?thesis
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   342
          unfolding cs by (induct n) auto
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   343
      next
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   344
        case True
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   345
        then have "?l = n" by (simp add: cs)
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   346
        also have "n = ?r" unfolding True
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   347
        proof (induct n)
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   348
          case 0
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   349
          from Cons(2)[unfolded pair] have "a \<notin> fst ` set ys" by auto
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   350
          then show ?case by (induct ys) (simp, auto simp: cs)
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   351
        next
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   352
          case Suc
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   353
          then show ?case by simp
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   354
        qed
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   355
        finally show ?thesis .
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   356
      qed
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   357
    qed
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   358
    show ?case
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   359
      unfolding pair
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   360
      apply (simp add: IH[symmetric])
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   361
      unfolding id Ys_def[symmetric]
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   362
      apply (induct n)
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   363
      apply (auto simp: fold_mset_fun_left_comm[symmetric])
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   364
      done
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   365
  qed
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   366
qed
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   367
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   368
end
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   369
61115
3a4400985780 modernized name space management -- more uniform qualification;
wenzelm
parents: 60679
diff changeset
   370
context
3a4400985780 modernized name space management -- more uniform qualification;
wenzelm
parents: 60679
diff changeset
   371
begin
3a4400985780 modernized name space management -- more uniform qualification;
wenzelm
parents: 60679
diff changeset
   372
3a4400985780 modernized name space management -- more uniform qualification;
wenzelm
parents: 60679
diff changeset
   373
private lift_definition single_alist_entry :: "'a \<Rightarrow> 'b \<Rightarrow> ('a, 'b) alist" is "\<lambda>a b. [(a, b)]"
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   374
  by auto
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   375
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   376
lemma image_mset_Bag [code]:
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   377
  "image_mset f (Bag ms) =
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   378
    DAList_Multiset.fold (\<lambda>a n m. Bag (single_alist_entry (f a) n) + m) {#} ms"
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   379
  unfolding image_mset_def
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   380
proof (rule comp_fun_commute.DAList_Multiset_fold, unfold_locales, (auto simp: ac_simps)[1])
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   381
  fix a n m
63793
e68a0b651eb5 add_mset constructor in multisets
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents: 63310
diff changeset
   382
  show "Bag (single_alist_entry (f a) n) + m = ((add_mset \<circ> f) a ^^ n) m" (is "?l = ?r")
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   383
  proof (rule multiset_eqI)
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   384
    fix x
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   385
    have "count ?r x = (if x = f a then n + count m x else count m x)"
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   386
      by (induct n) auto
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   387
    also have "\<dots> = count ?l x"
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   388
      by (simp add: single_alist_entry.rep_eq)
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   389
    finally show "count ?l x = count ?r x" ..
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   390
  qed
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   391
qed
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   392
61115
3a4400985780 modernized name space management -- more uniform qualification;
wenzelm
parents: 60679
diff changeset
   393
end
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   394
69064
5840724b1d71 Prefix form of infix with * on either side no longer needs special treatment
nipkow
parents: 67408
diff changeset
   395
\<comment> \<open>we cannot use \<open>\<lambda>a n. (+) (a * n)\<close> for folding, since \<open>(*)\<close> is not defined in \<open>comm_monoid_add\<close>\<close>
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66148
diff changeset
   396
lemma sum_mset_Bag[code]: "sum_mset (Bag ms) = DAList_Multiset.fold (\<lambda>a n. (((+) a) ^^ n)) 0 ms"
63830
2ea3725a34bd msetsum -> set_mset, msetprod -> prod_mset
nipkow
parents: 63793
diff changeset
   397
  unfolding sum_mset.eq_fold
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   398
  apply (rule comp_fun_commute.DAList_Multiset_fold)
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   399
  apply unfold_locales
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   400
  apply (auto simp: ac_simps)
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   401
  done
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   402
69064
5840724b1d71 Prefix form of infix with * on either side no longer needs special treatment
nipkow
parents: 67408
diff changeset
   403
\<comment> \<open>we cannot use \<open>\<lambda>a n. (*) (a ^ n)\<close> for folding, since \<open>(^)\<close> is not defined in \<open>comm_monoid_mult\<close>\<close>
5840724b1d71 Prefix form of infix with * on either side no longer needs special treatment
nipkow
parents: 67408
diff changeset
   404
lemma prod_mset_Bag[code]: "prod_mset (Bag ms) = DAList_Multiset.fold (\<lambda>a n. (((*) a) ^^ n)) 1 ms"
63830
2ea3725a34bd msetsum -> set_mset, msetprod -> prod_mset
nipkow
parents: 63793
diff changeset
   405
  unfolding prod_mset.eq_fold
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   406
  apply (rule comp_fun_commute.DAList_Multiset_fold)
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   407
  apply unfold_locales
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   408
  apply (auto simp: ac_simps)
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   409
  done
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   410
59998
c54d36be22ef renamed Multiset.fold -> fold_mset, Multiset.filter -> filter_mset
nipkow
parents: 59949
diff changeset
   411
lemma size_fold: "size A = fold_mset (\<lambda>_. Suc) 0 A" (is "_ = fold_mset ?f _ _")
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   412
proof -
60679
ade12ef2773c tuned proofs;
wenzelm
parents: 60515
diff changeset
   413
  interpret comp_fun_commute ?f by standard auto
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   414
  show ?thesis by (induct A) auto
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   415
qed
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   416
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66148
diff changeset
   417
lemma size_Bag[code]: "size (Bag ms) = DAList_Multiset.fold (\<lambda>a n. (+) n) 0 ms"
59949
fc4c896c8e74 Removed mcard because it is equal to size
nipkow
parents: 58881
diff changeset
   418
  unfolding size_fold
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   419
proof (rule comp_fun_commute.DAList_Multiset_fold, unfold_locales, simp)
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   420
  fix a n x
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   421
  show "n + x = (Suc ^^ n) x"
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   422
    by (induct n) auto
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   423
qed
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   424
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   425
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60397
diff changeset
   426
lemma set_mset_fold: "set_mset A = fold_mset insert {} A" (is "_ = fold_mset ?f _ _")
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   427
proof -
60679
ade12ef2773c tuned proofs;
wenzelm
parents: 60515
diff changeset
   428
  interpret comp_fun_commute ?f by standard auto
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   429
  show ?thesis by (induct A) auto
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   430
qed
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   431
60495
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60397
diff changeset
   432
lemma set_mset_Bag[code]:
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60397
diff changeset
   433
  "set_mset (Bag ms) = DAList_Multiset.fold (\<lambda>a n. (if n = 0 then (\<lambda>m. m) else insert a)) {} ms"
d7ff0a1df90a renamed Multiset.set_of to the canonical set_mset
nipkow
parents: 60397
diff changeset
   434
  unfolding set_mset_fold
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   435
proof (rule comp_fun_commute.DAList_Multiset_fold, unfold_locales, (auto simp: ac_simps)[1])
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   436
  fix a n x
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   437
  show "(if n = 0 then \<lambda>m. m else insert a) x = (insert a ^^ n) x" (is "?l n = ?r n")
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   438
  proof (cases n)
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   439
    case 0
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   440
    then show ?thesis by simp
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   441
  next
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   442
    case (Suc m)
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   443
    then have "?l n = insert a x" by simp
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   444
    moreover have "?r n = insert a x" unfolding Suc by (induct m) auto
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   445
    ultimately show ?thesis by auto
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   446
  qed
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   447
qed
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   448
82596
267db8c321c4 executable sorted_list_of_multiset
haftmann
parents: 73411
diff changeset
   449
lemma sorted_list_of_multiset_Bag [code]:
267db8c321c4 executable sorted_list_of_multiset
haftmann
parents: 73411
diff changeset
   450
  \<open>sorted_list_of_multiset (Bag ms) = concat (map (\<lambda>(a, n). replicate n a)
267db8c321c4 executable sorted_list_of_multiset
haftmann
parents: 73411
diff changeset
   451
    (sort_key fst (DAList.impl_of ms)))\<close>  (is \<open>?lhs = ?rhs\<close>)
267db8c321c4 executable sorted_list_of_multiset
haftmann
parents: 73411
diff changeset
   452
proof -
267db8c321c4 executable sorted_list_of_multiset
haftmann
parents: 73411
diff changeset
   453
  have *: \<open>sorted (concat (map (\<lambda>(a, n). replicate n a) ans))\<close>
267db8c321c4 executable sorted_list_of_multiset
haftmann
parents: 73411
diff changeset
   454
    if \<open>sorted (map fst ans)\<close>
267db8c321c4 executable sorted_list_of_multiset
haftmann
parents: 73411
diff changeset
   455
    for ans :: \<open>('a \<times> nat) list\<close>
267db8c321c4 executable sorted_list_of_multiset
haftmann
parents: 73411
diff changeset
   456
    using that by (induction ans) (auto simp add: sorted_append)
267db8c321c4 executable sorted_list_of_multiset
haftmann
parents: 73411
diff changeset
   457
  have \<open>mset ?rhs = mset ?lhs\<close>
267db8c321c4 executable sorted_list_of_multiset
haftmann
parents: 73411
diff changeset
   458
    by (simp add: Bag_eq mset_concat comp_def split_def flip: sum_mset_sum_list)
267db8c321c4 executable sorted_list_of_multiset
haftmann
parents: 73411
diff changeset
   459
  moreover have \<open>sorted ?rhs\<close>
267db8c321c4 executable sorted_list_of_multiset
haftmann
parents: 73411
diff changeset
   460
    by (rule *) simp
267db8c321c4 executable sorted_list_of_multiset
haftmann
parents: 73411
diff changeset
   461
  ultimately have \<open>sort ?lhs = ?rhs\<close>
267db8c321c4 executable sorted_list_of_multiset
haftmann
parents: 73411
diff changeset
   462
    by (rule properties_for_sort)
267db8c321c4 executable sorted_list_of_multiset
haftmann
parents: 73411
diff changeset
   463
  then show ?thesis
267db8c321c4 executable sorted_list_of_multiset
haftmann
parents: 73411
diff changeset
   464
    by simp
267db8c321c4 executable sorted_list_of_multiset
haftmann
parents: 73411
diff changeset
   465
qed
55887
25bd4745ee38 more code lemmas by Rene Thiemann
nipkow
parents: 55808
diff changeset
   466
51600
197e25f13f0c default implementation of multisets by list with reasonable coverage of operations on multisets
haftmann
parents: 51599
diff changeset
   467
instantiation multiset :: (exhaustive) exhaustive
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   468
begin
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   469
58806
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   470
definition exhaustive_multiset ::
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   471
  "('a multiset \<Rightarrow> (bool \<times> term list) option) \<Rightarrow> natural \<Rightarrow> (bool \<times> term list) option"
bb5ab5fce93a tuned proofs;
wenzelm
parents: 55887
diff changeset
   472
  where "exhaustive_multiset f i = Quickcheck_Exhaustive.exhaustive (\<lambda>xs. f (Bag xs)) i"
51599
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   473
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   474
instance ..
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   475
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   476
end
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   477
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   478
end
1559e9266280 optionalized very specific code setup for multisets
haftmann
parents:
diff changeset
   479