| author | desharna | 
| Tue, 21 Oct 2014 17:23:11 +0200 | |
| changeset 58732 | 854eed6e5aed | 
| parent 54845 | 10df188349b3 | 
| child 58889 | 5b7a9633cfa8 | 
| permissions | -rw-r--r-- | 
| 45035 | 1  | 
(* Title: HOL/Nitpick_Examples/Mini_Nits.thy  | 
2  | 
Author: Jasmin Blanchette, TU Muenchen  | 
|
3  | 
Copyright 2009-2011  | 
|
4  | 
||
5  | 
Examples featuring Minipick, the minimalistic version of Nitpick.  | 
|
6  | 
*)  | 
|
7  | 
||
8  | 
header {* Examples Featuring Minipick, the Minimalistic Version of Nitpick *}
 | 
|
9  | 
||
10  | 
theory Mini_Nits  | 
|
11  | 
imports Main  | 
|
12  | 
begin  | 
|
13  | 
||
| 48891 | 14  | 
ML_file "minipick.ML"  | 
15  | 
||
| 54845 | 16  | 
nitpick_params [verbose, sat_solver = MiniSat_JNI, max_threads = 1,  | 
17  | 
total_consts = smart]  | 
|
| 45035 | 18  | 
|
| 
45062
 
9598cada31b3
first step towards extending Minipick with more translations
 
blanchet 
parents: 
45035 
diff
changeset
 | 
19  | 
ML {*
 | 
| 
 
9598cada31b3
first step towards extending Minipick with more translations
 
blanchet 
parents: 
45035 
diff
changeset
 | 
20  | 
val check = Minipick.minipick @{context}
 | 
| 
 
9598cada31b3
first step towards extending Minipick with more translations
 
blanchet 
parents: 
45035 
diff
changeset
 | 
21  | 
val expect = Minipick.minipick_expect @{context}
 | 
| 
 
9598cada31b3
first step towards extending Minipick with more translations
 
blanchet 
parents: 
45035 
diff
changeset
 | 
22  | 
val none = expect "none"  | 
| 
 
9598cada31b3
first step towards extending Minipick with more translations
 
blanchet 
parents: 
45035 
diff
changeset
 | 
23  | 
val genuine = expect "genuine"  | 
| 
 
9598cada31b3
first step towards extending Minipick with more translations
 
blanchet 
parents: 
45035 
diff
changeset
 | 
24  | 
val unknown = expect "unknown"  | 
| 45035 | 25  | 
*}  | 
26  | 
||
| 51272 | 27  | 
ML_val {* genuine 1 @{prop "x = Not"} *}
 | 
28  | 
ML_val {* none 1 @{prop "\<exists>x. x = Not"} *}
 | 
|
29  | 
ML_val {* none 1 @{prop "\<not> False"} *}
 | 
|
30  | 
ML_val {* genuine 1 @{prop "\<not> True"} *}
 | 
|
31  | 
ML_val {* none 1 @{prop "\<not> \<not> b \<longleftrightarrow> b"} *}
 | 
|
32  | 
ML_val {* none 1 @{prop True} *}
 | 
|
33  | 
ML_val {* genuine 1 @{prop False} *}
 | 
|
34  | 
ML_val {* genuine 1 @{prop "True \<longleftrightarrow> False"} *}
 | 
|
35  | 
ML_val {* none 1 @{prop "True \<longleftrightarrow> \<not> False"} *}
 | 
|
| 54845 | 36  | 
ML_val {* none 4 @{prop "\<forall>x. x = x"} *}
 | 
37  | 
ML_val {* none 4 @{prop "\<exists>x. x = x"} *}
 | 
|
| 51272 | 38  | 
ML_val {* none 1 @{prop "\<forall>x. x = y"} *}
 | 
39  | 
ML_val {* genuine 2 @{prop "\<forall>x. x = y"} *}
 | 
|
40  | 
ML_val {* none 2 @{prop "\<exists>x. x = y"} *}
 | 
|
41  | 
ML_val {* none 2 @{prop "\<forall>x\<Colon>'a \<times> 'a. x = x"} *}
 | 
|
42  | 
ML_val {* none 2 @{prop "\<exists>x\<Colon>'a \<times> 'a. x = y"} *}
 | 
|
43  | 
ML_val {* genuine 2 @{prop "\<forall>x\<Colon>'a \<times> 'a. x = y"} *}
 | 
|
44  | 
ML_val {* none 2 @{prop "\<exists>x\<Colon>'a \<times> 'a. x = y"} *}
 | 
