| author | blanchet | 
| Sat, 11 Sep 2010 10:35:00 +0200 | |
| changeset 39324 | 05452dd66b2b | 
| parent 39198 | f967a16dfcdd | 
| child 39302 | d7728f65b353 | 
| permissions | -rw-r--r-- | 
| 33197 | 1 | (* Title: HOL/Nitpick_Examples/Manual_Nits.thy | 
| 2 | Author: Jasmin Blanchette, TU Muenchen | |
| 35076 
cc19e2aef17e
added hotel key card example for Nitpick, and renumber atoms in Nitpick's output for increased readability
 blanchet parents: 
34982diff
changeset | 3 | Copyright 2009, 2010 | 
| 33197 | 4 | |
| 5 | Examples from the Nitpick manual. | |
| 6 | *) | |
| 7 | ||
| 8 | header {* Examples from the Nitpick Manual *}
 | |
| 9 | ||
| 37477 
e482320bcbfe
adjusted Nitpick examples to latest changes + make them slightly faster
 blanchet parents: 
36268diff
changeset | 10 | (* The "expect" arguments to Nitpick in this theory and the other example | 
| 
e482320bcbfe
adjusted Nitpick examples to latest changes + make them slightly faster
 blanchet parents: 
36268diff
changeset | 11 | theories are there so that the example can also serve as a regression test | 
| 
e482320bcbfe
adjusted Nitpick examples to latest changes + make them slightly faster
 blanchet parents: 
36268diff
changeset | 12 | suite. *) | 
| 
e482320bcbfe
adjusted Nitpick examples to latest changes + make them slightly faster
 blanchet parents: 
36268diff
changeset | 13 | |
| 33197 | 14 | theory Manual_Nits | 
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35312diff
changeset | 15 | imports Main Quotient_Product RealDef | 
| 33197 | 16 | begin | 
| 17 | ||
| 18 | chapter {* 3. First Steps *}
 | |
| 19 | ||
| 37477 
e482320bcbfe
adjusted Nitpick examples to latest changes + make them slightly faster
 blanchet parents: 
36268diff
changeset | 20 | nitpick_params [sat_solver = MiniSat_JNI, max_threads = 1, timeout = 60 s] | 
| 33197 | 21 | |
| 22 | subsection {* 3.1. Propositional Logic *}
 | |
| 23 | ||
| 24 | lemma "P \<longleftrightarrow> Q" | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 25 | nitpick [expect = genuine] | 
| 33197 | 26 | apply auto | 
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 27 | nitpick [expect = genuine] 1 | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 28 | nitpick [expect = genuine] 2 | 
| 33197 | 29 | oops | 
| 30 | ||
| 31 | subsection {* 3.2. Type Variables *}
 | |
| 32 | ||
| 33 | lemma "P x \<Longrightarrow> P (THE y. P y)" | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 34 | nitpick [verbose, expect = genuine] | 
| 33197 | 35 | oops | 
| 36 | ||
| 37 | subsection {* 3.3. Constants *}
 | |
