src/HOL/ex/Tree23.thy
author haftmann
Tue, 13 Oct 2015 09:21:15 +0200
changeset 61424 c3658c18b7bc
parent 61343 5b5656a63bd6
child 61933 cf58b5b794b2
permissions -rw-r--r--
prod_case as canonical name for product type eliminator
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
33436
nipkow
parents:
diff changeset
     1
(*  Title:      HOL/ex/Tree23.thy
nipkow
parents:
diff changeset
     2
    Author:     Tobias Nipkow, TU Muenchen
nipkow
parents:
diff changeset
     3
*)
nipkow
parents:
diff changeset
     4
61343
5b5656a63bd6 isabelle update_cartouches;
wenzelm
parents: 61166
diff changeset
     5
section \<open>2-3 Trees\<close>
33436
nipkow
parents:
diff changeset
     6
nipkow
parents:
diff changeset
     7
theory Tree23
nipkow
parents:
diff changeset
     8
imports Main
nipkow
parents:
diff changeset
     9
begin
nipkow
parents:
diff changeset
    10
61343
5b5656a63bd6 isabelle update_cartouches;
wenzelm
parents: 61166
diff changeset
    11
text\<open>This is a very direct translation of some of the functions in table.ML
33436
nipkow
parents:
diff changeset
    12
in the Isabelle source code. That source is due to Makarius Wenzel and Stefan
nipkow
parents:
diff changeset
    13
Berghofer.
nipkow
parents:
diff changeset
    14
nipkow
parents:
diff changeset
    15
So far this file contains only data types and functions, but no proofs. Feel
nipkow
parents:
diff changeset
    16
free to have a go at the latter!
nipkow
parents:
diff changeset
    17
nipkow
parents:
diff changeset
    18
Note that because of complicated patterns and mutual recursion, these
nipkow
parents:
diff changeset
    19
function definitions take a few minutes and can also be seen as stress tests
61343
5b5656a63bd6 isabelle update_cartouches;
wenzelm
parents: 61166
diff changeset
    20
for the function definition facility.\<close>
33436
nipkow
parents:
diff changeset
    21
61343
5b5656a63bd6 isabelle update_cartouches;
wenzelm
parents: 61166
diff changeset
    22
type_synonym key = int -- \<open>for simplicity, should be a type class\<close>
33436
nipkow
parents:
diff changeset
    23
58310
91ea607a34d8 updated news
blanchet
parents: 58249
diff changeset
    24
datatype ord = LESS | EQUAL | GREATER
33436
nipkow
parents:
diff changeset
    25
nipkow
parents:
diff changeset
    26
definition "ord i j = (if i<j then LESS else if i=j then EQUAL else GREATER)"
nipkow
parents:
diff changeset
    27
58310
91ea607a34d8 updated news
blanchet
parents: 58249
diff changeset
    28
datatype 'a tree23 =
33436
nipkow
parents:
diff changeset
    29
  Empty |
nipkow
parents:
diff changeset
    30
  Branch2 "'a tree23" "key * 'a" "'a tree23" |
nipkow
parents:
diff changeset
    31
  Branch3 "'a tree23" "key * 'a" "'a tree23" "key * 'a" "'a tree23"
nipkow
parents:
diff changeset
    32
58310
91ea607a34d8 updated news
blanchet
parents: 58249
diff changeset
    33
datatype 'a growth =
33436
nipkow
parents:
diff changeset
    34
  Stay "'a tree23" |
nipkow
parents:
diff changeset
    35
  Sprout "'a tree23" "key * 'a" "'a tree23"
nipkow
parents:
diff changeset
    36
nipkow
parents:
diff changeset
    37
fun add :: "key \<Rightarrow> 'a \<Rightarrow> 'a tree23 \<Rightarrow> 'a growth" where
nipkow
parents:
diff changeset
    38
"add key y Empty = Sprout Empty (key,y) Empty" |
nipkow
parents:
diff changeset
    39
"add key y (Branch2 left (k,x) right) =
nipkow
parents:
diff changeset
    40
   (case ord key k of
nipkow
parents:
diff changeset
    41
      LESS =>
nipkow
parents:
diff changeset
    42
        (case add key y left of
nipkow
parents:
diff changeset
    43
           Stay left' => Stay (Branch2 left' (k,x) right)
nipkow
parents:
diff changeset
    44
         | Sprout left1 q left2
nipkow
parents:
diff changeset
    45
           => Stay (Branch3 left1 q left2 (k,x) right))
nipkow
parents:
diff changeset
    46
    | EQUAL => Stay (Branch2 left (k,y) right)
nipkow
parents:
diff changeset
    47
    | GREATER =>
nipkow
parents:
diff changeset
    48
        (case add key y right of
nipkow
parents:
diff changeset
    49
           Stay right' => Stay (Branch2 left (k,x) right')
nipkow
parents:
diff changeset
    50
         | Sprout right1 q right2
nipkow
parents:
diff changeset
    51
           => Stay (Branch3 left (k,x) right1 q right2)))" |
nipkow
parents:
diff changeset
    52
"add key y (Branch3 left (k1,x1) mid (k2,x2) right) =
nipkow
parents:
diff changeset
    53
   (case ord key k1 of
nipkow
parents:
diff changeset
    54
      LESS =>
nipkow
parents:
diff changeset
    55
        (case add key y left of
nipkow
parents:
diff changeset
    56
           Stay left' => Stay (Branch3 left' (k1,x1) mid (k2,x2) right)
nipkow
parents:
diff changeset
    57
         | Sprout left1 q left2
nipkow
parents:
diff changeset
    58
           => Sprout (Branch2 left1 q left2) (k1,x1) (Branch2 mid (k2,x2) right))
