| author | wenzelm | 
| Tue, 06 Dec 2022 16:52:35 +0100 | |
| changeset 76583 | c9f897077089 | 
| parent 69593 | 3dda49e08b9d | 
| child 79799 | 2746dfc9ceae | 
| permissions | -rw-r--r-- | 
| 33982 | 1  | 
(* Title: HOL/Tools/Nitpick/nitpick_util.ML  | 
| 33192 | 2  | 
Author: Jasmin Blanchette, TU Muenchen  | 
| 
34982
 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 
blanchet 
parents: 
34936 
diff
changeset
 | 
3  | 
Copyright 2008, 2009, 2010  | 
| 33192 | 4  | 
|
5  | 
General-purpose functions used by the Nitpick modules.  | 
|
6  | 
*)  | 
|
7  | 
||
| 
33705
 
947184dc75c9
removed a few global names in Nitpick (styp, nat_less, pairf)
 
blanchet 
parents: 
33232 
diff
changeset
 | 
8  | 
signature NITPICK_UTIL =  | 
| 33192 | 9  | 
sig  | 
10  | 
datatype polarity = Pos | Neg | Neut  | 
|
11  | 
||
12  | 
exception ARG of string * string  | 
|
13  | 
exception BAD of string * string  | 
|
| 
34124
 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 
blanchet 
parents: 
34039 
diff
changeset
 | 
14  | 
exception TOO_SMALL of string * string  | 
| 
 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 
blanchet 
parents: 
34039 
diff
changeset
 | 
15  | 
exception TOO_LARGE of string * string  | 
| 33192 | 16  | 
exception NOT_SUPPORTED of string  | 
17  | 
exception SAME of unit  | 
|
18  | 
||
19  | 
val nitpick_prefix : string  | 
|
20  | 
  val curry3 : ('a * 'b * 'c -> 'd) -> 'a -> 'b -> 'c -> 'd
 | 
|
| 
33705
 
947184dc75c9
removed a few global names in Nitpick (styp, nat_less, pairf)
 
blanchet 
parents: 
33232 
diff
changeset
 | 
21  | 
  val pairf : ('a -> 'b) -> ('a -> 'c) -> 'a -> 'b * 'c
 | 
| 
35385
 
29f81babefd7
improved precision of infinite "shallow" datatypes in Nitpick;
 
blanchet 
parents: 
35280 
diff
changeset
 | 
