| author | wenzelm | 
| Mon, 25 Oct 2010 21:23:09 +0200 | |
| changeset 40133 | b61d52de66f0 | 
| parent 39365 | 9cab71c20613 | 
| child 41046 | f2e94005d283 | 
| permissions | -rw-r--r-- | 
| 33192 | 1 | (* Title: HOL/Nitpick.thy | 
| 2 | Author: Jasmin Blanchette, TU Muenchen | |
| 35807 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35699diff
changeset | 3 | Copyright 2008, 2009, 2010 | 
| 33192 | 4 | |
| 5 | Nitpick: Yet another counterexample generator for Isabelle/HOL. | |
| 6 | *) | |
| 7 | ||
| 8 | header {* Nitpick: Yet Another Counterexample Generator for Isabelle/HOL *}
 | |
| 9 | ||
| 10 | theory Nitpick | |
| 38393 | 11 | imports Map Quotient SAT Record | 
| 33192 | 12 | uses ("Tools/Nitpick/kodkod.ML")
 | 
| 13 |      ("Tools/Nitpick/kodkod_sat.ML")
 | |
| 14 |      ("Tools/Nitpick/nitpick_util.ML")
 | |
| 15 |      ("Tools/Nitpick/nitpick_hol.ML")
 | |
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34982diff
changeset | 16 |      ("Tools/Nitpick/nitpick_preproc.ML")
 | 
| 33192 | 17 |      ("Tools/Nitpick/nitpick_mono.ML")
 | 
| 18 |      ("Tools/Nitpick/nitpick_scope.ML")
 | |
| 19 |      ("Tools/Nitpick/nitpick_peephole.ML")
 | |
| 20 |      ("Tools/Nitpick/nitpick_rep.ML")
 | |
| 21 |      ("Tools/Nitpick/nitpick_nut.ML")
 | |
| 22 |      ("Tools/Nitpick/nitpick_kodkod.ML")
 | |
| 23 |      ("Tools/Nitpick/nitpick_model.ML")
 | |
| 24 |      ("Tools/Nitpick/nitpick.ML")
 | |
| 25 |      ("Tools/Nitpick/nitpick_isar.ML")
 | |
| 26 |      ("Tools/Nitpick/nitpick_tests.ML")
 | |
| 27 | begin | |
| 28 | ||
| 29 | typedecl bisim_iterator | |
| 30 | ||
| 31 | axiomatization unknown :: 'a | |
| 34938 | 32 | and is_unknown :: "'a \<Rightarrow> bool" | 
| 33192 | 33 | and bisim :: "bisim_iterator \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> bool" | 
| 34 | and bisim_iterator_max :: bisim_iterator | |
| 34938 | 35 | and Quot :: "'a \<Rightarrow> '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 | 36 |            and safe_The :: "('a \<Rightarrow> bool) \<Rightarrow> 'a"
 | 
| 33192 | 37 | |
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35311diff
changeset | 38 | datatype ('a, 'b) fin_fun = FinFun "('a \<Rightarrow> 'b)"
 | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35311diff
changeset | 39 | datatype ('a, 'b) fun_box = FunBox "('a \<Rightarrow> 'b)"
 | 
| 33192 | 40 | datatype ('a, 'b) pair_box = PairBox 'a 'b
 | 
| 34124 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 blanchet parents: 
33747diff
changeset | 41 | |
| 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 blanchet parents: 
33747diff
changeset | 42 | typedecl unsigned_bit | 
| 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 blanchet parents: 
33747diff
changeset | 43 | typedecl signed_bit | 
| 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 blanchet parents: 
33747diff
changeset | 44 | |
| 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 blanchet parents: 
33747diff
changeset | 45 | datatype 'a word = Word "('a set)"
 | 
| 33192 | 46 | |
| 47 | text {*
 | |
| 48 | Alternative definitions. | |
| 49 | *} | |
| 50 | ||
| 36918 | 51 | lemma If_def [nitpick_def, no_atp]: | 
| 33192 | 52 | "(if P then Q else R) \<equiv> (P \<longrightarrow> Q) \<and> (\<not> P \<longrightarrow> R)" | 
| 53 | by (rule eq_reflection) (rule if_bool_eq_conj) | |
| 54 | ||
| 36918 | 55 | lemma Ex1_def [nitpick_def, no_atp]: | 
| 33192 | 56 | "Ex1 P \<equiv> \<exists>x. P = {x}"
 | 
| 57 | apply (rule eq_reflection) | |
| 39302 
d7728f65b353
renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
 nipkow parents: 
