src/HOL/ex/Quickcheck_Narrowing_Examples.thy
author wenzelm
Sat, 09 Jul 2011 21:53:27 +0200
changeset 43721 fad8634cee62
parent 43356 2dee03f192b7
child 45082 54c4e12bb5e0
permissions -rw-r--r--
echo prover input via raw_messages, for improved protocol tracing;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
41932
e8f113ce8a94 adapting Quickcheck_Narrowing and example file to new names
bulwahn
parents: 41931
diff changeset
     1
(*  Title:      HOL/ex/Quickcheck_Narrowing_Examples.thy
41907
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
     2
    Author:     Lukas Bulwahn
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
     3
    Copyright   2011 TU Muenchen
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
     4
*)
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
     5
41932
e8f113ce8a94 adapting Quickcheck_Narrowing and example file to new names
bulwahn
parents: 41931
diff changeset
     6
header {* Examples for narrowing-based testing  *}
41907
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
     7
41932
e8f113ce8a94 adapting Quickcheck_Narrowing and example file to new names
bulwahn
parents: 41931
diff changeset
     8
theory Quickcheck_Narrowing_Examples
43318
825f4f0dcf71 correcting import theory of examples
bulwahn
parents: 43239
diff changeset
     9
imports Main
41907
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
    10
begin
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
    11
42020
2da02764d523 translating bash output in quickcheck_narrowing to handle special characters; adding simple test cases
bulwahn
parents: 41963
diff changeset
    12
subsection {* Minimalistic examples *}
43356
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43318
diff changeset
    13
42020
2da02764d523 translating bash output in quickcheck_narrowing to handle special characters; adding simple test cases
bulwahn
parents: 41963
diff changeset
    14
lemma
2da02764d523 translating bash output in quickcheck_narrowing to handle special characters; adding simple test cases
bulwahn
parents: 41963
diff changeset
    15
  "x = y"
42021
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 42020
diff changeset
    16
quickcheck[tester = narrowing, finite_types = false, default_type = int, expect = counterexample]
41907
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
    17
oops
43356
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43318
diff changeset
    18
42020
2da02764d523 translating bash output in quickcheck_narrowing to handle special characters; adding simple test cases
bulwahn
parents: 41963
diff changeset
    19
lemma
2da02764d523 translating bash output in quickcheck_narrowing to handle special characters; adding simple test cases
bulwahn
parents: 41963
diff changeset
    20
  "x = y"
43356
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43318
diff changeset
    21
quickcheck[tester = narrowing, finite_types = false, default_type = nat, expect = counterexample]
41907
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
    22
oops
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
    23
43239
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    24
subsection {* Simple examples with existentials *}
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    25
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    26
lemma
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    27
  "\<exists> y :: nat. \<forall> x. x = y"
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    28
quickcheck[tester = narrowing, finite_types = false, expect = counterexample]
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    29
oops
43356
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43318
diff changeset
    30