|
45  | 
ML_val {* none 1 @{prop "All = Ex"} *}
 | 
|
46  | 
ML_val {* genuine 2 @{prop "All = Ex"} *}
 | 
|
47  | 
ML_val {* none 1 @{prop "All P = Ex P"} *}
 | 
|
48  | 
ML_val {* genuine 2 @{prop "All P = Ex P"} *}
 | 
|
| 54845 | 49  | 
ML_val {* none 4 @{prop "x = y \<longrightarrow> P x = P y"} *}
 | 
50  | 
ML_val {* none 4 @{prop "(x\<Colon>'a \<times> 'a) = y \<longrightarrow> P x = P y"} *}
 | 
|
| 51272 | 51  | 
ML_val {* none 2 @{prop "(x\<Colon>'a \<times> 'a) = y \<longrightarrow> P x y = P y x"} *}
 | 
| 54845 | 52  | 
ML_val {* none 4 @{prop "\<exists>x\<Colon>'a \<times> 'a. x = y \<longrightarrow> P x = P y"} *}
 | 
| 51272 | 53  | 
ML_val {* none 2 @{prop "(x\<Colon>'a \<Rightarrow> 'a) = y \<longrightarrow> P x = P y"} *}
 | 
54  | 
ML_val {* none 2 @{prop "\<exists>x\<Colon>'a \<Rightarrow> 'a. x = y \<longrightarrow> P x = P y"} *}
 | 
|
55  | 
ML_val {* genuine 1 @{prop "(op =) X = Ex"} *}
 | 
|
56  | 
ML_val {* none 2 @{prop "\<forall>x::'a \<Rightarrow> 'a. x = x"} *}
 | 
|
57  | 
ML_val {* none 1 @{prop "x = y"} *}
 | 
|
58  | 
ML_val {* genuine 1 @{prop "x \<longleftrightarrow> y"} *}
 | 
|
59  | 
ML_val {* genuine 2 @{prop "x = y"} *}
 | 
|
60  | 
ML_val {* genuine 1 @{prop "X \<subseteq> Y"} *}
 | 
|
61  | 
ML_val {* none 1 @{prop "P \<and> Q \<longleftrightarrow> Q \<and> P"} *}
 | 
|
62  | 
ML_val {* none 1 @{prop "P \<and> Q \<longrightarrow> P"} *}
 | 
|
63  | 
ML_val {* none 1 @{prop "P \<or> Q \<longleftrightarrow> Q \<or> P"} *}
 | 
|
64  | 
ML_val {* genuine 1 @{prop "P \<or> Q \<longrightarrow> P"} *}
 | 
|
65  | 
ML_val {* none 1 @{prop "(P \<longrightarrow> Q) \<longleftrightarrow> (\<not> P \<or> Q)"} *}
 | 
|
| 54845 | 66  | 
ML_val {* none 4 @{prop "{a} = {a, a}"} *}
 | 
| 51272 | 67  | 
ML_val {* genuine 2 @{prop "{a} = {a, b}"} *}
 | 
68  | 
ML_val {* genuine 1 @{prop "{a} \<noteq> {a, b}"} *}
 | 
|
| 54845 | 69  | 
ML_val {* none 4 @{prop "{}\<^sup>+ = {}"} *}
 | 
70  | 
ML_val {* none 4 @{prop "UNIV\<^sup>+ = UNIV"} *}
 | 
|
71  | 
ML_val {* none 4 @{prop "(UNIV \<Colon> ('a \<times> 'b) set) - {} = UNIV"} *}
 | 
|
72  | 
ML_val {* none 4 @{prop "{} - (UNIV \<Colon> ('a \<times> 'b) set) = {}"} *}
 | 
|
| 51272 | 73  | 
ML_val {* none 1 @{prop "{(a, b), (b, c)}\<^sup>+ = {(a, b), (a, c), (b, c)}"} *}
 | 
74  | 
ML_val {* genuine 2 @{prop "{(a, b), (b, c)}\<^sup>+ = {(a, b), (a, c), (b, c)}"} *}
 | 
|
| 54845 | 75  | 
ML_val {* none 4 @{prop "a \<noteq> c \<Longrightarrow> {(a, b), (b, c)}\<^sup>+ = {(a, b), (a, c), (b, c)}"} *}
 | 
76  | 
ML_val {* none 4 @{prop "A \<union> B = {x. x \<in> A \<or> x \<in> B}"} *}
 | 
|
77  | 
ML_val {* none 4 @{prop "A \<inter> B = {x. x \<in> A \<and> x \<in> B}"} *}
 | 