39223diff
changeset | 58 | apply (simp add: Ex1_def set_eq_iff) | 
| 33192 | 59 | apply (rule iffI) | 
| 60 | apply (erule exE) | |
| 61 | apply (erule conjE) | |
| 62 | apply (rule_tac x = x in exI) | |
| 63 | apply (rule allI) | |
| 64 | apply (rename_tac y) | |
| 65 | apply (erule_tac x = y in allE) | |
| 66 | by (auto simp: mem_def) | |
| 67 | ||
| 36918 | 68 | lemma rtrancl_def [nitpick_def, no_atp]: "r\<^sup>* \<equiv> (r\<^sup>+)\<^sup>=" | 
| 33192 | 69 | by simp | 
| 70 | ||
| 36918 | 71 | lemma rtranclp_def [nitpick_def, no_atp]: | 
| 33192 | 72 | "rtranclp r a b \<equiv> (a = b \<or> tranclp r a b)" | 
| 73 | by (rule eq_reflection) (auto dest: rtranclpD) | |
| 74 | ||
| 36918 | 75 | lemma tranclp_def [nitpick_def, no_atp]: | 
| 33192 | 76 | "tranclp r a b \<equiv> trancl (split r) (a, b)" | 
| 77 | by (simp add: trancl_def Collect_def mem_def) | |
| 78 | ||
| 79 | definition refl' :: "('a \<times> 'a \<Rightarrow> bool) \<Rightarrow> bool" where
 | |
| 80 | "refl' r \<equiv> \<forall>x. (x, x) \<in> r" | |
| 81 | ||
| 82 | definition wf' :: "('a \<times> 'a \<Rightarrow> bool) \<Rightarrow> bool" where
 | |
| 83 | "wf' r \<equiv> acyclic r \<and> (finite r \<or> unknown)" | |
| 84 | ||
| 85 | axiomatization wf_wfrec :: "('a \<times> 'a \<Rightarrow> bool) \<Rightarrow> (('a \<Rightarrow> 'b) \<Rightarrow> 'a \<Rightarrow> 'b) \<Rightarrow> 'a \<Rightarrow> 'b"
 | |
| 86 | ||
| 87 | definition wf_wfrec' :: "('a \<times> 'a \<Rightarrow> bool) \<Rightarrow> (('a \<Rightarrow> 'b) \<Rightarrow> 'a \<Rightarrow> 'b) \<Rightarrow> 'a \<Rightarrow> 'b" where
 | |
| 88 | [nitpick_simp]: "wf_wfrec' R F x = F (Recdef.cut (wf_wfrec R F) R x) x" | |
| 89 | ||
| 90 | definition wfrec' ::  "('a \<times> 'a \<Rightarrow> bool) \<Rightarrow> (('a \<Rightarrow> 'b) \<Rightarrow> 'a \<Rightarrow> 'b) \<Rightarrow> 'a \<Rightarrow> 'b" where
 | |
| 91 | "wfrec' R F x \<equiv> if wf R then wf_wfrec' R F x | |
| 92 | else THE y. wfrec_rel R (%f x. F (Recdef.cut f R x) x) x y" | |
| 93 | ||
| 94 | definition card' :: "('a \<Rightarrow> bool) \<Rightarrow> nat" where
 | |
| 39365 
9cab71c20613
remove more clutter related to old "fast_descrs" optimization
 blanchet parents: 
39302diff
changeset | 95 | "card' A \<equiv> if finite A then length (SOME xs. set xs = A \<and> distinct xs) else 0" | 
| 33192 | 96 | |
| 97 | definition setsum' :: "('a \<Rightarrow> 'b\<Colon>comm_monoid_add) \<Rightarrow> ('a \<Rightarrow> bool) \<Rightarrow> 'b" where
 | |
| 39365 
9cab71c20613
remove more clutter related to old "fast_descrs" optimization
 blanchet parents: 
39302diff
changeset | 98 | "setsum' f A \<equiv> if finite A then listsum (map f (SOME xs. set xs = A \<and> distinct xs)) else 0" | 
| 33192 | 99 | |
| 100 | inductive fold_graph' :: "('a \<Rightarrow> 'b \<Rightarrow> 'b) \<Rightarrow> 'b \<Rightarrow> ('a \<Rightarrow> bool) \<Rightarrow> 'b \<Rightarrow> bool" where
 | |
| 101 | "fold_graph' f z {} z" |
 | |
| 102 | "\<lbrakk>x \<in> A; fold_graph' f z (A - {x}) y\<rbrakk> \<Longrightarrow> fold_graph' f z A (f x y)"
 | |
