| author | nipkow | 
| Sun, 01 Jan 2012 18:12:11 +0100 | |
| changeset 46067 | a03bf644cb27 | 
| parent 45970 | b6d0cff57d96 | 
| child 46319 | c248e4f1be74 | 
| 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")
 | |
| 42064 
f4e53c8630c0
added first-order TPTP version of Nitpick to Isabelle, so that its sources stay in sync with Isabelle and it is easier to install new versions for SystemOnTPTP and CASC -- the tool is called "isabelle nitrox" but is deliberately omitted from the tool list unless the component is explicitly enabled, to avoid clutter
 blanchet parents: 
41797diff
changeset | 27 |      ("Tools/Nitpick/nitrox.ML")
 | 
| 33192 | 28 | begin | 
| 29 | ||
| 42064 
f4e53c8630c0
added first-order TPTP version of Nitpick to Isabelle, so that its sources stay in sync with Isabelle and it is easier to install new versions for SystemOnTPTP and CASC -- the tool is called "isabelle nitrox" but is deliberately omitted from the tool list unless the component is explicitly enabled, to avoid clutter
 blanchet parents: 
41797diff
changeset | 30 | typedecl iota (* for Nitrox *) | 
| 33192 | 31 | typedecl bisim_iterator | 
| 32 | ||
| 33 | axiomatization unknown :: 'a | |
| 34938 | 34 | and is_unknown :: "'a \<Rightarrow> bool" | 
| 33192 | 35 | and bisim :: "bisim_iterator \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> bool" | 
| 36 | and bisim_iterator_max :: bisim_iterator | |
| 34938 | 37 | 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 | 38 |            and safe_The :: "('a \<Rightarrow> bool) \<Rightarrow> 'a"
 | 
| 33192 | 39 | |
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35311diff
changeset | 40 | datatype ('a, 'b) fun_box = FunBox "('a \<Rightarrow> 'b)"
 | 
| 33192 | 41 | datatype ('a, 'b) pair_box = PairBox 'a 'b
 | 
| 34124 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 blanchet parents: 
33747diff
changeset | 42 | |
| 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 blanchet parents: 
33747diff
changeset | 43 | typedecl unsigned_bit | 
| 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 blanchet parents: 
33747diff
changeset | 44 | typedecl signed_bit | 
| 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 blanchet parents: 
33747diff
changeset | 45 | |
| 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 blanchet parents: 
33747diff
changeset | 46 | datatype 'a word = Word "('a set)"
 | 
| 33192 | 47 | |
| 48 | text {*
 | |
| 49 | Alternative definitions. | |
| 50 | *} | |
| 51 | ||
| 41797 | 52 | lemma Ex1_unfold [nitpick_unfold, no_atp]: | 
| 45970 
b6d0cff57d96
adjusted to set/pred distinction by means of type constructor `set`
 haftmann parents: 
45140diff
changeset | 53 | "Ex1 P \<equiv> \<exists>x. {x. P x} = {x}"
 | 
| 33192 | 54 | 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 | 55 | apply (simp add: Ex1_def set_eq_iff) | 
| 33192 | 56 | apply (rule iffI) | 
| 57 | apply (erule exE) | |
| 58 | apply (erule conjE) | |
| 59 | apply (rule_tac x = x in exI) | |
| 60 | apply (rule allI) | |
| 61 | apply (rename_tac y) | |
| 62 | apply (erule_tac x = y in allE) | |
| 45970 
b6d0cff57d96
adjusted to set/pred distinction by means of type constructor `set`
 haftmann parents: 
45140diff
changeset | 63 | by auto | 
| 33192 | 64 | |
| 41797 | 65 | lemma rtrancl_unfold [nitpick_unfold, no_atp]: "r\<^sup>* \<equiv> (r\<^sup>+)\<^sup>=" | 
| 45140 | 66 | by (simp only: rtrancl_trancl_reflcl) | 
| 33192 | 67 | |
| 41797 | 68 | lemma rtranclp_unfold [nitpick_unfold, no_atp]: | 
| 33192 | 69 | "rtranclp r a b \<equiv> (a = b \<or> tranclp r a b)" | 
| 70 | by (rule eq_reflection) (auto dest: rtranclpD) | |
| 71 | ||
| 41797 | 72 | lemma tranclp_unfold [nitpick_unfold, no_atp]: | 
| 45970 
b6d0cff57d96
adjusted to set/pred distinction by means of type constructor `set`
 haftmann parents: 