| 38 | ||
| 39 | lemma "P x \<Longrightarrow> P (THE y. P y)" | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 40 | nitpick [show_consts, expect = genuine] | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 41 | nitpick [full_descrs, show_consts, expect = genuine] | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 42 | nitpick [dont_specialize, full_descrs, show_consts, expect = genuine] | 
| 33197 | 43 | oops | 
| 44 | ||
| 45 | lemma "\<exists>!x. P x \<Longrightarrow> P (THE y. P y)" | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 46 | nitpick [expect = none] | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 47 | nitpick [card 'a = 1\<midarrow>50, expect = none] | 
| 33197 | 48 | (* sledgehammer *) | 
| 49 | apply (metis the_equality) | |
| 50 | done | |
| 51 | ||
| 52 | subsection {* 3.4. Skolemization *}
 | |
| 53 | ||
| 54 | lemma "\<exists>g. \<forall>x. g (f x) = x \<Longrightarrow> \<forall>y. \<exists>x. y = f x" | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 55 | nitpick [expect = genuine] | 
| 33197 | 56 | oops | 
| 57 | ||
| 58 | lemma "\<exists>x. \<forall>f. f x = x" | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 59 | nitpick [expect = genuine] | 
| 33197 | 60 | oops | 
| 61 | ||
| 62 | lemma "refl r \<Longrightarrow> sym r" | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 63 | nitpick [expect = genuine] | 
| 33197 | 64 | oops | 
| 65 | ||
| 34126 | 66 | subsection {* 3.5. Natural Numbers and Integers *}
 | 
| 33197 | 67 | |
| 68 | lemma "\<lbrakk>i \<le> j; n \<le> (m\<Colon>int)\<rbrakk> \<Longrightarrow> i * n + j * m \<le> i * m + j * n" | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 69 | nitpick [expect = genuine] | 
| 33197 | 70 | oops | 
| 71 | ||
| 72 | lemma "\<forall>n. Suc n \<noteq> n \<Longrightarrow> P" | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 73 | nitpick [card nat = 100, check_potential, expect = genuine] | 
| 33197 | 74 | oops | 
| 75 | ||
| 76 | lemma "P Suc" | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 77 | nitpick [expect = none] | 
| 33197 | 78 | oops | 
| 79 | ||
| 80 | lemma "P (op +\<Colon>nat\<Rightarrow>nat\<Rightarrow>nat)" | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 81 | nitpick [card nat = 1, expect = genuine] | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 82 | nitpick [card nat = 2, expect = none] | 
| 33197 | 83 | oops | 
| 84 | ||
| 85 | subsection {* 3.6. Inductive Datatypes *}
 | |
| 86 | ||
| 87 | lemma "hd (xs @ [y, y]) = hd xs" | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 88 | nitpick [expect = genuine] | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 89 | nitpick [show_consts, show_datatypes, expect = genuine] | 
| 33197 | 90 | oops | 
| 91 | ||
| 92 | lemma "\<lbrakk>length xs = 1; length ys = 1\<rbrakk> \<Longrightarrow> xs = ys" | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 93 | nitpick [show_datatypes, expect = genuine] | 
| 33197 | 94 | oops | 
| 95 | ||
| 96 | subsection {* 3.7. Typedefs, Records, Rationals, and Reals *}
 | |
| 97 | ||
| 98 | typedef three = "{0\<Colon>nat, 1, 2}"
 | |
| 99 | by blast | |
| 100 | ||
| 101 | definition A :: three where "A \<equiv> Abs_three 0" | |
| 102 | definition B :: three where "B \<equiv> Abs_three 1" | |
| 103 | definition C :: three where "C \<equiv> Abs_three 2" | |
| 104 | ||
| 105 | lemma "\<lbrakk>P A; P B\<rbrakk> \<Longrightarrow> P x" | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 106 | nitpick [show_datatypes, expect = genuine] | 
| 33197 | 107 | oops | 
| 108 | ||
| 35284 
9edc2bd6d2bd
enabled Nitpick's support for quotient types + shortened the Nitpick tests a bit
 blanchet parents: 
35185diff
changeset | 109 | fun my_int_rel where | 
| 
9edc2bd6d2bd
enabled Nitpick's support for quotient types + shortened the Nitpick tests a bit
 blanchet parents: 
35185diff
changeset | 110 | "my_int_rel (x, y) (u, v) = (x + v = u + y)" | 
| 
9edc2bd6d2bd
enabled Nitpick's support for quotient types + shortened the Nitpick tests a bit
 blanchet parents: 
35185diff
changeset | 111 | |
| 
9edc2bd6d2bd
enabled Nitpick's support for quotient types + shortened the Nitpick tests a bit
 blanchet parents: 
35185diff
changeset | 112 | quotient_type my_int = "nat \<times> nat" / my_int_rel | 
| 39198 | 113 | by (auto simp add: equivp_def ext_iff) | 
| 35284 
9edc2bd6d2bd
enabled Nitpick's support for quotient types + shortened the Nitpick tests a bit
 blanchet parents: 
35185diff
changeset | 114 | |
| 
9edc2bd6d2bd
enabled Nitpick's support for quotient types + shortened the Nitpick tests a bit
 blanchet parents: 
35185diff
changeset | 115 | definition add_raw where | 
| 
9edc2bd6d2bd
enabled Nitpick's support for quotient types + shortened the Nitpick tests a bit
 blanchet parents: 
35185diff
changeset | 116 | "add_raw \<equiv> \<lambda>(x, y) (u, v). (x + (u\<Colon>nat), y + (v\<Colon>nat))" | 
| 
9edc2bd6d2bd
enabled Nitpick's support for quotient types + shortened the Nitpick tests a bit
 blanchet parents: 
35185diff
changeset | 117 | |
| 
9edc2bd6d2bd
enabled Nitpick's support for quotient types + shortened the Nitpick tests a bit
 blanchet parents: 
35185diff
changeset | 118 | quotient_definition "add\<Colon>my_int \<Rightarrow> my_int \<Rightarrow> my_int" is add_raw | 
| 
9edc2bd6d2bd
enabled Nitpick's support for quotient types + shortened the Nitpick tests a bit
 blanchet parents: 
35185diff
changeset | 119 | |
| 
9edc2bd6d2bd
enabled Nitpick's support for quotient types + shortened the Nitpick tests a bit
 blanchet parents: 
35185diff
changeset | 120 | lemma "add x y = add x x" | 
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 121 | nitpick [show_datatypes, expect = genuine] | 
| 35284 
9edc2bd6d2bd
enabled Nitpick's support for quotient types + shortened the Nitpick tests a bit
 blanchet parents: 
35185diff
changeset | 122 | oops | 
| 
9edc2bd6d2bd
enabled Nitpick's support for quotient types + shortened the Nitpick tests a bit
 blanchet parents: 
35185diff
changeset | 123 | |
| 35711 
548d3f16404b
added term postprocessor to Nitpick, to provide custom syntax for typedefs
 blanchet parents: 
35710diff
changeset | 124 | ML {*
 | 
| 35712 
77aa29bf14ee
added a mechanism to Nitpick to support custom rendering of terms, and used it for multisets
 blanchet parents: 
35711diff
changeset | 125 | fun my_int_postproc _ _ _ T (Const _ $ (Const _ $ t1 $ t2)) = | 
| 
77aa29bf14ee
added a mechanism to Nitpick to support custom rendering of terms, and used it for multisets
 blanchet parents: 
35711diff
changeset | 126 | HOLogic.mk_number T (snd (HOLogic.dest_number t1) | 
| 
77aa29bf14ee
added a mechanism to Nitpick to support custom rendering of terms, and used it for multisets
 blanchet parents: 
35711diff
changeset | 127 | - snd (HOLogic.dest_number t2)) | 
| 
77aa29bf14ee
added a mechanism to Nitpick to support custom rendering of terms, and used it for multisets
 blanchet parents: 
35711diff
changeset | 128 | | my_int_postproc _ _ _ _ t = t | 
| 35711 
548d3f16404b
added term postprocessor to Nitpick, to provide custom syntax for typedefs
 blanchet parents: 
35710diff
changeset | 129 | *} | 
| 
548d3f16404b
added term postprocessor to Nitpick, to provide custom syntax for typedefs
 blanchet parents: 
35710diff
changeset | 130 | |
| 38288 | 131 | declaration {*
 | 
| 38284 
9f98107ad8b4
use "declaration" instead of "setup" to register Nitpick extensions
 blanchet parents: 
38242diff
changeset | 132 | Nitpick_Model.register_term_postprocessor @{typ my_int} my_int_postproc
 | 
| 38242 | 133 | *} | 
| 35711 
548d3f16404b
added term postprocessor to Nitpick, to provide custom syntax for typedefs
 blanchet parents: 
35710diff
changeset | 134 | |
| 
548d3f16404b
added term postprocessor to Nitpick, to provide custom syntax for typedefs
 blanchet parents: 
35710diff
changeset | 135 | lemma "add x y = add x x" | 
| 
548d3f16404b
added term postprocessor to Nitpick, to provide custom syntax for typedefs
 blanchet parents: 
35710diff
changeset | 136 | nitpick [show_datatypes] | 
| 
548d3f16404b
added term postprocessor to Nitpick, to provide custom syntax for typedefs
 blanchet parents: 
35710diff
changeset | 137 | oops | 
| 
548d3f16404b
added term postprocessor to Nitpick, to provide custom syntax for typedefs
 blanchet parents: 
35710diff
changeset | 138 | |
| 33197 | 139 | record point = | 
| 140 | Xcoord :: int | |
| 141 | Ycoord :: int | |
| 142 | ||
| 143 | lemma "Xcoord (p\<Colon>point) = Xcoord (q\<Colon>point)" | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 144 | nitpick [show_datatypes, expect = genuine] | 
| 33197 | 145 | oops | 
| 146 | ||
| 147 | lemma "4 * x + 3 * (y\<Colon>real) \<noteq> 1 / 2" | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 148 | nitpick [show_datatypes, expect = genuine] | 
| 33197 | 149 | oops | 
| 150 | ||
| 151 | subsection {* 3.8. Inductive and Coinductive Predicates *}
 | |
| 152 | ||
| 153 | inductive even where | |
| 154 | "even 0" | | |
| 155 | "even n \<Longrightarrow> even (Suc (Suc n))" | |
| 156 | ||
| 157 | lemma "\<exists>n. even n \<and> even (Suc n)" | |
| 35710 | 158 | nitpick [card nat = 50, unary_ints, verbose, expect = potential] | 
| 33197 | 159 | oops | 
| 160 | ||
| 35710 | 161 | lemma "\<exists>n \<le> 49. even n \<and> even (Suc n)" | 
| 38184 | 162 | nitpick [card nat = 50, unary_ints, expect = genuine] | 
| 33197 | 163 | oops | 
| 164 | ||
| 165 | inductive even' where | |
| 166 | "even' (0\<Colon>nat)" | | |
| 167 | "even' 2" | | |
| 168 | "\<lbrakk>even' m; even' n\<rbrakk> \<Longrightarrow> even' (m + n)" | |
| 169 | ||
| 170 | lemma "\<exists>n \<in> {0, 2, 4, 6, 8}. \<not> even' n"
 | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 171 | nitpick [card nat = 10, unary_ints, verbose, show_consts, expect = genuine] | 
| 33197 | 172 | oops | 
| 173 | ||
| 174 | lemma "even' (n - 2) \<Longrightarrow> even' n" | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 175 | nitpick [card nat = 10, show_consts, expect = genuine] | 
| 33197 | 176 | oops | 
| 177 | ||
| 178 | coinductive nats where | |
| 179 | "nats (x\<Colon>nat) \<Longrightarrow> nats x" | |
| 180 | ||
| 181 | lemma "nats = {0, 1, 2, 3, 4}"
 | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 182 | nitpick [card nat = 10, show_consts, expect = genuine] | 
| 33197 | 183 | oops | 
| 184 | ||
| 185 | inductive odd where | |
| 186 | "odd 1" | | |
| 187 | "\<lbrakk>odd m; even n\<rbrakk> \<Longrightarrow> odd (m + n)" | |
| 188 | ||
| 189 | lemma "odd n \<Longrightarrow> odd (n - 2)" | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 190 | nitpick [card nat = 10, show_consts, expect = genuine] | 
| 33197 | 191 | oops | 
| 192 | ||
| 193 | subsection {* 3.9. Coinductive Datatypes *}
 | |
| 194 | ||
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35312diff
changeset | 195 | (* Lazy lists are defined in Andreas Lochbihler's "Coinductive" AFP entry. Since | 
| 38184 | 196 | we cannot rely on its presence, we expediently provide our own | 
| 197 | axiomatization. The examples also work unchanged with Lochbihler's | |
| 198 | "Coinductive_List" theory. *) | |
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35312diff
changeset | 199 | |
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35312diff
changeset | 200 | typedef 'a llist = "UNIV\<Colon>('a list + (nat \<Rightarrow> 'a)) set" by auto
 | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35312diff
changeset | 201 | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 202 | definition LNil where | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 203 | "LNil = Abs_llist (Inl [])" | 
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35312diff
changeset | 204 | definition LCons where | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35312diff
changeset | 205 | "LCons y ys = Abs_llist (case Rep_llist ys of | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35312diff
changeset | 206 | Inl ys' \<Rightarrow> Inl (y # ys') | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35312diff
changeset | 207 | | Inr f \<Rightarrow> Inr (\<lambda>n. case n of 0 \<Rightarrow> y | Suc m \<Rightarrow> f m))" | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35312diff
changeset | 208 | |
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35312diff
changeset | 209 | axiomatization iterates :: "('a \<Rightarrow> 'a) \<Rightarrow> 'a \<Rightarrow> 'a llist"
 | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35312diff
