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