(*
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43318
diff changeset
    31
lemma
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43318
diff changeset
    32
  "\<exists> y :: int. \<forall> x. x = y"
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43318
diff changeset
    33
quickcheck[tester = narrowing, size = 2]
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43318
diff changeset
    34
oops
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43318
diff changeset
    35
*)
43239
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    36
lemma
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    37
  "x > 1 --> (\<exists>y :: nat. x < y & y <= 1)"
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    38
quickcheck[tester = narrowing, finite_types = false, expect = counterexample]
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    39
oops
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    40
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    41
lemma
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    42
  "x > 2 --> (\<exists>y :: nat. x < y & y <= 2)"
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    43
quickcheck[tester = narrowing, finite_types = false, size = 10]
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    44
oops
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    45
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    46
lemma
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    47
  "\<forall> x. \<exists> y :: nat. x > 3 --> (y < x & y > 3)"
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    48
quickcheck[tester = narrowing, finite_types = false, size = 7]
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    49
oops
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    50
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    51
text {* A false conjecture derived from an partial copy-n-paste of @{thm not_distinct_decomp} *}
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    52
lemma
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    53
  "~ distinct ws ==> EX xs ys zs y. ws = xs @ [y] @ ys @ [y]"
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    54
quickcheck[tester = narrowing, finite_types = false, default_type = nat, expect = counterexample]
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    55
oops
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    56
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    57
text {* A false conjecture derived from theorems @{thm split_list_first} and @{thm split_list_last} *}  
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    58
lemma
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    59
  "x : set xs ==> EX ys zs. xs = ys @ x # zs & x ~: set zs & x ~: set ys"
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    60
quickcheck[tester = narrowing, finite_types = false, default_type = nat, expect = counterexample]
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    61
oops
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    62
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    63
text {* A false conjecture derived from @{thm map_eq_Cons_conv} with a typo *}
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    64
lemma
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    65
  "(map f xs = y # ys) = (EX z zs. xs = z' # zs & f z = y & map f zs = ys)"
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    66
quickcheck[tester = narrowing, finite_types = false, default_type = nat, expect = counterexample]
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    67
oops
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    68
42020
2da02764d523 translating bash output in quickcheck_narrowing to handle special characters; adding simple test cases
bulwahn
parents: 41963
diff changeset
    69
subsection {* Simple list examples *}
2da02764d523 translating bash output in quickcheck_narrowing to handle special characters; adding simple test cases
bulwahn
parents: 41963
diff changeset
    70
2da02764d523 translating bash output in quickcheck_narrowing to handle special characters; adding simple test cases
bulwahn
parents: 41963
diff changeset
    71
lemma "rev xs = xs"
43239
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    72
quickcheck[tester = narrowing, finite_types = false, default_type = nat, expect = counterexample]
42020
2da02764d523 translating bash output in quickcheck_narrowing to handle special characters; adding simple test cases
bulwahn
parents: 41963
diff changeset
    73
oops
2da02764d523 translating bash output in quickcheck_narrowing to handle special characters; adding simple test cases
bulwahn
parents: 41963
diff changeset
    74
43239
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    75
(* FIXME: integer has strange representation! *)
42020
2da02764d523 translating bash output in quickcheck_narrowing to handle special characters; adding simple test cases
bulwahn
parents: 41963
diff changeset
    76
lemma "rev xs = xs"
43239
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    77
quickcheck[tester = narrowing, finite_types = false, default_type = int, expect = counterexample]
42021
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 42020
diff changeset
    78
oops
42184
1d4fae76ba5e adapting Quickcheck_Narrowing (overseen in 234ec7011e5d); commenting out some examples temporarily
bulwahn
parents: 42024
diff changeset
    79
(*
42021
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 42020
diff changeset
    80
lemma "rev xs = xs"
42023
1bd4b6d1c482 adding minimalistic setup and transformation to handle functions as data to enable naive function generation for Quickcheck_Narrowing
bulwahn
parents: 42021
diff changeset
    81
  quickcheck[tester = narrowing, finite_types = true, expect = counterexample]
1bd4b6d1c482 adding minimalistic setup and transformation to handle functions as data to enable naive function generation for Quickcheck_Narrowing
bulwahn
parents: 42021
diff changeset
    82
oops
42184
1d4fae76ba5e adapting Quickcheck_Narrowing (overseen in 234ec7011e5d); commenting out some examples temporarily
bulwahn
parents: 42024
diff changeset
    83
*)
42023
1bd4b6d1c482 adding minimalistic setup and transformation to handle functions as data to enable naive function generation for Quickcheck_Narrowing
bulwahn
parents: 42021
diff changeset
    84
subsection {* Simple examples with functions *}
1bd4b6d1c482 adding minimalistic setup and transformation to handle functions as data to enable naive function generation for Quickcheck_Narrowing
bulwahn
parents: 42021
diff changeset
    85