changeset | 210 | |
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35312diff
changeset | 211 | lemma iterates_def [nitpick_simp]: | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35312diff
changeset | 212 | "iterates f a = LCons a (iterates f (f a))" | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35312diff
changeset | 213 | sorry | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35312diff
changeset | 214 | |
| 38288 | 215 | declaration {*
 | 
| 38284 
9f98107ad8b4
use "declaration" instead of "setup" to register Nitpick extensions
 blanchet parents: 
38242diff
changeset | 216 | Nitpick_HOL.register_codatatype @{typ "'a llist"} ""
 | 
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35312diff
changeset | 217 |     (map dest_Const [@{term LNil}, @{term LCons}])
 | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35312diff
changeset | 218 | *} | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35312diff
changeset | 219 | |
| 33197 | 220 | lemma "xs \<noteq> LCons a xs" | 
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 221 | nitpick [expect = genuine] | 
| 33197 | 222 | oops | 
| 223 | ||
| 224 | lemma "\<lbrakk>xs = LCons a xs; ys = iterates (\<lambda>b. a) b\<rbrakk> \<Longrightarrow> xs = ys" | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 225 | nitpick [verbose, expect = genuine] | 
| 33197 | 226 | oops | 
| 227 | ||
| 228 | lemma "\<lbrakk>xs = LCons a xs; ys = LCons a ys\<rbrakk> \<Longrightarrow> xs = ys" | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 229 | nitpick [bisim_depth = -1, show_datatypes, expect = quasi_genuine] | 
| 38184 | 230 | nitpick [card = 1\<midarrow>5, expect = none] | 
| 33197 | 231 | sorry | 
| 232 | ||
| 233 | subsection {* 3.10. Boxing *}
 | |