45140diff
changeset | 73 | "tranclp r a b \<equiv> (a, b) \<in> trancl {(x, y). r x y}"
 | 
| 
b6d0cff57d96
adjusted to set/pred distinction by means of type constructor `set`
 haftmann parents: 
45140diff
changeset | 74 | by (simp add: trancl_def) | 
| 33192 | 75 | |
| 41046 | 76 | definition prod :: "'a set \<Rightarrow> 'b set \<Rightarrow> ('a \<times> 'b) set" where
 | 
| 77 | "prod A B = {(a, b). a \<in> A \<and> b \<in> B}"
 | |
| 78 | ||
| 44278 
1220ecb81e8f
observe distinction between sets and predicates more properly
 haftmann parents: 
44016diff
changeset | 79 | definition refl' :: "('a \<times> 'a) set \<Rightarrow> bool" where
 | 
| 33192 | 80 | "refl' r \<equiv> \<forall>x. (x, x) \<in> r" | 
| 81 | ||
| 44278 
1220ecb81e8f
observe distinction between sets and predicates more properly
 haftmann parents: 
44016diff
changeset | 82 | definition wf' :: "('a \<times> 'a) set \<Rightarrow> bool" where
 | 
| 33192 | 83 | "wf' r \<equiv> acyclic r \<and> (finite r \<or> unknown)" | 
| 84 | ||
| 44278 
1220ecb81e8f
observe distinction between sets and predicates more properly
 haftmann parents: 
44016diff
changeset | 85 | definition card' :: "'a set \<Rightarrow> nat" where | 
| 39365 
9cab71c20613
remove more clutter related to old "fast_descrs" optimization
 blanchet parents: 
39302diff
changeset | 86 | "card' A \<equiv> if finite A then length (SOME xs. set xs = A \<and> distinct xs) else 0" | 
| 33192 | 87 | |
| 44278 
1220ecb81e8f
observe distinction between sets and predicates more properly
 haftmann parents: 
44016diff
changeset | 88 | definition setsum' :: "('a \<Rightarrow> 'b\<Colon>comm_monoid_add) \<Rightarrow> 'a set \<Rightarrow> 'b" where
 | 
| 39365 
9cab71c20613
remove more clutter related to old "fast_descrs" optimization
 blanchet parents: 
39302diff
changeset | 89 | "setsum' f A \<equiv> if finite A then listsum (map f (SOME xs. set xs = A \<and> distinct xs)) else 0" | 
| 33192 | 90 | |
| 44278 
1220ecb81e8f
observe distinction between sets and predicates more properly
 haftmann parents: 
44016diff
changeset | 91 | inductive fold_graph' :: "('a \<Rightarrow> 'b \<Rightarrow> 'b) \<Rightarrow> 'b \<Rightarrow> 'a set \<Rightarrow> 'b \<Rightarrow> bool" where
 | 
| 33192 | 92 | "fold_graph' f z {} z" |
 | 
| 93 | "\<lbrakk>x \<in> A; fold_graph' f z (A - {x}) y\<rbrakk> \<Longrightarrow> fold_graph' f z A (f x y)"
 | |
| 94 | ||
| 95 | text {*
 | |
| 96 | The following lemmas are not strictly necessary but they help the | |
| 97 | \textit{special\_level} optimization.
 | |
| 98 | *} | |
| 99 | ||
| 36918 | 100 | lemma The_psimp [nitpick_psimp, no_atp]: | 
| 45970 
b6d0cff57d96
adjusted to set/pred distinction by means of type constructor `set`
 haftmann parents: 
45140diff
changeset | 101 | "P = (op =) x \<Longrightarrow> The P = x" | 
| 
b6d0cff57d96
adjusted to set/pred distinction by means of type constructor `set`
 haftmann parents: 