22  | 
val pair_from_fun : (bool -> 'a) -> 'a * 'a  | 
| 
 
29f81babefd7
improved precision of infinite "shallow" datatypes in Nitpick;
 
blanchet 
parents: 
35280 
diff
changeset
 | 
23  | 
val fun_from_pair : 'a * 'a -> bool -> 'a  | 
| 
 
29f81babefd7
improved precision of infinite "shallow" datatypes in Nitpick;
 
blanchet 
parents: 
35280 
diff
changeset
 | 
24  | 
val int_from_bool : bool -> int  | 
| 
33705
 
947184dc75c9
removed a few global names in Nitpick (styp, nat_less, pairf)
 
blanchet 
parents: 
33232 
diff
changeset
 | 
25  | 
val nat_minus : int -> int -> int  | 
| 33192 | 26  | 
val reasonable_power : int -> int -> int  | 
27  | 
val exact_log : int -> int -> int  | 
|
28  | 
val exact_root : int -> int -> int  | 
|
29  | 
val offset_list : int list -> int list  | 
|
30  | 
val index_seq : int -> int -> int list  | 
|
31  | 
val filter_indices : int list -> 'a list -> 'a list  | 
|
32  | 
val filter_out_indices : int list -> 'a list -> 'a list  | 
|
33  | 
  val fold1 : ('a -> 'a -> 'a) -> 'a list -> 'a
 | 
|
34  | 
val replicate_list : int -> 'a list -> 'a list  | 
|
35  | 
val n_fold_cartesian_product : 'a list list -> 'a list list  | 
|
36  | 
  val all_distinct_unordered_pairs_of : ''a list -> (''a * ''a) list
 | 
|
37  | 
val nth_combination : (int * int) list -> int -> int list  | 
|
38  | 
val all_combinations : (int * int) list -> int list list  | 
|
39  | 
val all_permutations : 'a list -> 'a list list  | 
|
| 48323 | 40  | 
val chunk_list : int -> 'a list -> 'a list list  | 
| 33192 | 41  | 
val chunk_list_unevenly : int list -> 'a list -> 'a list list  | 
42  | 
val double_lookup :  | 
|
43  | 
    ('a * 'a -> bool) -> ('a option * 'b) list -> 'a -> 'b option
 | 
|
44  | 
val triple_lookup :  | 
|
45  | 
    (''a * ''a -> bool) -> (''a option * 'b) list -> ''a -> 'b option
 | 
|
46  | 
val is_substring_of : string -> string -> bool  | 
|
47  | 
val plural_s : int -> string  | 
|
48  | 
val plural_s_for_list : 'a list -> string  | 
|
| 
36380
 
1e8fcaccb3e8
stop referring to Sledgehammer_Util stuff all over Nitpick code; instead, redeclare any needed function in Nitpick_Util as synonym for the Sledgehammer_Util function of the same name
 
blanchet 
parents: 
35964 
diff
changeset
 | 
49  | 
val serial_commas : string -> string list -> string list  | 
| 38188 | 50  | 
val pretty_serial_commas : string -> Pretty.T list -> Pretty.T list  | 
| 
36380
 
1e8fcaccb3e8
stop referring to Sledgehammer_Util stuff all over Nitpick code; instead, redeclare any needed function in Nitpick_Util as synonym for the Sledgehammer_Util function of the same name
 
blanchet 
parents: 
35964 
diff
changeset
 | 
51  | 
val parse_bool_option : bool -> string -> string -> bool option  | 
| 
54816
 
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
 
blanchet 
parents: 
54696 
diff
changeset
 | 
52  | 
val parse_time : string -> string -> Time.time  | 
| 
52031
 
9a9238342963
tuning -- renamed '_from_' to '_of_' in Sledgehammer
 
blanchet 
parents: 
50557 
diff
changeset
 | 
53  | 
val string_of_time : Time.time -> string  | 
| 
38652
 
e063be321438
perform eta-expansion of quantifier bodies in Sledgehammer translation when needed + transform elim rules later;
 
blanchet 
parents: 
38240 
diff
changeset
 | 
54  | 
val nat_subscript : int -> string  | 
| 33192 | 55  | 
val flip_polarity : polarity -> polarity  | 
56  | 
val prop_T : typ  | 
|
57  | 
val bool_T : typ  | 
|
58  | 
val nat_T : typ  | 
|
59  | 
val int_T : typ  | 
|
| 
37260
 
dde817e6dfb1
added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
 
blanchet 
parents: 
36555 
diff
changeset
 | 
60  | 
val simple_string_of_typ : typ -> string  | 
| 55080 | 61  | 
val num_binder_types : typ -> int  | 
| 42697 | 62  | 
val varify_type : Proof.context -> typ -> typ  | 
63  | 
val instantiate_type : theory -> typ -> typ -> typ -> typ  | 
|
64  | 
val varify_and_instantiate_type : Proof.context -> typ -> typ -> typ -> typ  | 
|
| 
53806
 
de4653037e0d
don't generalize w.r.t. wrong context -- better overgeneralize (since the instantiation phase will compensate for it)
 
blanchet 
parents: 
53802 
diff
changeset
 | 
65  | 
val varify_and_instantiate_type_global : theory -> typ -> typ -> typ -> typ  | 
| 
37260
 
dde817e6dfb1
added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
 
blanchet 
parents: 
36555 
diff
changeset
 | 
66  | 
val is_of_class_const : theory -> string * typ -> bool  | 
| 
 
dde817e6dfb1
added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
 
blanchet 
parents: 
36555 
diff
changeset
 | 
67  | 
val get_class_def : theory -> string -> (string * term) option  | 
| 
 
dde817e6dfb1
added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
 
blanchet 
parents: 
36555 
diff
changeset
 | 
68  | 
val specialize_type : theory -> string * typ -> term -> term  | 
| 
38652
 
e063be321438
perform eta-expansion of quantifier bodies in Sledgehammer translation when needed + transform elim rules later;
 
blanchet 
parents: 
38240 
diff
changeset
 | 
69  | 
val eta_expand : typ list -> term -> int -> term  | 
| 
54816
 
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
 
blanchet 
parents: 
54696 
diff
changeset
 | 
70  | 
val DETERM_TIMEOUT : Time.time -> tactic -> tactic  | 
| 33192 | 71  | 
val indent_size : int  | 
| 
58928
 
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
 
wenzelm 
parents: 
58634 
diff
changeset
 | 
72  | 
val pretty_maybe_quote : Keyword.keywords -> Pretty.T -> Pretty.T  | 
| 
43827
 
62d64709af3b
added option to control which lambda translation to use (for experiments)
 
blanchet 
parents: 
43085 
diff
changeset
 | 
73  | 
val hash_term : term -> int  | 
| 
53815
 
e8aa538e959e
encode goal digest in spying log (to detect duplicates)
 
blanchet 
parents: 
53806 
diff
changeset
 | 
74  | 
val spying : bool -> (unit -> Proof.state * int * string) -> unit  | 
| 
35866
 
513074557e06
move the Sledgehammer Isar commands together into one file;
 
blanchet 
parents: 
35807 
diff
changeset
 | 
75  | 
end;  | 
| 33192 | 76  | 
|
| 
33232
 
f93390060bbe
internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
 
blanchet 
parents: 
33192 
diff
changeset
 | 
77  | 
structure Nitpick_Util : NITPICK_UTIL =  | 
| 33192 | 78  | 
struct  | 
79  | 
||
80  | 
datatype polarity = Pos | Neg | Neut  | 
|
81  | 
||
82  | 
exception ARG of string * string  | 
|
83  | 
exception BAD of string * string  | 
|
| 
34124
 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 
blanchet 
parents: 
34039 
diff
changeset
 | 
84  | 
exception TOO_SMALL of string * string  | 
| 
 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 
blanchet 
parents: 
34039 
diff
changeset
 | 
85  | 
exception TOO_LARGE of string * string  | 
| 33192 | 86  | 
exception NOT_SUPPORTED of string  | 
87  | 
exception SAME of unit  | 
|
88  | 
||
| 
46711
 
f745bcc4a1e5
more explicit Long_Name operations (NB: analyzing qualifiers is inherently fragile);
 
wenzelm 
parents: 
45896 
diff
changeset
 | 
89  | 
val nitpick_prefix = "Nitpick" ^ Long_Name.separator  | 
| 33192 | 90  | 
|
| 53802 | 91  | 
val timestamp = ATP_Util.timestamp  | 
92  | 
||
| 33192 | 93  | 
fun curry3 f = fn x => fn y => fn z => f (x, y, z)  | 
94  | 
||
| 
33705
 
947184dc75c9
removed a few global names in Nitpick (styp, nat_less, pairf)
 
blanchet 
parents: 
33232 
diff
changeset
 | 
95  | 
fun pairf f g x = (f x, g x)  | 
| 33192 | 96  | 
|
| 
35385
 
29f81babefd7
improved precision of infinite "shallow" datatypes in Nitpick;
 
blanchet 
parents: 
35280 
diff
changeset
 | 
97  | 
fun pair_from_fun f = (f false, f true)  | 
| 
 
29f81babefd7
improved precision of infinite "shallow" datatypes in Nitpick;
 
blanchet 
parents: 
35280 
diff
changeset
 | 
98  | 
fun fun_from_pair (f, t) b = if b then t else f  | 
| 
 
29f81babefd7
improved precision of infinite "shallow" datatypes in Nitpick;
 
blanchet 
parents: 
35280 
diff
changeset
 | 
99  | 
|
| 
 
29f81babefd7
improved precision of infinite "shallow" datatypes in Nitpick;
 
blanchet 
parents: 
35280 
diff
changeset
 | 
100  | 
fun int_from_bool b = if b then 1 else 0  | 
| 
33705
 
947184dc75c9
removed a few global names in Nitpick (styp, nat_less, pairf)
 
blanchet 
parents: 
33232 
diff
changeset
 | 
101  | 
fun nat_minus i j = if i > j then i - j else 0  | 
| 33192 | 102  | 
|
103  | 
val max_exponent = 16384  | 
|
104  | 
||
| 
35280
 
54ab4921f826
fixed a few bugs in Nitpick and removed unreferenced variables
 
blanchet 
parents: 
35220 
diff
changeset
 | 
105  | 
fun reasonable_power _ 0 = 1  | 
| 33192 | 106  | 
| reasonable_power a 1 = a  | 
107  | 
| reasonable_power 0 _ = 0  | 
|
108  | 
| reasonable_power 1 _ = 1  | 
|
109  | 
| reasonable_power a b =  | 
|
| 
34124
 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 
blanchet 
parents: 
34039 
diff
changeset
 | 
110  | 
if b < 0 then  | 
| 
 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 
blanchet 
parents: 
34039 
diff
changeset
 | 
111  | 
      raise ARG ("Nitpick_Util.reasonable_power",
 | 
| 
 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 
blanchet 
parents: 
34039 
diff
changeset
 | 
112  | 
                 "negative exponent (" ^ signed_string_of_int b ^ ")")
 | 
| 
 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 
blanchet 
parents: 
34039 
diff
changeset
 | 
113  | 
else if b > max_exponent then  | 
| 
 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 
blanchet 
parents: 
34039 
diff
changeset
 | 
114  | 
      raise TOO_LARGE ("Nitpick_Util.reasonable_power",
 | 
| 
47667
 
b4f71d8aecd6
handle exception (needed to solve TPTP problem SEU880^5)
 
blanchet 
parents: 
46711 
diff
changeset
 | 
115  | 
                       "too large exponent (" ^ signed_string_of_int a ^ " ^ " ^
 | 
| 
 
b4f71d8aecd6
handle exception (needed to solve TPTP problem SEU880^5)
 
blanchet 
parents: 
46711 
diff
changeset
 | 
116  | 
signed_string_of_int b ^ ")")  | 
| 33192 | 117  | 
else  | 
| 
34124
 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 
blanchet 
parents: 
34039 
diff
changeset
 | 
118  | 
let val c = reasonable_power a (b div 2) in  | 
| 
 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 
blanchet 
parents: 
34039 
diff
changeset
 | 
119  | 
c * c * reasonable_power a (b mod 2)  | 
| 
 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 
blanchet 
parents: 
34039 
diff
changeset
 | 
120  | 
end  | 
| 33192 | 121  | 
|
122  | 
fun exact_log m n =  | 
|
123  | 
let  | 
|
124  | 
val r = Math.ln (Real.fromInt n) / Math.ln (Real.fromInt m) |> Real.round  | 
|
125  | 
in  | 
|
126  | 
if reasonable_power m r = n then  | 
|
127  | 
r  | 
|
128  | 
else  | 
|
| 
33232
 
f93390060bbe
internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
 
blanchet 
parents: 
33192 
diff
changeset
 | 
129  | 
      raise ARG ("Nitpick_Util.exact_log",
 | 
| 33192 | 130  | 
commas (map signed_string_of_int [m, n]))  | 
131  | 
end  | 
|
132  | 
||
133  | 
fun exact_root m n =  | 
|
134  | 
let val r = Math.pow (Real.fromInt n, 1.0 / (Real.fromInt m)) |> Real.round in  | 
|
135  | 
if reasonable_power r m = n then  | 
|
136  | 
r  | 
|
137  | 
else  | 
|
| 
33232
 
f93390060bbe
internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
 
blanchet 
parents: 
33192 
diff
changeset
 | 
138  | 
      raise ARG ("Nitpick_Util.exact_root",
 | 
| 33192 | 139  | 
commas (map signed_string_of_int [m, n]))  | 
140  | 
end  | 
|
141  | 
||
142  | 
fun fold1 f = foldl1 (uncurry f)  | 
|
143  | 
||
144  | 
fun replicate_list 0 _ = []  | 
|
145  | 
| replicate_list n xs = xs @ replicate_list (n - 1) xs  | 
|
146  | 
||
147  | 
fun offset_list ns = rev (tl (fold (fn x => fn xs => (x + hd xs) :: xs) ns [0]))  | 
|
| 55889 | 148  | 
|
| 33192 | 149  | 
fun index_seq j0 n = if j0 < 0 then j0 downto j0 - n + 1 else j0 upto j0 + n - 1  | 
150  | 
||
151  | 
fun filter_indices js xs =  | 
|
152  | 
let  | 
|
153  | 
fun aux _ [] _ = []  | 
|
154  | 
| aux i (j :: js) (x :: xs) =  | 
|
155  | 
if i = j then x :: aux (i + 1) js xs else aux (i + 1) (j :: js) xs  | 
|
| 
33232
 
f93390060bbe
internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
 
blanchet 
parents: 
33192 
diff
changeset
 | 
156  | 
      | aux _ _ _ = raise ARG ("Nitpick_Util.filter_indices",
 | 
| 33192 | 157  | 
"indices unordered or out of range")  | 
158  | 
in aux 0 js xs end  | 
|
| 55889 | 159  | 
|
| 33192 | 160  | 
fun filter_out_indices js xs =  | 
161  | 
let  | 
|
162  | 
fun aux _ [] xs = xs  | 
|
163  | 
| aux i (j :: js) (x :: xs) =  | 
|
164  | 
if i = j then aux (i + 1) js xs else x :: aux (i + 1) (j :: js) xs  | 
|
| 
33232
 
f93390060bbe
internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
 
blanchet 
parents: 
33192 
diff
changeset
 | 
165  | 
      | aux _ _ _ = raise ARG ("Nitpick_Util.filter_out_indices",
 | 
| 33192 | 166  | 
"indices unordered or out of range")  | 
167  | 
in aux 0 js xs end  | 
|
168  | 
||
| 
57055
 
df3a26987a8d
reverted '|' features in MaSh -- these sounded like a good idea but never really worked
 
blanchet 
parents: 
55891 
diff
changeset
 | 
169  | 
fun cartesian_product [] _ = []  | 
| 
 
df3a26987a8d
reverted '|' features in MaSh -- these sounded like a good idea but never really worked
 
blanchet 
parents: 
55891 
diff
changeset
 | 
170  | 
| cartesian_product (x :: xs) yss = map (cons x) yss @ cartesian_product xs yss  | 
| 
 
df3a26987a8d
reverted '|' features in MaSh -- these sounded like a good idea but never really worked
 
blanchet 
parents: 
55891 
diff
changeset
 | 
171  | 
|
| 
 
df3a26987a8d
reverted '|' features in MaSh -- these sounded like a good idea but never really worked
 
blanchet 
parents: 
55891 
diff
changeset
 | 
172  | 
fun n_fold_cartesian_product xss = fold_rev cartesian_product xss [[]]  | 
| 54695 | 173  | 
|
| 33192 | 174  | 
fun all_distinct_unordered_pairs_of [] = []  | 
175  | 
| all_distinct_unordered_pairs_of (x :: xs) =  | 
|
176  | 
map (pair x) xs @ all_distinct_unordered_pairs_of xs  | 
|
177  | 
||
178  | 
val nth_combination =  | 
|
179  | 
let  | 
|
180  | 
fun aux [] n = ([], n)  | 
|
181  | 
| aux ((k, j0) :: xs) n =  | 
|
182  | 
let val (js, n) = aux xs n in ((n mod k) + j0 :: js, n div k) end  | 
|
183  | 
in fst oo aux end  | 
|
184  | 
||
185  | 
val all_combinations = n_fold_cartesian_product o map (uncurry index_seq o swap)  | 
|
186  | 
||
187  | 
fun all_permutations [] = [[]]  | 
|
188  | 
| all_permutations xs =  | 
|
189  | 
maps (fn j => map (cons (nth xs j)) (all_permutations (nth_drop j xs)))  | 
|
190  | 
(index_seq 0 (length xs))  | 
|
191  | 
||
| 49206 | 192  | 
(* FIXME: use "Library.chop_groups" *)  | 
| 48323 | 193  | 
val chunk_list = ATP_Util.chunk_list  | 
| 33192 | 194  | 
|
| 49206 | 195  | 
(* FIXME: use "Library.unflat" *)  | 
| 33192 | 196  | 
fun chunk_list_unevenly _ [] = []  | 
| 48323 | 197  | 
| chunk_list_unevenly [] xs = map single xs  | 
198  | 
| chunk_list_unevenly (k :: ks) xs =  | 
|
199  | 
let val (xs1, xs2) = chop k xs in xs1 :: chunk_list_unevenly ks xs2 end  | 
|
| 33192 | 200  | 
|
201  | 
fun double_lookup eq ps key =  | 
|
202  | 
case AList.lookup (fn (SOME x, SOME y) => eq (x, y) | _ => false) ps  | 
|
203  | 
(SOME key) of  | 
|
204  | 
SOME z => SOME z  | 
|
205  | 
| NONE => ps |> find_first (is_none o fst) |> Option.map snd  | 
|
| 55889 | 206  | 
|
| 
35220
 
2bcdae5f4fdb
added support for nonstandard "nat"s to Nitpick and fixed bugs in binary "nat"s and "int"s
 
blanchet 
parents: 
34982 
diff
changeset
 | 
207  | 
fun triple_lookup _ [(NONE, z)] _ = SOME z  | 
| 
 
2bcdae5f4fdb
added support for nonstandard "nat"s to Nitpick and fixed bugs in binary "nat"s and "int"s
 
blanchet 
parents: 
34982 
diff
changeset
 | 
208  | 
| triple_lookup eq ps key =  | 
| 
 
2bcdae5f4fdb
added support for nonstandard "nat"s to Nitpick and fixed bugs in binary "nat"s and "int"s
 
blanchet 
parents: 
34982 
diff
changeset
 | 
209  | 
case AList.lookup (op =) ps (SOME key) of  | 
| 
 
2bcdae5f4fdb
added support for nonstandard "nat"s to Nitpick and fixed bugs in binary "nat"s and "int"s
 
blanchet 
parents: 
34982 
diff
changeset
 | 
210  | 
SOME z => SOME z  | 
| 
 
2bcdae5f4fdb
added support for nonstandard "nat"s to Nitpick and fixed bugs in binary "nat"s and "int"s
 
blanchet 
parents: 
34982 
diff
changeset
 | 
211  | 
| NONE => double_lookup eq ps key  | 
| 33192 | 212  | 
|
213  | 
fun is_substring_of needle stack =  | 
|
214  | 
not (Substring.isEmpty (snd (Substring.position needle  | 
|
215  | 
(Substring.full stack))))  | 
|
216  | 
||
| 
36380
 
1e8fcaccb3e8
stop referring to Sledgehammer_Util stuff all over Nitpick code; instead, redeclare any needed function in Nitpick_Util as synonym for the Sledgehammer_Util function of the same name
 
blanchet 
parents: 
35964 
diff
changeset
 | 
217  | 
val plural_s = Sledgehammer_Util.plural_s  | 
| 33192 | 218  | 
fun plural_s_for_list xs = plural_s (length xs)  | 
219  | 
||
| 
43029
 
3e060b1c844b
use helpers and tweak Quickcheck's priority to it comes second (to give Solve Direct slightly more time before another prover runs)
 
blanchet 
parents: 
42697 
diff
changeset
 | 
220  | 
val serial_commas = Try.serial_commas  | 
| 
36380
 
1e8fcaccb3e8
stop referring to Sledgehammer_Util stuff all over Nitpick code; instead, redeclare any needed function in Nitpick_Util as synonym for the Sledgehammer_Util function of the same name
 
blanchet 
parents: 
35964 
diff
changeset
 | 
221  | 
|
| 38188 | 222  | 
fun pretty_serial_commas _ [] = []  | 
223  | 
| pretty_serial_commas _ [p] = [p]  | 
|
224  | 
| pretty_serial_commas conj [p1, p2] =  | 
|
225  | 
[p1, Pretty.brk 1, Pretty.str conj, Pretty.brk 1, p2]  | 
|
226  | 
| pretty_serial_commas conj [p1, p2, p3] =  | 
|
227  | 
[p1, Pretty.str ",", Pretty.brk 1, p2, Pretty.str ",", Pretty.brk 1,  | 
|
228  | 
Pretty.str conj, Pretty.brk 1, p3]  | 
|
229  | 
| pretty_serial_commas conj (p :: ps) =  | 
|
230  | 
p :: Pretty.str "," :: Pretty.brk 1 :: pretty_serial_commas conj ps  | 
|
231  | 
||
| 
36380
 
1e8fcaccb3e8
stop referring to Sledgehammer_Util stuff all over Nitpick code; instead, redeclare any needed function in Nitpick_Util as synonym for the Sledgehammer_Util function of the same name
 
blanchet 
parents: 
35964 
diff
changeset
 | 
232  | 
val parse_bool_option = Sledgehammer_Util.parse_bool_option  | 
| 
54816
 
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
 
blanchet 
parents: 
54696 
diff
changeset
 | 
233  | 
val parse_time = Sledgehammer_Util.parse_time  | 
| 
52031
 
9a9238342963
tuning -- renamed '_from_' to '_of_' in Sledgehammer
 
blanchet 
parents: 
50557 
diff
changeset
 | 
234  | 
val string_of_time = ATP_Util.string_of_time  | 
| 
36380
 
1e8fcaccb3e8
stop referring to Sledgehammer_Util stuff all over Nitpick code; instead, redeclare any needed function in Nitpick_Util as synonym for the Sledgehammer_Util function of the same name
 
blanchet 
parents: 
35964 
diff
changeset
 | 
235  | 
|
| 
53021
 
d0fa3f446b9d
discontinued special treatment of \<^isub> and \<^isup> in rendering or editor front-end;
 
wenzelm 
parents: 
53015 
diff
changeset
 | 
236  | 
val subscript = implode o map (prefix "\<^sub>") o Symbol.explode  | 
| 55889 | 237  | 
|
| 
38652
 
e063be321438
perform eta-expansion of quantifier bodies in Sledgehammer translation when needed + transform elim rules later;
 
blanchet 
parents: 
38240 
diff
changeset
 | 
238  | 
fun nat_subscript n =  | 
| 66020 | 239  | 
n |> signed_string_of_int |> not (print_mode_active Print_Mode.ASCII) ? subscript  | 
| 
38652
 
e063be321438
perform eta-expansion of quantifier bodies in Sledgehammer translation when needed + transform elim rules later;
 
blanchet 
parents: 
38240 
diff
changeset
 | 
240  | 
|
| 33192 | 241  | 
fun flip_polarity Pos = Neg  | 
242  | 
| flip_polarity Neg = Pos  | 
|
243  | 
| flip_polarity Neut = Neut  | 
|
244  | 
||
| 69593 | 245  | 
val prop_T = \<^typ>\<open>prop\<close>  | 
246  | 
val bool_T = \<^typ>\<open>bool\<close>  | 
|
247  | 
val nat_T = \<^typ>\<open>nat\<close>  | 
|
248  | 
val int_T = \<^typ>\<open>int\<close>  | 
|
| 33192 | 249  | 
|
| 55080 | 250  | 
fun simple_string_of_typ (Type (s, _)) = s  | 
251  | 
| simple_string_of_typ (TFree (s, _)) = s  | 
|
| 
49985
 
5b4b0e4e5205
moved Refute to "HOL/Library" to speed up building "Main" even more
 
blanchet 
parents: 
49206 
diff
changeset
 | 
252  | 
| simple_string_of_typ (TVar ((s, _), _)) = s  | 
| 
 
5b4b0e4e5205
moved Refute to "HOL/Library" to speed up building "Main" even more
 
blanchet 
parents: 
49206 
diff
changeset
 | 
253  | 
|
| 55080 | 254  | 
val num_binder_types = BNF_Util.num_binder_types  | 
255  | 
||
| 
43085
 
0a2f5b86bdd7
first step in sharing more code between ATP and Metis translation
 
blanchet 
parents: 
43029 
diff
changeset
 | 
256  | 
val varify_type = ATP_Util.varify_type  | 
| 
 
0a2f5b86bdd7
first step in sharing more code between ATP and Metis translation
 
blanchet 
parents: 
43029 
diff
changeset
 | 
257  | 
val instantiate_type = ATP_Util.instantiate_type  | 
| 
 
0a2f5b86bdd7
first step in sharing more code between ATP and Metis translation
 
blanchet 
parents: 
43029 
diff
changeset
 | 
258  | 
val varify_and_instantiate_type = ATP_Util.varify_and_instantiate_type  | 
| 
49985
 
5b4b0e4e5205
moved Refute to "HOL/Library" to speed up building "Main" even more
 
blanchet 
parents: 
49206 
diff
changeset
 | 
259  | 
|
| 
53806
 
de4653037e0d
don't generalize w.r.t. wrong context -- better overgeneralize (since the instantiation phase will compensate for it)
 
blanchet 
parents: 
53802 
diff
changeset
 | 
260  | 
fun varify_and_instantiate_type_global thy T1 T1' T2 =  | 
| 
 
de4653037e0d
don't generalize w.r.t. wrong context -- better overgeneralize (since the instantiation phase will compensate for it)
 
blanchet 
parents: 
53802 
diff
changeset
 | 
261  | 
instantiate_type thy (Logic.varifyT_global T1) T1' (Logic.varifyT_global T2)  | 
| 
 
de4653037e0d
don't generalize w.r.t. wrong context -- better overgeneralize (since the instantiation phase will compensate for it)
 
blanchet 
parents: 
53802 
diff
changeset
 | 
262  | 
|
| 
49985
 
5b4b0e4e5205
moved Refute to "HOL/Library" to speed up building "Main" even more
 
blanchet 
parents: 
49206 
diff
changeset
 | 
263  | 
fun is_of_class_const thy (s, _) =  | 
| 
 
5b4b0e4e5205
moved Refute to "HOL/Library" to speed up building "Main" even more
 
blanchet 
parents: 
49206 
diff
changeset
 | 
264  | 
member (op =) (map Logic.const_of_class (Sign.all_classes thy)) s  | 
| 
 
5b4b0e4e5205
moved Refute to "HOL/Library" to speed up building "Main" even more
 
blanchet 
parents: 
49206 
diff
changeset
 | 
265  | 
|
| 
 
5b4b0e4e5205
moved Refute to "HOL/Library" to speed up building "Main" even more
 
blanchet 
parents: 
49206 
diff
changeset
 | 
266  | 
fun get_class_def thy class =  | 
| 
 
5b4b0e4e5205
moved Refute to "HOL/Library" to speed up building "Main" even more
 
blanchet 
parents: 
49206 
diff
changeset
 | 
267  | 
let val axname = class ^ "_class_def" in  | 
| 
 
5b4b0e4e5205
moved Refute to "HOL/Library" to speed up building "Main" even more
 
blanchet 
parents: 
49206 
diff
changeset
 | 
268  | 
Option.map (pair axname)  | 
| 
 
5b4b0e4e5205
moved Refute to "HOL/Library" to speed up building "Main" even more
 
blanchet 
parents: 
49206 
diff
changeset
 | 
269  | 
(AList.lookup (op =) (Theory.all_axioms_of thy) axname)  | 
| 
 
5b4b0e4e5205
moved Refute to "HOL/Library" to speed up building "Main" even more
 
blanchet 
parents: 
49206 
diff
changeset
 | 
270  | 
end;  | 
| 
 
5b4b0e4e5205
moved Refute to "HOL/Library" to speed up building "Main" even more
 
blanchet 
parents: 
49206 
diff
changeset
 | 
271  | 
|
| 
43085
 
0a2f5b86bdd7
first step in sharing more code between ATP and Metis translation
 
blanchet 
parents: 
43029 
diff
changeset
 | 
272  | 
val specialize_type = ATP_Util.specialize_type  | 
| 
 
0a2f5b86bdd7
first step in sharing more code between ATP and Metis translation
 
blanchet 
parents: 
43029 
diff
changeset
 | 
273  | 
val eta_expand = ATP_Util.eta_expand  | 
| 33192 | 274  | 
|
275  | 
fun DETERM_TIMEOUT delay tac st =  | 
|
| 62519 | 276  | 
Seq.of_list (the_list (Timeout.apply delay (fn () => SINGLE tac st) ()))  | 
| 33192 | 277  | 
|
278  | 
val indent_size = 2  | 
|
279  | 
||
| 
43085
 
0a2f5b86bdd7
first step in sharing more code between ATP and Metis translation
 
blanchet 
parents: 
43029 
diff
changeset
 | 
280  | 
val maybe_quote = ATP_Util.maybe_quote  | 
| 55889 | 281  | 
|
| 
58928
 
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
 
wenzelm 
parents: 
58634 
diff
changeset
 | 
282  | 
fun pretty_maybe_quote keywords pretty =  | 
| 
61877
 
276ad4354069
renamed Pretty.str_of to Pretty.unformatted_string_of to emphasize its meaning;
 
wenzelm 
parents: 
61770 
diff
changeset
 | 
283  | 
let val s = Pretty.unformatted_string_of pretty  | 
| 
 
276ad4354069
renamed Pretty.str_of to Pretty.unformatted_string_of to emphasize its meaning;
 
wenzelm 
parents: 
61770 
diff
changeset
 | 
284  | 
in if maybe_quote keywords s = s then pretty else Pretty.quote pretty end  | 
| 33192 | 285  | 
|
| 53802 | 286  | 
val hashw = ATP_Util.hashw  | 
287  | 
val hashw_string = ATP_Util.hashw_string  | 
|
288  | 
||
289  | 
fun hashw_term (t1 $ t2) = hashw (hashw_term t1, hashw_term t2)  | 
|
290  | 
| hashw_term (Const (s, _)) = hashw_string (s, 0w0)  | 
|
291  | 
| hashw_term (Free (s, _)) = hashw_string (s, 0w0)  | 
|
| 53505 | 292  | 
| hashw_term _ = 0w0  | 
293  | 
||
294  | 
val hash_term = Word.toInt o hashw_term  | 
|
| 
36380
 
1e8fcaccb3e8
stop referring to Sledgehammer_Util stuff all over Nitpick code; instead, redeclare any needed function in Nitpick_Util as synonym for the Sledgehammer_Util function of the same name
 
blanchet 
parents: 
35964 
diff
changeset
 | 
295  | 
|
| 
53815
 
e8aa538e959e
encode goal digest in spying log (to detect duplicates)
 
blanchet 
parents: 
53806 
diff
changeset
 | 
296  | 
val hackish_string_of_term = Sledgehammer_Util.hackish_string_of_term  | 
| 
 
e8aa538e959e
encode goal digest in spying log (to detect duplicates)
 
blanchet 
parents: 
53806 
diff
changeset
 | 
297  | 
|
| 
 
e8aa538e959e
encode goal digest in spying log (to detect duplicates)
 
blanchet 
parents: 
53806 
diff
changeset
 | 
298  | 
val spying_version = "b"  | 
| 
 
e8aa538e959e
encode goal digest in spying log (to detect duplicates)
 
blanchet 
parents: 
53806 
diff
changeset
 | 
299  | 
|
| 
 
e8aa538e959e
encode goal digest in spying log (to detect duplicates)
 
blanchet 
parents: 
53806 
diff
changeset
 | 
300  | 
fun spying false _ = ()  | 
| 
 
e8aa538e959e
encode goal digest in spying log (to detect duplicates)
 
blanchet 
parents: 
53806 
diff
changeset
 | 
301  | 
| spying true f =  | 
| 
 
e8aa538e959e
encode goal digest in spying log (to detect duplicates)
 
blanchet 
parents: 
53806 
diff
changeset
 | 
302  | 
let  | 
| 
 
e8aa538e959e
encode goal digest in spying log (to detect duplicates)
 
blanchet 
parents: 
53806 
diff
changeset
 | 
303  | 
val (state, i, message) = f ()  | 
| 
 
e8aa538e959e
encode goal digest in spying log (to detect duplicates)
 
blanchet 
parents: 
53806 
diff
changeset
 | 
304  | 
val ctxt = Proof.context_of state  | 
| 59582 | 305  | 
val goal = Logic.get_goal (Thm.prop_of (#goal (Proof.goal state))) i  | 
| 
53815
 
e8aa538e959e
encode goal digest in spying log (to detect duplicates)
 
blanchet 
parents: 
53806 
diff
changeset
 | 
306  | 
val hash = String.substring (SHA1.rep (SHA1.digest (hackish_string_of_term ctxt goal)), 0, 12)  | 
| 
 
e8aa538e959e
encode goal digest in spying log (to detect duplicates)
 
blanchet 
parents: 
53806 
diff
changeset
 | 
307  | 
in  | 
| 
 
e8aa538e959e
encode goal digest in spying log (to detect duplicates)
 
blanchet 
parents: 
53806 
diff
changeset
 | 
308  | 
File.append (Path.explode "$ISABELLE_HOME_USER/spy_nitpick")  | 
| 
 
e8aa538e959e
encode goal digest in spying log (to detect duplicates)
 
blanchet 
parents: 
53806 
diff
changeset
 | 
309  | 
(spying_version ^ " " ^ timestamp () ^ ": " ^ hash ^ ": " ^ message ^ "\n")  | 
| 
 
e8aa538e959e
encode goal digest in spying log (to detect duplicates)
 
blanchet 
parents: 
53806 
diff
changeset
 | 
310  | 
end  | 
| 
 
e8aa538e959e
encode goal digest in spying log (to detect duplicates)
 
blanchet 
parents: 
53806 
diff
changeset
 | 
311  | 
|
| 33192 | 312  | 
end;  |