1bd4b6d1c482 adding minimalistic setup and transformation to handle functions as data to enable naive function generation for Quickcheck_Narrowing
bulwahn
parents: 42021
diff changeset
    86
lemma "map f xs = map g xs"
43239
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    87
  quickcheck[tester = narrowing, finite_types = false, expect = counterexample]
42020
2da02764d523 translating bash output in quickcheck_narrowing to handle special characters; adding simple test cases
bulwahn
parents: 41963
diff changeset
    88
oops
2da02764d523 translating bash output in quickcheck_narrowing to handle special characters; adding simple test cases
bulwahn
parents: 41963
diff changeset
    89
42023
1bd4b6d1c482 adding minimalistic setup and transformation to handle functions as data to enable naive function generation for Quickcheck_Narrowing
bulwahn
parents: 42021
diff changeset
    90
lemma "map f xs = map f ys ==> xs = ys"
43239
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    91
  quickcheck[tester = narrowing, finite_types = false, expect = counterexample]
42024
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42023
diff changeset
    92
oops
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42023
diff changeset
    93
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42023
diff changeset
    94
lemma
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42023
diff changeset
    95
  "list_all2 P (rev xs) (rev ys) = list_all2 P xs (rev ys)"
43239
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
    96
  quickcheck[tester = narrowing, finite_types = false, expect = counterexample]
42024
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42023
diff changeset
    97
oops
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42023
diff changeset
    98
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42023
diff changeset
    99
lemma "map f xs = F f xs"
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42023
diff changeset
   100
  quickcheck[tester = narrowing, finite_types = false, expect = counterexample]
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42023
diff changeset
   101
oops
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42023
diff changeset
   102
43239
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
   103
lemma "map f xs = F f xs"
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
   104
  quickcheck[tester = narrowing, finite_types = false, expect = counterexample]
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
   105
oops
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
   106
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
   107
(* requires some work...*)
42f82fda796b adding examples with existentials
bulwahn
parents: 42184
diff changeset
   108
(*
42024
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42023
diff changeset
   109
lemma "R O S = S O R"
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42023
diff changeset
   110
  quickcheck[tester = narrowing, size = 2]
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42023
diff changeset
   111
oops
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42023
diff changeset
   112
*)
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42023
diff changeset
   113