| 234 | ||
| 235 | datatype tm = Var nat | Lam tm | App tm tm | |
| 236 | ||
| 237 | primrec lift where | |
| 238 | "lift (Var j) k = Var (if j < k then j else j + 1)" | | |
| 239 | "lift (Lam t) k = Lam (lift t (k + 1))" | | |
| 240 | "lift (App t u) k = App (lift t k) (lift u k)" | |
| 241 | ||
| 242 | primrec loose where | |
| 243 | "loose (Var j) k = (j \<ge> k)" | | |
| 244 | "loose (Lam t) k = loose t (Suc k)" | | |
| 245 | "loose (App t u) k = (loose t k \<or> loose u k)" | |
| 246 | ||
| 247 | primrec subst\<^isub>1 where | |
| 248 | "subst\<^isub>1 \<sigma> (Var j) = \<sigma> j" | | |
| 249 | "subst\<^isub>1 \<sigma> (Lam t) = | |
| 250 | Lam (subst\<^isub>1 (\<lambda>n. case n of 0 \<Rightarrow> Var 0 | Suc m \<Rightarrow> lift (\<sigma> m) 1) t)" | | |
| 251 | "subst\<^isub>1 \<sigma> (App t u) = App (subst\<^isub>1 \<sigma> t) (subst\<^isub>1 \<sigma> u)" | |
| 252 | ||
| 253 | lemma "\<not> loose t 0 \<Longrightarrow> subst\<^isub>1 \<sigma> t = t" | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 254 | nitpick [verbose, expect = genuine] | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 255 | nitpick [eval = "subst\<^isub>1 \<sigma> t", expect = genuine] | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 256 | (* nitpick [dont_box, expect = unknown] *) | 
| 33197 | 257 | oops | 
| 258 | ||
| 259 | primrec subst\<^isub>2 where | |
| 260 | "subst\<^isub>2 \<sigma> (Var j) = \<sigma> j" | | |
| 261 | "subst\<^isub>2 \<sigma> (Lam t) = | |
| 262 | Lam (subst\<^isub>2 (\<lambda>n. case n of 0 \<Rightarrow> Var 0 | Suc m \<Rightarrow> lift (\<sigma> m) 0) t)" | | |
| 263 | "subst\<^isub>2 \<sigma> (App t u) = App (subst\<^isub>2 \<sigma> t) (subst\<^isub>2 \<sigma> u)" | |
| 264 | ||
| 265 | lemma "\<not> loose t 0 \<Longrightarrow> subst\<^isub>2 \<sigma> t = t" | |
| 35710 | 266 | nitpick [card = 1\<midarrow>5, expect = none] | 
| 33197 | 267 | sorry | 
| 268 | ||
| 269 | subsection {* 3.11. Scope Monotonicity *}
 | |
