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