| 103 | ||
| 104 | text {*
 | |
| 105 | The following lemmas are not strictly necessary but they help the | |
| 106 | \textit{special\_level} optimization.
 | |
| 107 | *} | |
| 108 | ||
| 36918 | 109 | lemma The_psimp [nitpick_psimp, no_atp]: | 
| 33192 | 110 | "P = {x} \<Longrightarrow> The P = x"
 | 
| 111 | by (subgoal_tac "{x} = (\<lambda>y. y = x)") (auto simp: mem_def)
 | |
| 112 | ||
| 36918 | 113 | lemma Eps_psimp [nitpick_psimp, no_atp]: | 
| 33192 | 114 | "\<lbrakk>P x; \<not> P y; Eps P = y\<rbrakk> \<Longrightarrow> Eps P = x" | 
| 115 | apply (case_tac "P (Eps P)") | |
| 116 | apply auto | |
| 117 | apply (erule contrapos_np) | |
| 118 | by (rule someI) | |
| 119 | ||
| 36918 | 120 | lemma unit_case_def [nitpick_def, no_atp]: | 
| 33192 | 121 | "unit_case x u \<equiv> x" | 
| 122 | apply (subgoal_tac "u = ()") | |
| 123 | apply (simp only: unit.cases) | |
| 124 | by simp | |
| 125 | ||
| 33556 
cba22e2999d5
renamed Nitpick option "coalesce_type_vars" to "merge_type_vars" (shorter) and cleaned up old hacks that are no longer necessary
 blanchet parents: 
33192diff
changeset | 126 | declare unit.cases [nitpick_simp del] | 
| 
cba22e2999d5
renamed Nitpick option "coalesce_type_vars" to "merge_type_vars" (shorter) and cleaned up old hacks that are no longer necessary
 blanchet parents: 
33192diff
changeset | 127 | |
| 36918 | 128 | lemma nat_case_def [nitpick_def, no_atp]: | 
| 33192 | 129 | "nat_case x f n \<equiv> if n = 0 then x else f (n - 1)" | 
| 130 | apply (rule eq_reflection) | |
| 131 | by (case_tac n) auto | |
| 132 | ||
| 33556 
cba22e2999d5
renamed Nitpick option "coalesce_type_vars" to "merge_type_vars" (shorter) and cleaned up old hacks that are no longer necessary
 blanchet parents: 
33192diff
changeset | 133 | declare nat.cases [nitpick_simp del] | 
| 
cba22e2999d5
renamed Nitpick option "coalesce_type_vars" to "merge_type_vars" (shorter) and cleaned up old hacks that are no longer necessary
 blanchet parents: 