| 270 | ||
| 271 | lemma "length xs = length ys \<Longrightarrow> rev (zip xs ys) = zip xs (rev ys)" | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 272 | nitpick [verbose, expect = genuine] | 
| 33197 | 273 | oops | 
| 274 | ||
| 275 | lemma "\<exists>g. \<forall>x\<Colon>'b. g (f x) = x \<Longrightarrow> \<forall>y\<Colon>'a. \<exists>x. y = f x" | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 276 | nitpick [mono, expect = none] | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 277 | nitpick [expect = genuine] | 
| 33197 | 278 | oops | 
| 279 | ||
| 34982 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 280 | subsection {* 3.12. Inductive Properties *}
 | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 281 | |
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 282 | inductive_set reach where | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 283 | "(4\<Colon>nat) \<in> reach" | | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 284 | "n \<in> reach \<Longrightarrow> n < 4 \<Longrightarrow> 3 * n + 1 \<in> reach" | | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 285 | "n \<in> reach \<Longrightarrow> n + 2 \<in> reach" | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 286 | |
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 287 | lemma "n \<in> reach \<Longrightarrow> 2 dvd n" | 
| 38184 | 288 | (* nitpick *) | 
| 34982 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 289 | apply (induct set: reach) | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 290 | apply auto | 
| 38184 | 291 | nitpick [card = 1\<midarrow>4, bits = 1\<midarrow>4, expect = none] | 
| 34982 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 292 | apply (thin_tac "n \<in> reach") | 
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 293 | nitpick [expect = genuine] | 
| 34982 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 294 | oops | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 295 | |
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 296 | lemma "n \<in> reach \<Longrightarrow> 2 dvd n \<and> n \<noteq> 0" | 
| 38184 | 297 | (* nitpick *) | 
| 34982 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 298 | apply (induct set: reach) | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 299 | apply auto | 
| 38184 | 300 | nitpick [card = 1\<midarrow>4, bits = 1\<midarrow>4, expect = none] | 
| 34982 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 301 | apply (thin_tac "n \<in> reach") | 
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 302 | nitpick [expect = genuine] | 
| 34982 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 303 | oops | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 304 | |
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 305 | lemma "n \<in> reach \<Longrightarrow> 2 dvd n \<and> n \<ge> 4" | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 306 | by (induct set: reach) arith+ | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 307 | |
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 308 | datatype 'a bin_tree = Leaf 'a | Branch "'a bin_tree" "'a bin_tree" | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 309 | |
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 310 | primrec labels where | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 311 | "labels (Leaf a) = {a}" |
 | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 312 | "labels (Branch t u) = labels t \<union> labels u" | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 313 | |
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 314 | primrec swap where | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 315 | "swap (Leaf c) a b = | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 316 | (if c = a then Leaf b else if c = b then Leaf a else Leaf c)" | | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 317 | "swap (Branch t u) a b = Branch (swap t a b) (swap u a b)" | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 318 | |
| 35180 
c57dba973391
more work on Nitpick's support for nonstandard models + fix in model reconstruction
 blanchet parents: 