45140diff
changeset | 102 | by auto | 
| 33192 | 103 | |
| 36918 | 104 | lemma Eps_psimp [nitpick_psimp, no_atp]: | 
| 33192 | 105 | "\<lbrakk>P x; \<not> P y; Eps P = y\<rbrakk> \<Longrightarrow> Eps P = x" | 
| 106 | apply (case_tac "P (Eps P)") | |
| 107 | apply auto | |
| 108 | apply (erule contrapos_np) | |
| 109 | by (rule someI) | |
| 110 | ||
| 41797 | 111 | lemma unit_case_unfold [nitpick_unfold, no_atp]: | 
| 33192 | 112 | "unit_case x u \<equiv> x" | 
| 113 | apply (subgoal_tac "u = ()") | |
| 114 | apply (simp only: unit.cases) | |
| 115 | by simp | |
| 116 | ||
| 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 | 117 | 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 | 118 | |
| 41797 | 119 | lemma nat_case_unfold [nitpick_unfold, no_atp]: | 
| 33192 | 120 | "nat_case x f n \<equiv> if n = 0 then x else f (n - 1)" | 
| 121 | apply (rule eq_reflection) | |
| 122 | by (case_tac n) auto | |
| 123 | ||
| 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 | 124 | 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 | 125 | |
| 36918 | 126 | lemma list_size_simp [nitpick_simp, no_atp]: | 
| 33192 | 127 | "list_size f xs = (if xs = [] then 0 | 
| 128 | else Suc (f (hd xs) + list_size f (tl xs)))" | |
| 129 | "size xs = (if xs = [] then 0 else Suc (size (tl xs)))" | |
| 130 | by (case_tac xs) auto | |
| 131 | ||
| 132 | text {*
 | |
| 133 | Auxiliary definitions used to provide an alternative representation for | |
| 134 | @{text rat} and @{text real}.
 | |
| 135 | *} | |
| 136 | ||
| 137 | function nat_gcd :: "nat \<Rightarrow> nat \<Rightarrow> nat" where | |
| 138 | [simp del]: "nat_gcd x y = (if y = 0 then x else nat_gcd y (x mod y))" | |
| 139 | by auto | |
| 140 | termination | |
| 141 | apply (relation "measure (\<lambda>(x, y). x + y + (if y > x then 1 else 0))") | |
| 142 | apply auto | |
| 143 | apply (metis mod_less_divisor xt1(9)) | |
| 144 | by (metis mod_mod_trivial mod_self nat_neq_iff xt1(10)) | |
| 145 | ||
| 146 | definition nat_lcm :: "nat \<Rightarrow> nat \<Rightarrow> nat" where | |
| 147 | "nat_lcm x y = x * y div (nat_gcd x y)" | |
| 148 | ||
| 149 | definition int_gcd :: "int \<Rightarrow> int \<Rightarrow> int" where | |
| 150 | "int_gcd x y = int (nat_gcd (nat (abs x)) (nat (abs y)))" | |
| 151 | ||
| 152 | definition int_lcm :: "int \<Rightarrow> int \<Rightarrow> int" where | |
| 153 | "int_lcm x y = int (nat_lcm (nat (abs x)) (nat (abs y)))" | |
| 154 | ||
| 155 | definition Frac :: "int \<times> int \<Rightarrow> bool" where | |
| 156 | "Frac \<equiv> \<lambda>(a, b). b > 0 \<and> int_gcd a b = 1" | |
| 157 | ||
| 158 | axiomatization Abs_Frac :: "int \<times> int \<Rightarrow> 'a" | |
| 159 | and Rep_Frac :: "'a \<Rightarrow> int \<times> int" | |
| 160 | ||
| 161 | definition zero_frac :: 'a where | |
| 162 | "zero_frac \<equiv> Abs_Frac (0, 1)" | |
| 163 | ||
| 164 | definition one_frac :: 'a where | |
| 165 | "one_frac \<equiv> Abs_Frac (1, 1)" | |
| 166 | ||
| 167 | definition num :: "'a \<Rightarrow> int" where | |
| 168 | "num \<equiv> fst o Rep_Frac" | |
| 169 | ||
| 170 | definition denom :: "'a \<Rightarrow> int" where | |
| 171 | "denom \<equiv> snd o Rep_Frac" | |
| 172 | ||
| 173 | function norm_frac :: "int \<Rightarrow> int \<Rightarrow> int \<times> int" where | |
| 174 | [simp del]: "norm_frac a b = (if b < 0 then norm_frac (- a) (- b) | |
| 175 | else if a = 0 \<or> b = 0 then (0, 1) | |
| 176 | else let c = int_gcd a b in (a div c, b div c))" | |
| 177 | by pat_completeness auto | |
| 178 | termination by (relation "measure (\<lambda>(_, b). if b < 0 then 1 else 0)") auto | |
| 179 | ||
| 180 | definition frac :: "int \<Rightarrow> int \<Rightarrow> 'a" where | |
| 181 | "frac a b \<equiv> Abs_Frac (norm_frac a b)" | |
| 182 | ||
| 183 | definition plus_frac :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" where | |
| 184 | [nitpick_simp]: | |
| 185 | "plus_frac q r = (let d = int_lcm (denom q) (denom r) in | |
| 186 | frac (num q * (d div denom q) + num r * (d div denom r)) d)" | |
| 187 | ||
| 188 | definition times_frac :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" where | |
| 189 | [nitpick_simp]: | |
| 190 | "times_frac q r = frac (num q * num r) (denom q * denom r)" | |
| 191 | ||
| 192 | definition uminus_frac :: "'a \<Rightarrow> 'a" where | |
| 193 | "uminus_frac q \<equiv> Abs_Frac (- num q, denom q)" | |
| 194 | ||
| 195 | definition number_of_frac :: "int \<Rightarrow> 'a" where | |
| 196 | "number_of_frac n \<equiv> Abs_Frac (n, 1)" | |
| 197 | ||
| 198 | definition inverse_frac :: "'a \<Rightarrow> 'a" where | |
| 199 | "inverse_frac q \<equiv> frac (denom q) (num q)" | |
| 200 | ||
| 37397 
18000f9d783e
adjust Nitpick's handling of "<" on "rat"s and "reals"
 blanchet parents: 