33192diff
changeset | 134 | |
| 36918 | 135 | lemma list_size_simp [nitpick_simp, no_atp]: | 
| 33192 | 136 | "list_size f xs = (if xs = [] then 0 | 
| 137 | else Suc (f (hd xs) + list_size f (tl xs)))" | |
| 138 | "size xs = (if xs = [] then 0 else Suc (size (tl xs)))" | |
| 139 | by (case_tac xs) auto | |
| 140 | ||
| 141 | text {*
 | |
| 142 | Auxiliary definitions used to provide an alternative representation for | |
| 143 | @{text rat} and @{text real}.
 | |
| 144 | *} | |
| 145 | ||
| 146 | function nat_gcd :: "nat \<Rightarrow> nat \<Rightarrow> nat" where | |
| 147 | [simp del]: "nat_gcd x y = (if y = 0 then x else nat_gcd y (x mod y))" | |
| 148 | by auto | |
| 149 | termination | |
| 150 | apply (relation "measure (\<lambda>(x, y). x + y + (if y > x then 1 else 0))") | |
| 151 | apply auto | |
| 152 | apply (metis mod_less_divisor xt1(9)) | |
| 153 | by (metis mod_mod_trivial mod_self nat_neq_iff xt1(10)) | |
| 154 | ||
| 155 | definition nat_lcm :: "nat \<Rightarrow> nat \<Rightarrow> nat" where | |
| 156 | "nat_lcm x y = x * y div (nat_gcd x y)" | |
| 157 | ||
| 158 | definition int_gcd :: "int \<Rightarrow> int \<Rightarrow> int" where | |
| 159 | "int_gcd x y = int (nat_gcd (nat (abs x)) (nat (abs y)))" | |
| 160 | ||
| 161 | definition int_lcm :: "int \<Rightarrow> int \<Rightarrow> int" where | |
| 162 | "int_lcm x y = int (nat_lcm (nat (abs x)) (nat (abs y)))" | |
| 163 | ||
| 164 | definition Frac :: "int \<times> int \<Rightarrow> bool" where | |
| 165 | "Frac \<equiv> \<lambda>(a, b). b > 0 \<and> int_gcd a b = 1" | |
| 166 | ||
| 167 | axiomatization Abs_Frac :: "int \<times> int \<Rightarrow> 'a" | |
| 168 | and Rep_Frac :: "'a \<Rightarrow> int \<times> int" | |
| 169 | ||
| 170 | definition zero_frac :: 'a where | |
| 171 | "zero_frac \<equiv> Abs_Frac (0, 1)" | |
| 172 | ||
| 173 | definition one_frac :: 'a where | |
| 174 | "one_frac \<equiv> Abs_Frac (1, 1)" | |
| 175 | ||
| 176 | definition num :: "'a \<Rightarrow> int" where | |
| 177 | "num \<equiv> fst o Rep_Frac" | |
| 178 | ||
| 179 | definition denom :: "'a \<Rightarrow> int" where | |
| 180 | "denom \<equiv> snd o Rep_Frac" | |
| 181 | ||
| 182 | function norm_frac :: "int \<Rightarrow> int \<Rightarrow> int \<times> int" where | |
| 183 | [simp del]: "norm_frac a b = (if b < 0 then norm_frac (- a) (- b) | |
| 184 | else if a = 0 \<or> b = 0 then (0, 1) | |
| 185 | else let c = int_gcd a b in (a div c, b div c))" | |
| 186 | by pat_completeness auto | |
| 187 | termination by (relation "measure (\<lambda>(_, b). if b < 0 then 1 else 0)") auto | |
| 188 | ||
| 189 | definition frac :: "int \<Rightarrow> int \<Rightarrow> 'a" where | |
| 190 | "frac a b \<equiv> Abs_Frac (norm_frac a b)" | |
| 191 | ||
| 192 | definition plus_frac :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" where | |
| 193 | [nitpick_simp]: | |
| 194 | "plus_frac q r = (let d = int_lcm (denom q) (denom r) in | |
| 195 | frac (num q * (d div denom q) + num r * (d div denom r)) d)" | |
| 196 | ||
| 197 | definition times_frac :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" where | |
| 198 | [nitpick_simp]: | |
| 199 | "times_frac q r = frac (num q * num r) (denom q * denom r)" | |
| 200 | ||
| 201 | definition uminus_frac :: "'a \<Rightarrow> 'a" where | |
| 202 | "uminus_frac q \<equiv> Abs_Frac (- num q, denom q)" | |
| 203 | ||
| 204 | definition number_of_frac :: "int \<Rightarrow> 'a" where | |
| 205 | "number_of_frac n \<equiv> Abs_Frac (n, 1)" | |
| 206 | ||
| 207 | definition inverse_frac :: "'a \<Rightarrow> 'a" where | |
| 208 | "inverse_frac q \<equiv> frac (denom q) (num q)" | |
| 209 | ||
| 37397 
18000f9d783e
adjust Nitpick's handling of "<" on "rat"s and "reals"
 blanchet parents: 
37213diff
changeset | 210 | definition less_frac :: "'a \<Rightarrow> 'a \<Rightarrow> bool" where | 
| 
18000f9d783e
adjust Nitpick's handling of "<" on "rat"s and "reals"
 blanchet parents: 
37213diff
changeset | 211 | [nitpick_simp]: | 
| 
18000f9d783e
adjust Nitpick's handling of "<" on "rat"s and "reals"
 blanchet parents: 
37213diff
changeset | 212 | "less_frac q r \<longleftrightarrow> num (plus_frac q (uminus_frac r)) < 0" | 
| 
18000f9d783e
adjust Nitpick's handling of "<" on "rat"s and "reals"
 blanchet parents: 
37213diff
changeset | 213 | |
| 33192 | 214 | definition less_eq_frac :: "'a \<Rightarrow> 'a \<Rightarrow> bool" where | 
| 215 | [nitpick_simp]: | |
| 216 | "less_eq_frac q r \<longleftrightarrow> num (plus_frac q (uminus_frac r)) \<le> 0" | |
| 217 | ||
| 218 | definition of_frac :: "'a \<Rightarrow> 'b\<Colon>{inverse,ring_1}" where
 | |