35078diff
changeset | 319 | lemma "{a, b} \<subseteq> labels t \<Longrightarrow> labels (swap t a b) = labels t"
 | 
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 320 | (* nitpick *) | 
| 34982 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 321 | proof (induct t) | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 322 | case Leaf thus ?case by simp | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 323 | next | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 324 | case (Branch t u) thus ?case | 
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 325 | (* nitpick *) | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 326 | nitpick [non_std, show_all, expect = genuine] | 
| 34982 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 327 | oops | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 328 | |
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 329 | lemma "labels (swap t a b) = | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 330 | (if a \<in> labels t then | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 331 |           if b \<in> labels t then labels t else (labels t - {a}) \<union> {b}
 | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 332 | else | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 333 |           if b \<in> labels t then (labels t - {b}) \<union> {a} else labels t)"
 | 
| 35309 
997aa3a3e4bb
catch IO errors in Nitpick's "kodkodi" invocation + shorten execution time of "Manual_Nits" example
 blanchet parents: 
35284diff
changeset | 334 | (* nitpick *) | 
| 34982 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 335 | proof (induct t) | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 336 | case Leaf thus ?case by simp | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 337 | next | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 338 | case (Branch t u) thus ?case | 
| 38184 | 339 | nitpick [non_std, card = 1\<midarrow>4, expect = none] | 
| 34982 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 340 | by auto | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 341 | qed | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 342 | |
| 33197 | 343 | section {* 4. Case Studies *}
 | 
| 344 | ||
| 36268 | 345 | nitpick_params [max_potential = 0] | 
| 33197 | 346 | |
| 347 | subsection {* 4.1. A Context-Free Grammar *}
 | |
| 348 | ||
| 349 | datatype alphabet = a | b | |
| 350 | ||
| 351 | inductive_set S\<^isub>1 and A\<^isub>1 and B\<^isub>1 where | |
| 352 | "[] \<in> S\<^isub>1" | |
| 353 | | "w \<in> A\<^isub>1 \<Longrightarrow> b # w \<in> S\<^isub>1" | |
| 354 | | "w \<in> B\<^isub>1 \<Longrightarrow> a # w \<in> S\<^isub>1" | |
| 355 | | "w \<in> S\<^isub>1 \<Longrightarrow> a # w \<in> A\<^isub>1" | |
| 356 | | "w \<in> S\<^isub>1 \<Longrightarrow> b # w \<in> S\<^isub>1" | |
| 357 | | "\<lbrakk>v \<in> B\<^isub>1; v \<in> B\<^isub>1\<rbrakk> \<Longrightarrow> a # v @ w \<in> B\<^isub>1" | |
| 358 | ||
| 359 | theorem S\<^isub>1_sound: | |
| 360 | "w \<in> S\<^isub>1 \<longrightarrow> length [x \<leftarrow> w. x = a] = length [x \<leftarrow> w. x = b]" | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 361 | nitpick [expect = genuine] | 
| 33197 | 362 | oops | 
| 363 | ||
| 364 | inductive_set S\<^isub>2 and A\<^isub>2 and B\<^isub>2 where | |
| 365 | "[] \<in> S\<^isub>2" | |
| 366 | | "w \<in> A\<^isub>2 \<Longrightarrow> b # w \<in> S\<^isub>2" | |
| 367 | | "w \<in> B\<^isub>2 \<Longrightarrow> a # w \<in> S\<^isub>2" | |
| 368 | | "w \<in> S\<^isub>2 \<Longrightarrow> a # w \<in> A\<^isub>2" | |
| 369 | | "w \<in> S\<^isub>2 \<Longrightarrow> b # w \<in> B\<^isub>2" | |
| 370 | | "\<lbrakk>v \<in> B\<^isub>2; v \<in> B\<^isub>2\<rbrakk> \<Longrightarrow> a # v @ w \<in> B\<^isub>2" | |
| 371 | ||
| 372 | theorem S\<^isub>2_sound: | |
| 373 | "w \<in> S\<^isub>2 \<longrightarrow> length [x \<leftarrow> w. x = a] = length [x \<leftarrow> w. x = b]" | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 374 | nitpick [expect = genuine] | 
| 33197 | 375 | oops | 
| 376 | ||
| 377 | inductive_set S\<^isub>3 and A\<^isub>3 and B\<^isub>3 where | |
| 378 | "[] \<in> S\<^isub>3" | |
| 379 | | "w \<in> A\<^isub>3 \<Longrightarrow> b # w \<in> S\<^isub>3" | |
| 380 | | "w \<in> B\<^isub>3 \<Longrightarrow> a # w \<in> S\<^isub>3" | |
| 381 | | "w \<in> S\<^isub>3 \<Longrightarrow> a # w \<in> A\<^isub>3" | |
| 382 | | "w \<in> S\<^isub>3 \<Longrightarrow> b # w \<in> B\<^isub>3" | |
| 383 | | "\<lbrakk>v \<in> B\<^isub>3; w \<in> B\<^isub>3\<rbrakk> \<Longrightarrow> a # v @ w \<in> B\<^isub>3" | |
| 384 | ||
| 385 | theorem S\<^isub>3_sound: | |
| 386 | "w \<in> S\<^isub>3 \<longrightarrow> length [x \<leftarrow> w. x = a] = length [x \<leftarrow> w. x = b]" | |
| 37477 
e482320bcbfe
adjusted Nitpick examples to latest changes + make them slightly faster
 blanchet parents: 