nipkow
parents:
diff changeset
    59
    | EQUAL => Stay (Branch3 left (k1,y) mid (k2,x2) right)
nipkow
parents:
diff changeset
    60
    | GREATER =>
nipkow
parents:
diff changeset
    61
        (case ord key k2 of
nipkow
parents:
diff changeset
    62
           LESS =>
nipkow
parents:
diff changeset
    63
             (case add key y mid of
nipkow
parents:
diff changeset
    64
                Stay mid' => Stay (Branch3 left (k1,x1) mid' (k2,x2) right)
nipkow
parents:
diff changeset
    65
              | Sprout mid1 q mid2
nipkow
parents:
diff changeset
    66
                => Sprout (Branch2 left (k1,x1) mid1) q (Branch2 mid2 (k2,x2) right))
nipkow
parents:
diff changeset
    67
         | EQUAL => Stay (Branch3 left (k1,x1) mid (k2,y) right)
nipkow
parents:
diff changeset
    68
         | GREATER =>
nipkow
parents:
diff changeset
    69
             (case add key y right of
nipkow
parents:
diff changeset
    70
                Stay right' => Stay (Branch3 left (k1,x1) mid (k2,x2) right')
nipkow
parents:
diff changeset
    71
              | Sprout right1 q right2
nipkow
parents:
diff changeset
    72
                => Sprout (Branch2 left (k1,x1) mid) (k2,x2) (Branch2 right1 q right2))))"
nipkow
parents:
diff changeset
    73
nipkow
parents:
diff changeset
    74
definition add0 :: "key \<Rightarrow> 'a \<Rightarrow> 'a tree23 \<Rightarrow> 'a tree23" where
nipkow
parents:
diff changeset
    75
"add0 k y t =
nipkow
parents:
diff changeset
    76
  (case add k y t of Stay t' => t' | Sprout l p r => Branch2 l p r)"
nipkow
parents:
diff changeset
    77
nipkow
parents:
diff changeset
    78
value "add0 5 e (add0 4 d (add0 3 c (add0 2 b (add0 1 a Empty))))"
nipkow
parents:
diff changeset
    79
nipkow
parents:
diff changeset
    80
fun compare where
nipkow
parents:
diff changeset
    81
"compare None (k2, _) = LESS" |
nipkow
parents:
diff changeset
    82
"compare (Some k1) (k2, _) = ord k1 k2"
nipkow
parents:
diff changeset
    83
nipkow
parents:
diff changeset
    84
fun if_eq where
nipkow
parents:
diff changeset
    85
"if_eq EQUAL x y = x" |
nipkow
parents:
diff changeset
    86
"if_eq _ x y = y"
nipkow
parents:
diff changeset
    87
nipkow
parents:
diff changeset
    88
fun del :: "key option \<Rightarrow> 'a tree23 \<Rightarrow> ((key * 'a) * bool * 'a tree23)option"
nipkow
parents:
diff changeset
    89
where
nipkow
parents:
diff changeset
    90
"del (Some k) Empty = None" |
nipkow
parents:
diff changeset
    91
"del None (Branch2 Empty p Empty) = Some(p, (True, Empty))" |
nipkow
parents:
diff changeset
    92
"del None (Branch3 Empty p Empty q Empty) = Some(p, (False, Branch2 Empty q Empty))" |
nipkow
parents:
diff changeset
    93
"del k (Branch2 Empty p Empty) = (case compare k p of
nipkow
parents:
diff changeset
    94
      EQUAL => Some(p, (True, Empty)) | _ => None)" |
nipkow
parents:
diff changeset
    95
"del k (Branch3 Empty p Empty q Empty) = (case compare k p of
nipkow
parents:
diff changeset
    96
      EQUAL => Some(p, (False, Branch2 Empty q Empty))
nipkow
parents:
diff changeset
    97
    | _ => (case compare k q of
nipkow
parents:
diff changeset
    98
        EQUAL => Some(q, (False, Branch2 Empty p Empty))
nipkow
parents:
diff changeset
    99
      | _ => None))" |
nipkow
parents:
diff changeset
   100
"del k (Branch2 l p r) = (case compare k p of
nipkow
parents:
diff changeset
   101
      LESS => (case del k l of None \<Rightarrow> None |
nipkow
parents:
diff changeset
   102
        Some(p', (False, l')) => Some(p', (False, Branch2 l' p r))