| 219 | "of_frac q \<equiv> of_int (num q) / of_int (denom q)" | |
| 220 | ||
| 221 | use "Tools/Nitpick/kodkod.ML" | |
| 222 | use "Tools/Nitpick/kodkod_sat.ML" | |
| 223 | use "Tools/Nitpick/nitpick_util.ML" | |
| 224 | use "Tools/Nitpick/nitpick_hol.ML" | |
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35311diff
changeset | 225 | use "Tools/Nitpick/nitpick_mono.ML" | 
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34982diff
changeset | 226 | use "Tools/Nitpick/nitpick_preproc.ML" | 
| 33192 | 227 | use "Tools/Nitpick/nitpick_scope.ML" | 
| 228 | use "Tools/Nitpick/nitpick_peephole.ML" | |
| 229 | use "Tools/Nitpick/nitpick_rep.ML" | |
| 230 | use "Tools/Nitpick/nitpick_nut.ML" | |
| 231 | use "Tools/Nitpick/nitpick_kodkod.ML" | |
| 232 | use "Tools/Nitpick/nitpick_model.ML" | |
| 233 | use "Tools/Nitpick/nitpick.ML" | |
| 234 | use "Tools/Nitpick/nitpick_isar.ML" | |
| 235 | use "Tools/Nitpick/nitpick_tests.ML" | |
| 236 | ||
| 33561 
ab01b72715ef
introduced Auto Nitpick in addition to Auto Quickcheck;
 blanchet parents: 
33556diff
changeset | 237 | setup {* Nitpick_Isar.setup *}
 | 
| 
ab01b72715ef
introduced Auto Nitpick in addition to Auto Quickcheck;
 blanchet parents: 
33556diff
changeset | 238 | |
| 39365 
9cab71c20613
remove more clutter related to old "fast_descrs" optimization
 blanchet parents: 
39302diff
changeset | 239 | hide_const (open) unknown is_unknown bisim bisim_iterator_max Quot safe_The | 
| 
9cab71c20613
remove more clutter related to old "fast_descrs" optimization
 blanchet parents: 
39302diff
changeset | 240 | FinFun FunBox PairBox Word refl' wf' wf_wfrec wf_wfrec' wfrec' card' setsum' | 
| 
9cab71c20613
remove more clutter related to old "fast_descrs" optimization
 blanchet parents: 
39302diff
changeset | 241 | fold_graph' nat_gcd nat_lcm int_gcd int_lcm Frac Abs_Frac Rep_Frac zero_frac | 
| 
9cab71c20613
remove more clutter related to old "fast_descrs" optimization
 blanchet parents: 
39302diff
changeset | 242 | one_frac num denom norm_frac frac plus_frac times_frac uminus_frac | 
| 
9cab71c20613
remove more clutter related to old "fast_descrs" optimization
 blanchet parents: 
39302diff
changeset | 243 | number_of_frac inverse_frac less_frac less_eq_frac of_frac | 
| 36176 
3fe7e97ccca8
replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
 wenzelm parents: 
35807diff
changeset | 244 | hide_type (open) bisim_iterator fin_fun fun_box pair_box unsigned_bit signed_bit | 
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35311diff
changeset | 245 | word | 
| 37704 
c6161bee8486
adapt Nitpick to "prod_case" and "*" -> "sum" renaming;
 blanchet parents: 
37397diff
changeset | 246 | hide_fact (open) If_def Ex1_def rtrancl_def rtranclp_def tranclp_def refl'_def | 
| 
c6161bee8486
adapt Nitpick to "prod_case" and "*" -> "sum" renaming;
 blanchet parents: 
37397diff
changeset | 247 | wf'_def wf_wfrec'_def wfrec'_def card'_def setsum'_def fold_graph'_def | 
| 
c6161bee8486
adapt Nitpick to "prod_case" and "*" -> "sum" renaming;
 blanchet parents: 
37397diff
changeset | 248 | The_psimp Eps_psimp unit_case_def nat_case_def list_size_simp nat_gcd_def | 
| 
c6161bee8486
adapt Nitpick to "prod_case" and "*" -> "sum" renaming;
 blanchet parents: 
37397diff
changeset | 249 | nat_lcm_def int_gcd_def int_lcm_def Frac_def zero_frac_def one_frac_def | 
| 
c6161bee8486
adapt Nitpick to "prod_case" and "*" -> "sum" renaming;
 blanchet parents: 
37397diff
changeset | 250 | num_def denom_def norm_frac_def frac_def plus_frac_def times_frac_def | 
| 
c6161bee8486
adapt Nitpick to "prod_case" and "*" -> "sum" renaming;
 blanchet parents: 
37397diff
changeset | 251 | uminus_frac_def number_of_frac_def inverse_frac_def less_frac_def | 
| 
c6161bee8486
adapt Nitpick to "prod_case" and "*" -> "sum" renaming;
 blanchet parents: 
37397diff
changeset | 252 | less_eq_frac_def of_frac_def | 
| 33192 | 253 | |
| 254 | end |