36268diff
changeset | 387 | nitpick [card = 1\<midarrow>5, expect = none] | 
| 33197 | 388 | sorry | 
| 389 | ||
| 390 | theorem S\<^isub>3_complete: | |
| 391 | "length [x \<leftarrow> w. x = a] = length [x \<leftarrow> w. x = b] \<longrightarrow> w \<in> S\<^isub>3" | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 392 | nitpick [expect = genuine] | 
| 33197 | 393 | oops | 
| 394 | ||
| 395 | inductive_set S\<^isub>4 and A\<^isub>4 and B\<^isub>4 where | |
| 396 | "[] \<in> S\<^isub>4" | |
| 397 | | "w \<in> A\<^isub>4 \<Longrightarrow> b # w \<in> S\<^isub>4" | |
| 398 | | "w \<in> B\<^isub>4 \<Longrightarrow> a # w \<in> S\<^isub>4" | |
| 399 | | "w \<in> S\<^isub>4 \<Longrightarrow> a # w \<in> A\<^isub>4" | |
| 400 | | "\<lbrakk>v \<in> A\<^isub>4; w \<in> A\<^isub>4\<rbrakk> \<Longrightarrow> b # v @ w \<in> A\<^isub>4" | |
| 401 | | "w \<in> S\<^isub>4 \<Longrightarrow> b # w \<in> B\<^isub>4" | |
| 402 | | "\<lbrakk>v \<in> B\<^isub>4; w \<in> B\<^isub>4\<rbrakk> \<Longrightarrow> a # v @ w \<in> B\<^isub>4" | |
| 403 | ||
| 404 | theorem S\<^isub>4_sound: | |
| 405 | "w \<in> S\<^isub>4 \<longrightarrow> length [x \<leftarrow> w. x = a] = length [x \<leftarrow> w. x = b]" | |
| 37477 
e482320bcbfe
adjusted Nitpick examples to latest changes + make them slightly faster
 blanchet parents: 
36268diff
changeset | 406 | nitpick [card = 1\<midarrow>5, expect = none] | 
| 33197 | 407 | sorry | 
| 408 | ||
| 409 | theorem S\<^isub>4_complete: | |
| 410 | "length [x \<leftarrow> w. x = a] = length [x \<leftarrow> w. x = b] \<longrightarrow> w \<in> S\<^isub>4" | |
| 37477 
e482320bcbfe
adjusted Nitpick examples to latest changes + make them slightly faster
 blanchet parents: 
36268diff
changeset | 411 | nitpick [card = 1\<midarrow>5, expect = none] | 
| 33197 | 412 | sorry | 
| 413 | ||
| 414 | theorem S\<^isub>4_A\<^isub>4_B\<^isub>4_sound_and_complete: | |
| 415 | "w \<in> S\<^isub>4 \<longleftrightarrow> length [x \<leftarrow> w. x = a] = length [x \<leftarrow> w. x = b]" | |
| 416 | "w \<in> A\<^isub>4 \<longleftrightarrow> length [x \<leftarrow> w. x = a] = length [x \<leftarrow> w. x = b] + 1" | |
| 417 | "w \<in> B\<^isub>4 \<longleftrightarrow> length [x \<leftarrow> w. x = b] = length [x \<leftarrow> w. x = a] + 1" | |
| 37477 
e482320bcbfe
adjusted Nitpick examples to latest changes + make them slightly faster
 blanchet parents: 
36268diff
changeset | 418 | nitpick [card = 1\<midarrow>5, expect = none] | 
| 33197 | 419 | sorry | 
| 420 | ||
| 421 | subsection {* 4.2. AA Trees *}
 | |
| 422 | ||
| 34982 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34126diff
changeset | 423 | datatype 'a aa_tree = \<Lambda> | N "'a\<Colon>linorder" nat "'a aa_tree" "'a aa_tree" | 
| 33197 | 424 | |
| 425 | primrec data where | |
| 426 | "data \<Lambda> = undefined" | | |
| 427 | "data (N x _ _ _) = x" | |
| 428 | ||
| 429 | primrec dataset where | |
| 430 | "dataset \<Lambda> = {}" |
 | |
| 431 | "dataset (N x _ t u) = {x} \<union> dataset t \<union> dataset u"
 | |