|
78  | 
ML_val {* none 4 @{prop "A - B = (\<lambda>x. A x \<and> \<not> B x)"} *}
 | 
|
79  | 
ML_val {* none 4 @{prop "\<exists>a b. (a, b) = (b, a)"} *}
 | 
|
| 51272 | 80  | 
ML_val {* genuine 2 @{prop "(a, b) = (b, a)"} *}
 | 
81  | 
ML_val {* genuine 2 @{prop "(a, b) \<noteq> (b, a)"} *}
 | 
|
| 54845 | 82  | 
ML_val {* none 4 @{prop "\<exists>a b\<Colon>'a \<times> 'a. (a, b) = (b, a)"} *}
 | 
| 51272 | 83  | 
ML_val {* genuine 2 @{prop "(a\<Colon>'a \<times> 'a, b) = (b, a)"} *}
 | 
| 54845 | 84  | 
ML_val {* none 4 @{prop "\<exists>a b\<Colon>'a \<times> 'a \<times> 'a. (a, b) = (b, a)"} *}
 | 
| 51272 | 85  | 
ML_val {* genuine 2 @{prop "(a\<Colon>'a \<times> 'a \<times> 'a, b) \<noteq> (b, a)"} *}
 | 
| 54845 | 86  | 
ML_val {* none 4 @{prop "\<exists>a b\<Colon>'a \<Rightarrow> 'a. (a, b) = (b, a)"} *}
 | 
| 51272 | 87  | 
ML_val {* genuine 1 @{prop "(a\<Colon>'a \<Rightarrow> 'a, b) \<noteq> (b, a)"} *}
 | 
| 54845 | 88  | 
ML_val {* none 4 @{prop "fst (a, b) = a"} *}
 | 
| 51272 | 89  | 
ML_val {* none 1 @{prop "fst (a, b) = b"} *}
 | 
90  | 
ML_val {* genuine 2 @{prop "fst (a, b) = b"} *}
 | 
|
91  | 
ML_val {* genuine 2 @{prop "fst (a, b) \<noteq> b"} *}
 | 
|
92  | 
ML_val {* genuine 2 @{prop "f ((x, z), y) = (x, z)"} *}
 | 
|
93  | 
ML_val {* none 2 @{prop "(ALL x. f x = fst x) \<longrightarrow> f ((x, z), y) = (x, z)"} *}
 | 
|
| 54845 | 94  | 
ML_val {* none 4 @{prop "snd (a, b) = b"} *}
 | 
| 51272 | 95  | 
ML_val {* none 1 @{prop "snd (a, b) = a"} *}
 | 
96  | 
ML_val {* genuine 2 @{prop "snd (a, b) = a"} *}
 | 
|
97  | 
ML_val {* genuine 2 @{prop "snd (a, b) \<noteq> a"} *}
 | 
|
98  | 
ML_val {* genuine 1 @{prop P} *}
 | 
|
99  | 
ML_val {* genuine 1 @{prop "(\<lambda>x. P) a"} *}
 | 
|
100  | 
ML_val {* genuine 1 @{prop "(\<lambda>x y z. P y x z) a b c"} *}
 | 
|
| 54845 | 101  | 
ML_val {* none 4 @{prop "\<exists>f. f = (\<lambda>x. x) \<and> f y = y"} *}
 | 
| 51272 | 102  | 
ML_val {* genuine 1 @{prop "\<exists>f. f p \<noteq> p \<and> (\<forall>a b. f (a, b) = (a, b))"} *}
 | 
103  | 
ML_val {* none 2 @{prop "\<exists>f. \<forall>a b. f (a, b) = (a, b)"} *}
 | 
|
104  | 
ML_val {* none 3 @{prop "f = (\<lambda>a b. (b, a)) \<longrightarrow> f x y = (y, x)"} *}
 | 
|
105  | 
ML_val {* genuine 2 @{prop "f = (\<lambda>a b. (b, a)) \<longrightarrow> f x y = (x, y)"} *}
 | 
|
| 54845 | 106  | 
ML_val {* none 4 @{prop "f = (\<lambda>x. f x)"} *}
 | 
107  | 
ML_val {* none 4 @{prop "f = (\<lambda>x. f x\<Colon>'a \<Rightarrow> bool)"} *}
 | 
|
108  | 
ML_val {* none 4 @{prop "f = (\<lambda>x y. f x y)"} *}
 | 
|
109  | 
ML_val {* none 4 @{prop "f = (\<lambda>x y. f x y\<Colon>'a \<Rightarrow> bool)"} *}
 | 
|
| 45035 | 110  | 
|
111  | 
end  |