nipkow
parents:
diff changeset
   103
      | Some(p', (True, l')) => Some(p', case r of
nipkow
parents:
diff changeset
   104
          Branch2 rl rp rr => (True, Branch3 l' p rl rp rr)
nipkow
parents:
diff changeset
   105
        | Branch3 rl rp rm rq rr => (False, Branch2
nipkow
parents:
diff changeset
   106
            (Branch2 l' p rl) rp (Branch2 rm rq rr))))
nipkow
parents:
diff changeset
   107
    | or => (case del (if_eq or None k) r of None \<Rightarrow> None |
nipkow
parents:
diff changeset
   108
        Some(p', (False, r')) => Some(p', (False, Branch2 l (if_eq or p' p) r'))
nipkow
parents:
diff changeset
   109
      | Some(p', (True, r')) => Some(p', case l of
nipkow
parents:
diff changeset
   110
          Branch2 ll lp lr => (True, Branch3 ll lp lr (if_eq or p' p) r')
nipkow
parents:
diff changeset
   111
        | Branch3 ll lp lm lq lr => (False, Branch2
nipkow
parents:
diff changeset
   112
            (Branch2 ll lp lm) lq (Branch2 lr (if_eq or p' p) r')))))" |
nipkow
parents:
diff changeset
   113
"del k (Branch3 l p m q r) = (case compare k q of
nipkow
parents:
diff changeset
   114
      LESS => (case compare k p of
nipkow
parents:
diff changeset
   115
        LESS => (case del k l of None \<Rightarrow> None |
nipkow
parents:
diff changeset
   116
          Some(p', (False, l')) => Some(p', (False, Branch3 l' p m q r))
nipkow
parents:
diff changeset
   117
        | Some(p', (True, l')) => Some(p', (False, case (m, r) of
nipkow
parents:
diff changeset
   118
            (Branch2 ml mp mr, Branch2 _ _ _) => Branch2 (Branch3 l' p ml mp mr) q r
nipkow
parents:
diff changeset
   119
          | (Branch3 ml mp mm mq mr, _) => Branch3 (Branch2 l' p ml) mp (Branch2 mm mq mr) q r
nipkow
parents:
diff changeset
   120
          | (Branch2 ml mp mr, Branch3 rl rp rm rq rr) =>
nipkow
parents:
diff changeset
   121
              Branch3 (Branch2 l' p ml) mp (Branch2 mr q rl) rp (Branch2 rm rq rr))))
nipkow
parents:
diff changeset
   122
      | or => (case del (if_eq or None k) m of None \<Rightarrow> None |
nipkow
parents:
diff changeset
   123
          Some(p', (False, m')) => Some(p', (False, Branch3 l (if_eq or p' p) m' q r))
nipkow
parents:
diff changeset
   124
        | Some(p', (True, m')) => Some(p', (False, case (l, r) of
nipkow
parents:
diff changeset
   125
            (Branch2 ll lp lr, Branch2 _ _ _) => Branch2 (Branch3 ll lp lr (if_eq or p' p) m') q r
nipkow
parents:
diff changeset
   126
          | (Branch3 ll lp lm lq lr, _) => Branch3 (Branch2 ll lp lm) lq (Branch2 lr (if_eq or p' p) m') q r
nipkow
parents:
diff changeset
   127
          | (_, Branch3 rl rp rm rq rr) => Branch3 l (if_eq or p' p) (Branch2 m' q rl) rp (Branch2 rm rq rr)))))
nipkow
parents:
diff changeset
   128
    | or => (case del (if_eq or None k) r of None \<Rightarrow> None |
nipkow
parents:
diff changeset
   129
        Some(q', (False, r')) => Some(q', (False, Branch3 l p m (if_eq or q' q) r'))
nipkow
parents:
diff changeset
   130
      | Some(q', (True, r')) => Some(q', (False, case (l, m) of
nipkow
parents:
diff changeset
   131
          (Branch2 _ _ _, Branch2 ml mp mr) => Branch2 l p (Branch3 ml mp mr (if_eq or q' q) r')
nipkow
parents:
diff changeset
   132
        | (_, Branch3 ml mp mm mq mr) => Branch3 l p (Branch2 ml mp mm) mq (Branch2 mr (if_eq or q' q) r')
nipkow
parents:
diff changeset
   133
        | (Branch3 ll lp lm lq lr, Branch2 ml mp mr) =>
nipkow
parents:
diff changeset
   134
            Branch3 (Branch2 ll lp lm) lq (Branch2 lr p ml) mp (Branch2 mr (if_eq or q' q) r')))))"
nipkow
parents:
diff changeset
   135
nipkow
parents:
diff changeset
   136
definition del0 :: "key \<Rightarrow> 'a tree23 \<Rightarrow> 'a tree23" where
nipkow
parents:
diff changeset
   137
"del0 k t = (case del (Some k) t of None \<Rightarrow> t | Some(_,(_,t')) \<Rightarrow> t')"
nipkow
parents:
diff changeset
   138
61343
5b5656a63bd6 isabelle update_cartouches;
wenzelm
parents: 61166
diff changeset
   139
text \<open>Ordered trees\<close>
33436
nipkow
parents:
diff changeset
   140
45325
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   141
definition opt_less :: "key option \<Rightarrow> key option \<Rightarrow> bool" where
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   142
  "opt_less x y = (case x of None \<Rightarrow> True | Some a \<Rightarrow> (case y of None \<Rightarrow> True | Some b \<Rightarrow> a < b))"
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   143
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   144
lemma opt_less_simps [simp]:
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   145
  "opt_less None y = True"
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   146
  "opt_less x None = True"
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   147
  "opt_less (Some a) (Some b) = (a < b)"
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   148
unfolding opt_less_def by (auto simp add: ord_def split: option.split)
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   149
45333
04b21922ed68 ex/Tree23.thy: simpler definition of ordered-ness predicate
huffman
parents: 45332
diff changeset
   150
primrec ord' :: "key option \<Rightarrow> 'a tree23 \<Rightarrow> key option \<Rightarrow> bool" where
45325
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   151
"ord' x Empty y = opt_less x y" |
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   152
"ord' x (Branch2 l p r) y = (ord' x l (Some (fst p)) & ord' (Some (fst p)) r y)" |
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   153
"ord' x (Branch3 l p m q r) y = (ord' x l (Some (fst p)) & ord' (Some (fst p)) m (Some (fst q)) & ord' (Some (fst q)) r y)"
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   154
45333
04b21922ed68 ex/Tree23.thy: simpler definition of ordered-ness predicate
huffman
parents: 45332
diff changeset
   155
definition ord0 :: "'a tree23 \<Rightarrow> bool" where
04b21922ed68 ex/Tree23.thy: simpler definition of ordered-ness predicate
huffman
parents: 45332
diff changeset
   156
  "ord0 t = ord' None t None"
45325
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   157
61343
5b5656a63bd6 isabelle update_cartouches;
wenzelm
parents: 61166
diff changeset
   158
text \<open>Balanced trees\<close>
45334
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   159
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   160
inductive full :: "nat \<Rightarrow> 'a tree23 \<Rightarrow> bool" where
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   161
"full 0 Empty" |
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   162
"\<lbrakk>full n l; full n r\<rbrakk> \<Longrightarrow> full (Suc n) (Branch2 l p r)" |
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   163
"\<lbrakk>full n l; full n m; full n r\<rbrakk> \<Longrightarrow> full (Suc n) (Branch3 l p m q r)"
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   164
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   165
inductive_cases full_elims:
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   166
  "full n Empty"
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   167
  "full n (Branch2 l p r)"
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   168
  "full n (Branch3 l p m q r)"
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   169
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   170
inductive_cases full_0_elim: "full 0 t"
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   171
inductive_cases full_Suc_elim: "full (Suc n) t"
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   172
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   173
lemma full_0_iff [simp]: "full 0 t \<longleftrightarrow> t = Empty"
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   174
  by (auto elim: full_0_elim intro: full.intros)
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   175
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   176
lemma full_Empty_iff [simp]: "full n Empty \<longleftrightarrow> n = 0"
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   177
  by (auto elim: full_elims intro: full.intros)
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   178
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   179
lemma full_Suc_Branch2_iff [simp]:
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   180
  "full (Suc n) (Branch2 l p r) \<longleftrightarrow> full n l \<and> full n r"
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   181
  by (auto elim: full_elims intro: full.intros)
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   182
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   183
lemma full_Suc_Branch3_iff [simp]:
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   184
  "full (Suc n) (Branch3 l p m q r) \<longleftrightarrow> full n l \<and> full n m \<and> full n r"
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   185
  by (auto elim: full_elims intro: full.intros)
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   186
33436
nipkow
parents:
diff changeset
   187
fun height :: "'a tree23 \<Rightarrow> nat" where
nipkow
parents:
diff changeset
   188
"height Empty = 0" |
nipkow
parents:
diff changeset
   189
"height (Branch2 l _ r) = Suc(max (height l) (height r))" |
nipkow
parents:
diff changeset
   190
"height (Branch3 l _ m _ r) = Suc(max (height l) (max (height m) (height r)))"
nipkow
parents:
diff changeset
   191
61343
5b5656a63bd6 isabelle update_cartouches;
wenzelm
parents: 61166
diff changeset
   192
text\<open>Is a tree balanced?\<close>
33436
nipkow
parents:
diff changeset
   193
fun bal :: "'a tree23 \<Rightarrow> bool" where
nipkow
parents:
diff changeset
   194
"bal Empty = True" |
nipkow
parents:
diff changeset
   195
"bal (Branch2 l _ r) = (bal l & bal r & height l = height r)" |
nipkow
parents:
diff changeset
   196
"bal (Branch3 l _ m _ r) = (bal l & bal m & bal r & height l = height m & height m = height r)"
nipkow
parents:
diff changeset
   197
45334
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   198
lemma full_imp_height: "full n t \<Longrightarrow> height t = n"
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   199
  by (induct set: full, simp_all)
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   200
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   201
lemma full_imp_bal: "full n t \<Longrightarrow> bal t"
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   202
  by (induct set: full, auto dest: full_imp_height)
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   203
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   204
lemma bal_imp_full: "bal t \<Longrightarrow> full (height t) t"
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   205
  by (induct t, simp_all)
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   206
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   207
lemma bal_iff_full: "bal t \<longleftrightarrow> (\<exists>n. full n t)"
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   208
  by (auto elim!: bal_imp_full full_imp_bal)
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   209
61343
5b5656a63bd6 isabelle update_cartouches;
wenzelm
parents: 61166
diff changeset
   210
text \<open>The @{term "add0"} function either preserves the height of the
45325
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   211
tree, or increases it by one. The constructor returned by the @{term
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   212
"add"} function determines which: A return value of the form @{term
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   213
"Stay t"} indicates that the height will be the same. A value of the
61343
5b5656a63bd6 isabelle update_cartouches;
wenzelm
parents: 61166
diff changeset
   214
form @{term "Sprout l p r"} indicates an increase in height.\<close>
45325
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   215
45334
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   216
primrec gfull :: "nat \<Rightarrow> 'a growth \<Rightarrow> bool" where
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   217
"gfull n (Stay t) \<longleftrightarrow> full n t" |
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   218
"gfull n (Sprout l p r) \<longleftrightarrow> full n l \<and> full n r"
45325
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   219
45334
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   220
lemma gfull_add: "full n t \<Longrightarrow> gfull n (add k y t)"
45336
f502f4393054 ex/Tree23.thy: automate proof of gfull_add
huffman
parents: 45335
diff changeset
   221
by (induct set: full, auto split: ord.split growth.split)
45325
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   222
61343
5b5656a63bd6 isabelle update_cartouches;
wenzelm
parents: 61166
diff changeset
   223
text \<open>The @{term "add0"} operation preserves balance.\<close>
45325
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   224
45334
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   225
lemma bal_add0: "bal t \<Longrightarrow> bal (add0 k y t)"
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   226
unfolding bal_iff_full add0_def
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   227
apply (erule exE)
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   228
apply (drule gfull_add [of _ _ k y])
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   229
apply (cases "add k y t")
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   230
apply (auto intro: full.intros)
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   231
done
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   232
61343
5b5656a63bd6 isabelle update_cartouches;
wenzelm
parents: 61166
diff changeset
   233
text \<open>The @{term "add0"} operation preserves order.\<close>
45334
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   234
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   235
lemma ord_cases:
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   236
  fixes a b :: int obtains
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   237
  "ord a b = LESS" and "a < b" |
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   238
  "ord a b = EQUAL" and "a = b" |
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   239
  "ord a b = GREATER" and "a > b"
3f74e041e05c ex/Tree23.thy: simplify proof of bal_add0
huffman
parents: 45333
diff changeset
   240
unfolding ord_def by (rule linorder_cases [of a b]) auto
45325
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   241
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   242
definition gtree :: "'a growth \<Rightarrow> 'a tree23" where
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   243
  "gtree g = (case g of Stay t \<Rightarrow> t | Sprout l p r \<Rightarrow> Branch2 l p r)"
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   244
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   245
lemma gtree_simps [simp]:
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   246
  "gtree (Stay t) = t"
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   247
  "gtree (Sprout l p r) = Branch2 l p r"
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   248
unfolding gtree_def by simp_all
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   249
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   250
lemma add0: "add0 k y t = gtree (add k y t)"
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   251
  unfolding add0_def by (simp split: growth.split)
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   252
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   253
lemma ord'_add0:
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   254
  "\<lbrakk>ord' k1 t k2; opt_less k1 (Some k); opt_less (Some k) k2\<rbrakk> \<Longrightarrow> ord' k1 (add0 k y t) k2"
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   255
unfolding add0
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   256
 apply (induct t arbitrary: k1 k2)
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   257
   apply simp
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   258
  apply clarsimp
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   259
  apply (rule_tac a=k and b=a in ord_cases)
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   260
    apply simp
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   261
    apply (case_tac "add k y t1", simp, simp)
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   262
   apply simp
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   263
  apply simp
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   264
  apply (case_tac "add k y t2", simp, simp)
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   265
 apply clarsimp
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   266
 apply (rule_tac a=k and b=a in ord_cases)
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   267
   apply simp
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   268
   apply (case_tac "add k y t1", simp, simp)
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   269
  apply simp
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   270
 apply simp
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   271
 apply (rule_tac a=k and b=aa in ord_cases)
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   272
   apply simp
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   273
   apply (case_tac "add k y t2", simp, simp)
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   274
  apply simp
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   275
 apply simp
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   276
 apply (case_tac "add k y t3", simp, simp)
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   277
done
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   278
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   279
lemma ord0_add0: "ord0 t \<Longrightarrow> ord0 (add0 k y t)"
45333
04b21922ed68 ex/Tree23.thy: simpler definition of ordered-ness predicate
huffman
parents: 45332
diff changeset
   280
  by (simp add: ord0_def ord'_add0)
45325
26b6179b5a45 ex/Tree23.thy: prove that insertion preserves tree balance and order
huffman
parents: 42463
diff changeset
   281
61343
5b5656a63bd6 isabelle update_cartouches;
wenzelm
parents: 61166
diff changeset
   282
text \<open>The @{term "del"} function preserves balance.\<close>
45332
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   283
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   284
lemma del_extra_simps:
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   285
"l \<noteq> Empty \<or> r \<noteq> Empty \<Longrightarrow>
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   286
 del k (Branch2 l p r) = (case compare k p of
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   287
      LESS => (case del k l of None \<Rightarrow> None |
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   288
        Some(p', (False, l')) => Some(p', (False, Branch2 l' p r))
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   289
      | Some(p', (True, l')) => Some(p', case r of
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   290
          Branch2 rl rp rr => (True, Branch3 l' p rl rp rr)
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   291
        | Branch3 rl rp rm rq rr => (False, Branch2
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   292
            (Branch2 l' p rl) rp (Branch2 rm rq rr))))
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   293
    | or => (case del (if_eq or None k) r of None \<Rightarrow> None |
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   294
        Some(p', (False, r')) => Some(p', (False, Branch2 l (if_eq or p' p) r'))
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   295
      | Some(p', (True, r')) => Some(p', case l of
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   296
          Branch2 ll lp lr => (True, Branch3 ll lp lr (if_eq or p' p) r')
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   297
        | Branch3 ll lp lm lq lr => (False, Branch2
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   298
            (Branch2 ll lp lm) lq (Branch2 lr (if_eq or p' p) r')))))"
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   299
"l \<noteq> Empty \<or> m \<noteq> Empty \<or> r \<noteq> Empty \<Longrightarrow>
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   300
 del k (Branch3 l p m q r) = (case compare k q of
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   301
      LESS => (case compare k p of
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   302
        LESS => (case del k l of None \<Rightarrow> None |
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   303
          Some(p', (False, l')) => Some(p', (False, Branch3 l' p m q r))
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   304
        | Some(p', (True, l')) => Some(p', (False, case (m, r) of
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   305
            (Branch2 ml mp mr, Branch2 _ _ _) => Branch2 (Branch3 l' p ml mp mr) q r
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   306
          | (Branch3 ml mp mm mq mr, _) => Branch3 (Branch2 l' p ml) mp (Branch2 mm mq mr) q r
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   307
          | (Branch2 ml mp mr, Branch3 rl rp rm rq rr) =>
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   308
              Branch3 (Branch2 l' p ml) mp (Branch2 mr q rl) rp (Branch2 rm rq rr))))
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   309
      | or => (case del (if_eq or None k) m of None \<Rightarrow> None |
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   310
          Some(p', (False, m')) => Some(p', (False, Branch3 l (if_eq or p' p) m' q r))
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   311
        | Some(p', (True, m')) => Some(p', (False, case (l, r) of
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   312
            (Branch2 ll lp lr, Branch2 _ _ _) => Branch2 (Branch3 ll lp lr (if_eq or p' p) m') q r
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   313
          | (Branch3 ll lp lm lq lr, _) => Branch3 (Branch2 ll lp lm) lq (Branch2 lr (if_eq or p' p) m') q r
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   314
          | (_, Branch3 rl rp rm rq rr) => Branch3 l (if_eq or p' p) (Branch2 m' q rl) rp (Branch2 rm rq rr)))))
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   315
    | or => (case del (if_eq or None k) r of None \<Rightarrow> None |
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   316
        Some(q', (False, r')) => Some(q', (False, Branch3 l p m (if_eq or q' q) r'))
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   317
      | Some(q', (True, r')) => Some(q', (False, case (l, m) of
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   318
          (Branch2 _ _ _, Branch2 ml mp mr) => Branch2 l p (Branch3 ml mp mr (if_eq or q' q) r')
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   319
        | (_, Branch3 ml mp mm mq mr) => Branch3 l p (Branch2 ml mp mm) mq (Branch2 mr (if_eq or q' q) r')
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   320
        | (Branch3 ll lp lm lq lr, Branch2 ml mp mr) =>
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   321
            Branch3 (Branch2 ll lp lm) lq (Branch2 lr p ml) mp (Branch2 mr (if_eq or q' q) r')))))"
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   322
apply -
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   323
apply (cases l, cases r, simp_all only: del.simps, simp)
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   324
apply (cases l, cases m, cases r, simp_all only: del.simps, simp)
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   325
done
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   326
45335
a68ce51de69a ex/Tree23.thy: simplify proof of bal_del0
huffman
parents: 45334
diff changeset
   327
fun dfull where
a68ce51de69a ex/Tree23.thy: simplify proof of bal_del0
huffman
parents: 45334
diff changeset
   328
"dfull n None \<longleftrightarrow> True" |
a68ce51de69a ex/Tree23.thy: simplify proof of bal_del0
huffman
parents: 45334
diff changeset
   329
"dfull n (Some (p, (True, t'))) \<longleftrightarrow> full n t'" |
a68ce51de69a ex/Tree23.thy: simplify proof of bal_del0
huffman
parents: 45334
diff changeset
   330
"dfull n (Some (p, (False, t'))) \<longleftrightarrow> full (Suc n) t'"
45332
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   331
45335
a68ce51de69a ex/Tree23.thy: simplify proof of bal_del0
huffman
parents: 45334
diff changeset
   332
lemmas dfull_case_intros =
55417
01fbfb60c33e adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
blanchet
parents: 55414
diff changeset
   333
  ord.exhaust [of y "dfull a (case_ord b c d y)"]
55413
a8e96847523c adapted theories to '{case,rec}_{list,option}' names
blanchet
parents: 45605
diff changeset
   334
  option.exhaust [of y "dfull a (case_option b c y)"]
55414
eab03e9cee8a renamed '{prod,sum,bool,unit}_case' to 'case_...'
blanchet
parents: 55413
diff changeset
   335
  prod.exhaust [of y "dfull a (case_prod b y)"]
eab03e9cee8a renamed '{prod,sum,bool,unit}_case' to 'case_...'
blanchet
parents: 55413
diff changeset
   336
  bool.exhaust [of y "dfull a (case_bool b c y)"]
55417
01fbfb60c33e adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
blanchet
parents: 55414
diff changeset
   337
  tree23.exhaust [of y "dfull a (Some (b, case_tree23 c d e y))"]
01fbfb60c33e adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
blanchet
parents: 55414
diff changeset
   338
  tree23.exhaust [of y "full a (case_tree23 b c d y)"]
45605
a89b4bc311a5 eliminated obsolete "standard";
wenzelm
parents: 45336
diff changeset
   339
  for a b c d e y
45332
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   340
45335
a68ce51de69a ex/Tree23.thy: simplify proof of bal_del0
huffman
parents: 45334
diff changeset
   341
lemma dfull_del: "full (Suc n) t \<Longrightarrow> dfull n (del k t)"
45332
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   342
proof -
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   343
  { fix n :: "nat" and p :: "key \<times> 'a" and l r :: "'a tree23" and k
45335
a68ce51de69a ex/Tree23.thy: simplify proof of bal_del0
huffman
parents: 45334
diff changeset
   344
    assume "\<And>n. \<lbrakk>compare k p = LESS; full (Suc n) l\<rbrakk> \<Longrightarrow> dfull n (del k l)"
a68ce51de69a ex/Tree23.thy: simplify proof of bal_del0
huffman
parents: 45334
diff changeset
   345
    and "\<And>n. \<lbrakk>compare k p = EQUAL; full (Suc n) r\<rbrakk> \<Longrightarrow> dfull n (del (if_eq EQUAL None k) r)"
a68ce51de69a ex/Tree23.thy: simplify proof of bal_del0
huffman
parents: 45334
diff changeset
   346
    and "\<And>n. \<lbrakk>compare k p = GREATER; full (Suc n) r\<rbrakk> \<Longrightarrow> dfull n (del (if_eq GREATER None k) r)"
45332
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   347
    and "full (Suc n) (Branch2 l p r)"
45335
a68ce51de69a ex/Tree23.thy: simplify proof of bal_del0
huffman
parents: 45334
diff changeset
   348
    hence "dfull n (del k (Branch2 l p r))"
45332
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   349
     apply clarsimp
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   350
     apply (cases n)
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   351
      apply (cases k)
45335
a68ce51de69a ex/Tree23.thy: simplify proof of bal_del0
huffman
parents: 45334
diff changeset
   352
       apply simp
a68ce51de69a ex/Tree23.thy: simplify proof of bal_del0
huffman
parents: 45334
diff changeset
   353
      apply (simp split: ord.split)
a68ce51de69a ex/Tree23.thy: simplify proof of bal_del0
huffman
parents: 45334
diff changeset
   354
     apply simp
45332
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   355
     apply (subst del_extra_simps, force)
45336
f502f4393054 ex/Tree23.thy: automate proof of gfull_add
huffman
parents: 45335
diff changeset
   356
     (* This should work, but it is way too slow!
f502f4393054 ex/Tree23.thy: automate proof of gfull_add
huffman
parents: 45335
diff changeset
   357
     apply (force split: ord.split option.split bool.split tree23.split) *)
45335
a68ce51de69a ex/Tree23.thy: simplify proof of bal_del0
huffman
parents: 45334
diff changeset
   358
     apply (simp | rule dfull_case_intros)+
45332
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   359
     done
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   360
  } note A = this
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   361
  { fix n :: "nat" and p q :: "key \<times> 'a" and l m r :: "'a tree23" and k
45335
a68ce51de69a ex/Tree23.thy: simplify proof of bal_del0
huffman
parents: 45334
diff changeset
   362
    assume "\<And>n. \<lbrakk>compare k q = LESS; compare k p = LESS; full (Suc n) l\<rbrakk> \<Longrightarrow> dfull n (del k l)"
a68ce51de69a ex/Tree23.thy: simplify proof of bal_del0
huffman
parents: 45334
diff changeset
   363
    and "\<And>n. \<lbrakk>compare k q = LESS; compare k p = EQUAL; full (Suc n) m\<rbrakk> \<Longrightarrow> dfull n (del (if_eq EQUAL None k) m)"
a68ce51de69a ex/Tree23.thy: simplify proof of bal_del0
huffman
parents: 45334
diff changeset
   364
    and "\<And>n. \<lbrakk>compare k q = LESS; compare k p = GREATER; full (Suc n) m\<rbrakk> \<Longrightarrow> dfull n (del (if_eq GREATER None k) m)"
a68ce51de69a ex/Tree23.thy: simplify proof of bal_del0
huffman
parents: 45334
diff changeset
   365
    and "\<And>n. \<lbrakk>compare k q = EQUAL; full (Suc n) r\<rbrakk> \<Longrightarrow> dfull n (del (if_eq EQUAL None k) r)"
a68ce51de69a ex/Tree23.thy: simplify proof of bal_del0
huffman
parents: 45334
diff changeset
   366
    and "\<And>n. \<lbrakk>compare k q = GREATER; full (Suc n) r\<rbrakk> \<Longrightarrow> dfull n (del (if_eq GREATER None k) r)"
45332
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   367
    and "full (Suc n) (Branch3 l p m q r)"
45335
a68ce51de69a ex/Tree23.thy: simplify proof of bal_del0
huffman
parents: 45334
diff changeset
   368
    hence "dfull n (del k (Branch3 l p m q r))"
45332
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   369
     apply clarsimp
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   370
     apply (cases n)
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   371
      apply (cases k)
45335
a68ce51de69a ex/Tree23.thy: simplify proof of bal_del0
huffman
parents: 45334
diff changeset
   372
       apply simp
a68ce51de69a ex/Tree23.thy: simplify proof of bal_del0
huffman
parents: 45334
diff changeset
   373
      apply (simp split: ord.split)
a68ce51de69a ex/Tree23.thy: simplify proof of bal_del0
huffman
parents: 45334
diff changeset
   374
     apply simp
45332
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   375
     apply (subst del_extra_simps, force)
45335
a68ce51de69a ex/Tree23.thy: simplify proof of bal_del0
huffman
parents: 45334
diff changeset
   376
     apply (simp | rule dfull_case_intros)+
45332
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   377
     done
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   378
  } note B = this
45335
a68ce51de69a ex/Tree23.thy: simplify proof of bal_del0
huffman
parents: 45334
diff changeset
   379
  show "full (Suc n) t \<Longrightarrow> dfull n (del k t)"
61166
5976fe402824 renamed method "goals" to "goal_cases" to emphasize its meaning;
wenzelm
parents: 60580
diff changeset
   380
  proof (induct k t arbitrary: n rule: del.induct, goal_cases)
60580
7e741e22d7fc tuned proofs;
wenzelm
parents: 58889
diff changeset
   381
    case (1 k n)
7e741e22d7fc tuned proofs;
wenzelm
parents: 58889
diff changeset
   382
    thus "dfull n (del (Some k) Empty)" by simp
7e741e22d7fc tuned proofs;
wenzelm
parents: 58889
diff changeset
   383
  next
7e741e22d7fc tuned proofs;
wenzelm
parents: 58889
diff changeset
   384
    case (2 p n)
7e741e22d7fc tuned proofs;
wenzelm
parents: 58889
diff changeset
   385
    thus "dfull n (del None (Branch2 Empty p Empty))" by simp
7e741e22d7fc tuned proofs;
wenzelm
parents: 58889
diff changeset
   386
  next
7e741e22d7fc tuned proofs;
wenzelm
parents: 58889
diff changeset
   387
    case (3 p q n)
7e741e22d7fc tuned proofs;
wenzelm
parents: 58889
diff changeset
   388
    thus "dfull n (del None (Branch3 Empty p Empty q Empty))" by simp
7e741e22d7fc tuned proofs;
wenzelm
parents: 58889
diff changeset
   389
  next
7e741e22d7fc tuned proofs;
wenzelm
parents: 58889
diff changeset
   390
    case (4 v p n)
7e741e22d7fc tuned proofs;
wenzelm
parents: 58889
diff changeset
   391
    thus "dfull n (del (Some v) (Branch2 Empty p Empty))"
7e741e22d7fc tuned proofs;
wenzelm
parents: 58889
diff changeset
   392
      by (simp split: ord.split)
7e741e22d7fc tuned proofs;
wenzelm
parents: 58889
diff changeset
   393
  next
7e741e22d7fc tuned proofs;
wenzelm
parents: 58889
diff changeset
   394
    case (5 v p q n)
7e741e22d7fc tuned proofs;
wenzelm
parents: 58889
diff changeset
   395
    thus "dfull n (del (Some v) (Branch3 Empty p Empty q Empty))"
7e741e22d7fc tuned proofs;
wenzelm
parents: 58889
diff changeset
   396
      by (simp split: ord.split)
7e741e22d7fc tuned proofs;
wenzelm
parents: 58889
diff changeset
   397
  next
7e741e22d7fc tuned proofs;
wenzelm
parents: 58889
diff changeset
   398
    case (26 n)
7e741e22d7fc tuned proofs;
wenzelm
parents: 58889
diff changeset
   399
    thus ?case by simp
45332
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   400
  qed (fact A | fact B)+
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   401
qed
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   402
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   403
lemma bal_del0: "bal t \<Longrightarrow> bal (del0 k t)"
45335
a68ce51de69a ex/Tree23.thy: simplify proof of bal_del0
huffman
parents: 45334
diff changeset
   404
unfolding bal_iff_full del0_def
a68ce51de69a ex/Tree23.thy: simplify proof of bal_del0
huffman
parents: 45334
diff changeset
   405
apply (erule exE)
a68ce51de69a ex/Tree23.thy: simplify proof of bal_del0
huffman
parents: 45334
diff changeset
   406
apply (case_tac n, simp, simp)
a68ce51de69a ex/Tree23.thy: simplify proof of bal_del0
huffman
parents: 45334
diff changeset
   407
apply (frule dfull_del [where k="Some k"])
a68ce51de69a ex/Tree23.thy: simplify proof of bal_del0
huffman
parents: 45334
diff changeset
   408
apply (cases "del (Some k) t", force)
55417
01fbfb60c33e adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
blanchet
parents: 55414
diff changeset
   409
apply (rename_tac a, case_tac "a", rename_tac b t', case_tac "b", auto)
45335
a68ce51de69a ex/Tree23.thy: simplify proof of bal_del0
huffman
parents: 45334
diff changeset
   410
done
45332
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   411
61343
5b5656a63bd6 isabelle update_cartouches;
wenzelm
parents: 61166
diff changeset
   412
text\<open>This is a little test harness and should be commented out once the
5b5656a63bd6 isabelle update_cartouches;
wenzelm
parents: 61166
diff changeset
   413
above functions have been proved correct.\<close>
33436
nipkow
parents:
diff changeset
   414
58310
91ea607a34d8 updated news
blanchet
parents: 58249
diff changeset
   415
datatype 'a act = Add int 'a | Del int
33436
nipkow
parents:
diff changeset
   416
nipkow
parents:
diff changeset
   417
fun exec where
nipkow
parents:
diff changeset
   418
"exec [] t = t" |
nipkow
parents:
diff changeset
   419
"exec (Add k x # as) t = exec as (add0 k x t)" |
nipkow
parents:
diff changeset
   420
"exec (Del k # as) t = exec as (del0 k t)"
nipkow
parents:
diff changeset
   421
61343
5b5656a63bd6 isabelle update_cartouches;
wenzelm
parents: 61166
diff changeset
   422
text\<open>Some quick checks:\<close>
33436
nipkow
parents:
diff changeset
   423
45332
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   424
lemma bal_exec: "bal t \<Longrightarrow> bal (exec as t)"
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   425
  by (induct as t arbitrary: t rule: exec.induct,
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   426
    simp_all add: bal_add0 bal_del0)
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   427
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   428
lemma "bal(exec as Empty)"
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   429
  by (simp add: bal_exec)
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   430
33436
nipkow
parents:
diff changeset
   431
lemma "ord0(exec as Empty)"
nipkow
parents:
diff changeset
   432
quickcheck
nipkow
parents:
diff changeset
   433
oops
nipkow
parents:
diff changeset
   434
45332
ede9dc025150 ex/Tree23.thy: prove that deletion preserves balance
huffman
parents: 45325
diff changeset
   435
end