| 432 | ||
| 433 | primrec level where | |
| 434 | "level \<Lambda> = 0" | | |
| 435 | "level (N _ k _ _) = k" | |
| 436 | ||
| 437 | primrec left where | |
| 438 | "left \<Lambda> = \<Lambda>" | | |
| 439 | "left (N _ _ t\<^isub>1 _) = t\<^isub>1" | |
| 440 | ||
| 441 | primrec right where | |
| 442 | "right \<Lambda> = \<Lambda>" | | |
| 443 | "right (N _ _ _ t\<^isub>2) = t\<^isub>2" | |
| 444 | ||
| 445 | fun wf where | |
| 446 | "wf \<Lambda> = True" | | |
| 447 | "wf (N _ k t u) = | |
| 448 | (if t = \<Lambda> then | |
| 449 | k = 1 \<and> (u = \<Lambda> \<or> (level u = 1 \<and> left u = \<Lambda> \<and> right u = \<Lambda>)) | |
| 450 | else | |
| 451 | wf t \<and> wf u \<and> u \<noteq> \<Lambda> \<and> level t < k \<and> level u \<le> k \<and> level (right u) < k)" | |
| 452 | ||
| 453 | fun skew where | |
| 454 | "skew \<Lambda> = \<Lambda>" | | |
| 455 | "skew (N x k t u) = | |
| 456 | (if t \<noteq> \<Lambda> \<and> k = level t then | |
| 457 | N (data t) k (left t) (N x k (right t) u) | |
| 458 | else | |
| 459 | N x k t u)" | |
| 460 | ||
| 461 | fun split where | |
| 462 | "split \<Lambda> = \<Lambda>" | | |
| 463 | "split (N x k t u) = | |
| 464 | (if u \<noteq> \<Lambda> \<and> k = level (right u) then | |
| 465 | N (data u) (Suc k) (N x k t (left u)) (right u) | |
| 466 | else | |
| 467 | N x k t u)" | |
| 468 | ||
| 469 | theorem dataset_skew_split: | |
| 470 | "dataset (skew t) = dataset t" | |
| 471 | "dataset (split t) = dataset t" | |
| 35747 
c910fe606829
make tests less demanding, to prevent sporadic failures
 blanchet parents: 
35718diff
changeset | 472 | nitpick [card = 1\<midarrow>5, expect = none] | 
| 33197 | 473 | sorry | 
| 474 | ||
| 475 | theorem wf_skew_split: | |
| 476 | "wf t \<Longrightarrow> skew t = t" | |
| 477 | "wf t \<Longrightarrow> split t = t" | |
| 35747 
c910fe606829
make tests less demanding, to prevent sporadic failures
 blanchet parents: 
35718diff
changeset | 478 | nitpick [card = 1\<midarrow>5, expect = none] | 
| 33197 | 479 | sorry | 
| 480 | ||
| 481 | primrec insort\<^isub>1 where | |
| 482 | "insort\<^isub>1 \<Lambda> x = N x 1 \<Lambda> \<Lambda>" | | |
| 483 | "insort\<^isub>1 (N y k t u) x = | |
| 484 | (* (split \<circ> skew) *) (N y k (if x < y then insort\<^isub>1 t x else t) | |
| 485 | (if x > y then insort\<^isub>1 u x else u))" | |
| 486 | ||
| 487 | theorem wf_insort\<^isub>1: "wf t \<Longrightarrow> wf (insort\<^isub>1 t x)" | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 488 | nitpick [expect = genuine] | 
| 33197 | 489 | oops | 
| 490 | ||
| 491 | theorem wf_insort\<^isub>1_nat: "wf t \<Longrightarrow> wf (insort\<^isub>1 t (x\<Colon>nat))" | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 492 | nitpick [eval = "insort\<^isub>1 t x", expect = genuine] | 
| 33197 | 493 | oops | 
| 494 | ||
| 495 | primrec insort\<^isub>2 where | |
| 496 | "insort\<^isub>2 \<Lambda> x = N x 1 \<Lambda> \<Lambda>" | | |
| 497 | "insort\<^isub>2 (N y k t u) x = | |
| 498 | (split \<circ> skew) (N y k (if x < y then insort\<^isub>2 t x else t) | |
| 499 | (if x > y then insort\<^isub>2 u x else u))" | |
| 500 | ||
| 501 | theorem wf_insort\<^isub>2: "wf t \<Longrightarrow> wf (insort\<^isub>2 t x)" | |
| 35747 
c910fe606829
make tests less demanding, to prevent sporadic failures
 blanchet parents: 
35718diff
changeset | 502 | nitpick [card = 1\<midarrow>5, expect = none] | 
| 33197 | 503 | sorry | 
| 504 | ||
| 505 | theorem dataset_insort\<^isub>2: "dataset (insort\<^isub>2 t x) = {x} \<union> dataset t"
 | |
| 35747 
c910fe606829
make tests less demanding, to prevent sporadic failures
 blanchet parents: 
35718diff
changeset | 506 | nitpick [card = 1\<midarrow>5, expect = none] | 
| 33197 | 507 | sorry | 
| 508 | ||
| 509 | end |