37213diff
changeset | 201 | definition less_frac :: "'a \<Rightarrow> 'a \<Rightarrow> bool" where | 
| 
18000f9d783e
adjust Nitpick's handling of "<" on "rat"s and "reals"
 blanchet parents: 
37213diff
changeset | 202 | [nitpick_simp]: | 
| 
18000f9d783e
adjust Nitpick's handling of "<" on "rat"s and "reals"
 blanchet parents: 
37213diff
changeset | 203 | "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 | 204 | |
| 33192 | 205 | definition less_eq_frac :: "'a \<Rightarrow> 'a \<Rightarrow> bool" where | 
| 206 | [nitpick_simp]: | |
| 207 | "less_eq_frac q r \<longleftrightarrow> num (plus_frac q (uminus_frac r)) \<le> 0" | |
| 208 | ||
| 209 | definition of_frac :: "'a \<Rightarrow> 'b\<Colon>{inverse,ring_1}" where
 | |
| 210 | "of_frac q \<equiv> of_int (num q) / of_int (denom q)" | |
| 211 | ||
| 212 | use "Tools/Nitpick/kodkod.ML" | |
| 213 | use "Tools/Nitpick/kodkod_sat.ML" | |
| 214 | use "Tools/Nitpick/nitpick_util.ML" | |
| 215 | use "Tools/Nitpick/nitpick_hol.ML" | |
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35311diff
changeset | 216 | use "Tools/Nitpick/nitpick_mono.ML" | 
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34982diff
changeset | 217 | use "Tools/Nitpick/nitpick_preproc.ML" | 
| 33192 | 218 | use "Tools/Nitpick/nitpick_scope.ML" | 
| 219 | use "Tools/Nitpick/nitpick_peephole.ML" | |
| 220 | use "Tools/Nitpick/nitpick_rep.ML" | |
| 221 | use "Tools/Nitpick/nitpick_nut.ML" | |
| 222 | use "Tools/Nitpick/nitpick_kodkod.ML" | |
| 223 | use "Tools/Nitpick/nitpick_model.ML" | |
| 224 | use "Tools/Nitpick/nitpick.ML" | |
| 225 | use "Tools/Nitpick/nitpick_isar.ML" | |
| 226 | use "Tools/Nitpick/nitpick_tests.ML" | |
| 42064 
f4e53c8630c0
added first-order TPTP version of Nitpick to Isabelle, so that its sources stay in sync with Isabelle and it is easier to install new versions for SystemOnTPTP and CASC -- the tool is called "isabelle nitrox" but is deliberately omitted from the tool list unless the component is explicitly enabled, to avoid clutter
 blanchet parents: 
41797diff
changeset | 227 | use "Tools/Nitpick/nitrox.ML" | 
| 33192 | 228 | |
| 44016 
51184010c609
replaced Nitpick's hardwired basic_ersatz_table by context data
 krauss parents: 