41907
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   114
subsection {* AVL Trees *}
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   115
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   116
datatype 'a tree = ET |  MKT 'a "'a tree" "'a tree" nat
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   117
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   118
primrec set_of :: "'a tree \<Rightarrow> 'a set"
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   119
where
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   120
"set_of ET = {}" |
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   121
"set_of (MKT n l r h) = insert n (set_of l \<union> set_of r)"
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   122
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   123
primrec height :: "'a tree \<Rightarrow> nat"
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   124
where
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   125
"height ET = 0" |
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   126
"height (MKT x l r h) = max (height l) (height r) + 1"
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   127
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   128
primrec avl :: "'a tree \<Rightarrow> bool"
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   129
where
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   130
"avl ET = True" |
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   131
"avl (MKT x l r h) =
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   132
 ((height l = height r \<or> height l = 1+height r \<or> height r = 1+height l) \<and> 
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   133
  h = max (height l) (height r) + 1 \<and> avl l \<and> avl r)"
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   134
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   135
primrec is_ord :: "('a::order) tree \<Rightarrow> bool"
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   136
where
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   137
"is_ord ET = True" |
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   138
"is_ord (MKT n l r h) =
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   139
 ((\<forall>n' \<in> set_of l. n' < n) \<and> (\<forall>n' \<in> set_of r. n < n') \<and> is_ord l \<and> is_ord r)"
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   140
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   141
primrec is_in :: "('a::order) \<Rightarrow> 'a tree \<Rightarrow> bool"
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   142
where
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   143
 "is_in k ET = False" |
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   144
 "is_in k (MKT n l r h) = (if k = n then True else
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   145
                           if k < n then (is_in k l)
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   146
                           else (is_in k r))"
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   147
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   148
primrec ht :: "'a tree \<Rightarrow> nat"
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   149
where
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   150
"ht ET = 0" |
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   151
"ht (MKT x l r h) = h"
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   152
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   153
definition
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   154
 mkt :: "'a \<Rightarrow> 'a tree \<Rightarrow> 'a tree \<Rightarrow> 'a tree" where
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   155
"mkt x l r = MKT x l r (max (ht l) (ht r) + 1)"
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   156
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   157
(* replaced MKT lrn lrl lrr by MKT lrr lrl *)
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   158
fun l_bal where
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   159
"l_bal(n, MKT ln ll lr h, r) =
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   160
 (if ht ll < ht lr
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   161
  then case lr of ET \<Rightarrow> ET (* impossible *)
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   162
                | MKT lrn lrr lrl lrh \<Rightarrow>
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   163
                  mkt lrn (mkt ln ll lrl) (mkt n lrr r)
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   164
  else mkt ln ll (mkt n lr r))"
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   165
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   166
fun r_bal where
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   167
"r_bal(n, l, MKT rn rl rr h) =
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   168
 (if ht rl > ht rr
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   169
  then case rl of ET \<Rightarrow> ET (* impossible *)
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   170
                | MKT rln rll rlr h \<Rightarrow> mkt rln (mkt n l rll) (mkt rn rlr rr)
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   171
  else mkt rn (mkt n l rl) rr)"
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   172
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   173
primrec insrt :: "'a::order \<Rightarrow> 'a tree \<Rightarrow> 'a tree"
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   174
where
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   175
"insrt x ET = MKT x ET ET 1" |
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   176
"insrt x (MKT n l r h) = 
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   177
   (if x=n
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   178
    then MKT n l r h
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   179
    else if x<n
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   180
         then let l' = insrt x l; hl' = ht l'; hr = ht r
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   181
              in if hl' = 2+hr then l_bal(n,l',r)
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   182
                 else MKT n l' r (1 + max hl' hr)
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   183
         else let r' = insrt x r; hl = ht l; hr' = ht r'
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   184
              in if hr' = 2+hl then r_bal(n,l,r')
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   185
                 else MKT n l r' (1 + max hl hr'))"
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   186
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   187
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   188
subsubsection {* Necessary setup for code generation *}
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   189
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   190
primrec set_of'
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   191
where 
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   192
  "set_of' ET = []"
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   193
| "set_of' (MKT n l r h) = n # (set_of' l @ set_of' r)"
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   194
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   195
lemma set_of':
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   196
  "set (set_of' t) = set_of t"
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   197
by (induct t) auto
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   198
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   199
lemma is_ord_mkt:
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   200
  "is_ord (MKT n l r h) = ((ALL n': set (set_of' l). n' < n) & (ALL n': set (set_of' r). n < n') & is_ord l & is_ord r)"
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   201
by (simp add: set_of')
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   202
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   203
declare is_ord.simps(1)[code] is_ord_mkt[code]
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   204
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   205
subsubsection {* Invalid Lemma due to typo in lbal *}
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   206
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   207
lemma is_ord_l_bal:
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   208
 "\<lbrakk> is_ord(MKT (x :: nat) l r h); height l = height r + 2 \<rbrakk> \<Longrightarrow> is_ord(l_bal(x,l,r))"
42184
1d4fae76ba5e adapting Quickcheck_Narrowing (overseen in 234ec7011e5d); commenting out some examples temporarily
bulwahn
parents: 42024
diff changeset
   209
quickcheck[tester = narrowing, finite_types = false, default_type = nat, size = 6, timeout = 1000, expect = counterexample]
41907
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   210
oops
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   211
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   212
b04e16854c08 adding an example theory for Lazysmallcheck prototype
bulwahn
parents:
diff changeset
   213
end