44013diff
changeset | 229 | setup {*
 | 
| 
51184010c609
replaced Nitpick's hardwired basic_ersatz_table by context data
 krauss parents: 
44013diff
changeset | 230 | Nitpick_Isar.setup #> | 
| 
51184010c609
replaced Nitpick's hardwired basic_ersatz_table by context data
 krauss parents: 
44013diff
changeset | 231 | Nitpick_HOL.register_ersatz_global | 
| 
51184010c609
replaced Nitpick's hardwired basic_ersatz_table by context data
 krauss parents: 
44013diff
changeset | 232 |     [(@{const_name card}, @{const_name card'}),
 | 
| 
51184010c609
replaced Nitpick's hardwired basic_ersatz_table by context data
 krauss parents: 
44013diff
changeset | 233 |      (@{const_name setsum}, @{const_name setsum'}),
 | 
| 
51184010c609
replaced Nitpick's hardwired basic_ersatz_table by context data
 krauss parents: 
44013diff
changeset | 234 |      (@{const_name fold_graph}, @{const_name fold_graph'}),
 | 
| 
51184010c609
replaced Nitpick's hardwired basic_ersatz_table by context data
 krauss parents: 
44013diff
changeset | 235 |      (@{const_name wf}, @{const_name wf'})]
 | 
| 
51184010c609
replaced Nitpick's hardwired basic_ersatz_table by context data
 krauss parents: 
44013diff
changeset | 236 | *} | 
| 33561 
ab01b72715ef
introduced Auto Nitpick in addition to Auto Quickcheck;
 blanchet parents: 
33556diff
changeset | 237 | |
| 39365 
9cab71c20613
remove more clutter related to old "fast_descrs" optimization
 blanchet parents: 
39302diff
changeset | 238 | hide_const (open) unknown is_unknown bisim bisim_iterator_max Quot safe_The | 
| 44013 
5cfc1c36ae97
moved recdef package to HOL/Library/Old_Recdef.thy
 krauss parents: 
42064diff
changeset | 239 | FunBox PairBox Word prod refl' wf' card' setsum' | 
| 41052 
3db267a01c1d
remove the "fin_fun" optimization in Nitpick -- it was always a hack and didn't help much
 blanchet parents: 
41046diff
changeset | 240 | fold_graph' nat_gcd nat_lcm int_gcd int_lcm Frac Abs_Frac Rep_Frac zero_frac | 
| 
3db267a01c1d
remove the "fin_fun" optimization in Nitpick -- it was always a hack and didn't help much
 blanchet parents: 
41046diff
changeset | 241 | one_frac num denom norm_frac frac plus_frac times_frac uminus_frac | 
| 39365 
9cab71c20613
remove more clutter related to old "fast_descrs" optimization
 blanchet parents: 
39302diff
changeset | 242 | number_of_frac inverse_frac less_frac less_eq_frac of_frac | 
| 42064 
f4e53c8630c0
added first-order TPTP version of Nitpick to Isabelle, so that its sources stay in sync with Isabelle and it is easier to install new versions for SystemOnTPTP and CASC -- the tool is called "isabelle nitrox" but is deliberately omitted from the tool list unless the component is explicitly enabled, to avoid clutter
 blanchet parents: 
41797diff
changeset | 243 | hide_type (open) iota bisim_iterator fun_box pair_box unsigned_bit signed_bit | 
| 
f4e53c8630c0
added first-order TPTP version of Nitpick to Isabelle, so that its sources stay in sync with Isabelle and it is easier to install new versions for SystemOnTPTP and CASC -- the tool is called "isabelle nitrox" but is deliberately omitted from the tool list unless the component is explicitly enabled, to avoid clutter
 blanchet parents: 
41797diff
changeset | 244 | word | 
| 41797 | 245 | hide_fact (open) Ex1_unfold rtrancl_unfold rtranclp_unfold tranclp_unfold | 
| 44013 
5cfc1c36ae97
moved recdef package to HOL/Library/Old_Recdef.thy
 krauss parents: 
42064diff
changeset | 246 | prod_def refl'_def wf'_def card'_def setsum'_def | 
| 41797 | 247 | fold_graph'_def The_psimp Eps_psimp unit_case_unfold nat_case_unfold | 
| 41046 | 248 | list_size_simp nat_gcd_def nat_lcm_def int_gcd_def int_lcm_def Frac_def | 
| 249 | zero_frac_def one_frac_def num_def denom_def norm_frac_def frac_def | |
| 250 | plus_frac_def times_frac_def uminus_frac_def number_of_frac_def | |
| 251 | inverse_frac_def less_frac_def less_eq_frac_def of_frac_def | |
| 33192 | 252 | |
| 253 | end |