| author | wenzelm | 
| Mon, 23 Mar 2015 17:01:47 +0100 | |
| changeset 59785 | 4e6ab5831cc0 | 
| parent 59582 | 0fbed69ff081 | 
| child 59970 | e9f73d87d904 | 
| permissions | -rw-r--r-- | 
| 33982 | 1 | (* Title: HOL/Tools/Nitpick/nitpick.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: 
34938diff
changeset | 3 | Copyright 2008, 2009, 2010 | 
| 33192 | 4 | |
| 5 | Finite model generation for HOL formulas using Kodkod. | |
| 6 | *) | |
| 7 | ||
| 8 | signature NITPICK = | |
| 9 | sig | |
| 35711 
548d3f16404b
added term postprocessor to Nitpick, to provide custom syntax for typedefs
 blanchet parents: 
35696diff
changeset | 10 | type term_postprocessor = Nitpick_Model.term_postprocessor | 
| 43022 | 11 | |
| 47560 | 12 | datatype mode = Auto_Try | Try | Normal | TPTP | 
| 43022 | 13 | |
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 14 | type params = | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 15 |     {cards_assigns: (typ option * int list) list,
 | 
| 55889 | 16 | maxes_assigns: ((string * typ) option * int list) list, | 
| 17 | iters_assigns: ((string * typ) option * int list) list, | |
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 18 | bitss: int list, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 19 | bisim_depths: int list, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 20 | boxes: (typ option * bool option) list, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 21 | finitizes: (typ option * bool option) list, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 22 | monos: (typ option * bool option) list, | 
| 55889 | 23 | wfs: ((string * typ) option * bool option) list, | 
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 24 | sat_solver: string, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 25 | blocking: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 26 | falsify: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 27 | debug: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 28 | verbose: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 29 | overlord: bool, | 
| 53802 | 30 | spy: bool, | 
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 31 | user_axioms: bool option, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 32 | assms: bool, | 
| 38209 | 33 | whacks: term list, | 
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 34 | merge_type_vars: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 35 | binary_ints: bool option, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 36 | destroy_constrs: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 37 | specialize: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 38 | star_linear_preds: bool, | 
| 41856 | 39 | total_consts: bool option, | 
| 41876 | 40 | needs: term list option, | 
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 41 | peephole_optim: bool, | 
| 38124 | 42 | datatype_sym_break: int, | 
| 43 | kodkod_sym_break: int, | |
| 54816 
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
 blanchet parents: 
53815diff
changeset | 44 | timeout: Time.time, | 
| 
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
 blanchet parents: 
53815diff
changeset | 45 | tac_timeout: Time.time, | 
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 46 | max_threads: int, | 
| 55889 | 47 | show_types: bool, | 
| 41993 
bd6296de1432
reintroduced "show_skolems" option -- useful when too many Skolems are displayed
 blanchet parents: 
41992diff
changeset | 48 | show_skolems: bool, | 
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 49 | show_consts: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 50 | evals: term list, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 51 | formats: (term option * int list) list, | 
| 37260 
dde817e6dfb1
added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
 blanchet parents: 
37257diff
changeset | 52 | atomss: (typ option * string list) list, | 
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 53 | max_potential: int, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 54 | max_genuine: int, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 55 | check_potential: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 56 | check_genuine: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 57 | batch_size: int, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 58 | expect: string} | 
| 33192 | 59 | |
| 43020 
abb5d1f907e4
added "try" command, to launch Solve Direct, Quickcheck, Nitpick, Sledgehammer, and Try Methods
 blanchet parents: 
42959diff
changeset | 60 | val genuineN : string | 
| 
abb5d1f907e4
added "try" command, to launch Solve Direct, Quickcheck, Nitpick, Sledgehammer, and Try Methods
 blanchet parents: 
42959diff
changeset | 61 | val quasi_genuineN : string | 
| 
abb5d1f907e4
added "try" command, to launch Solve Direct, Quickcheck, Nitpick, Sledgehammer, and Try Methods
 blanchet parents: 
42959diff
changeset | 62 | val potentialN : string | 
| 
abb5d1f907e4
added "try" command, to launch Solve Direct, Quickcheck, Nitpick, Sledgehammer, and Try Methods
 blanchet parents: 
42959diff
changeset | 63 | val noneN : string | 
| 
abb5d1f907e4
added "try" command, to launch Solve Direct, Quickcheck, Nitpick, Sledgehammer, and Try Methods
 blanchet parents: 
42959diff
changeset | 64 | val unknownN : string | 
| 33192 | 65 | val register_frac_type : string -> (string * string) list -> theory -> theory | 
| 66 | val unregister_frac_type : string -> theory -> theory | |
| 55889 | 67 | val register_codatatype : typ -> string -> (string * typ) list -> theory -> | 
| 68 | theory | |
| 33192 | 69 | val unregister_codatatype : typ -> theory -> theory | 
| 35711 
548d3f16404b
added term postprocessor to Nitpick, to provide custom syntax for typedefs
 blanchet parents: 
35696diff
changeset | 70 | val register_term_postprocessor : | 
| 
548d3f16404b
added term postprocessor to Nitpick, to provide custom syntax for typedefs
 blanchet parents: 
35696diff
changeset | 71 | typ -> term_postprocessor -> theory -> theory | 
| 
548d3f16404b
added term postprocessor to Nitpick, to provide custom syntax for typedefs
 blanchet parents: 
35696diff
changeset | 72 | val unregister_term_postprocessor : typ -> theory -> theory | 
| 33192 | 73 | val pick_nits_in_term : | 
| 43022 | 74 | Proof.state -> params -> mode -> int -> int -> int -> (term * term) list | 
| 58892 
20aa19ecf2cc
eliminated obsolete Proof.goal_message -- print outcome more directly;
 wenzelm parents: 
58843diff
changeset | 75 | -> term list -> term list -> term -> string * string list | 
| 33192 | 76 | val pick_nits_in_subgoal : | 
| 58892 
20aa19ecf2cc
eliminated obsolete Proof.goal_message -- print outcome more directly;
 wenzelm parents: 
58843diff
changeset | 77 | Proof.state -> params -> mode -> int -> int -> string * string list | 
| 33192 | 78 | end; | 
| 79 | ||
| 80 | structure Nitpick : NITPICK = | |
| 81 | struct | |
| 82 | ||
| 33232 
f93390060bbe
internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
 blanchet parents: 
33192diff
changeset | 83 | open Nitpick_Util | 
| 
f93390060bbe
internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
 blanchet parents: 
33192diff
changeset | 84 | open Nitpick_HOL | 
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 85 | open Nitpick_Preproc | 
| 33232 
f93390060bbe
internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
 blanchet parents: 
33192diff
changeset | 86 | open Nitpick_Mono | 
| 
f93390060bbe
internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
 blanchet parents: 
33192diff
changeset | 87 | open Nitpick_Scope | 
| 
f93390060bbe
internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
 blanchet parents: 
33192diff
changeset | 88 | open Nitpick_Peephole | 
| 
f93390060bbe
internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
 blanchet parents: 
33192diff
changeset | 89 | open Nitpick_Rep | 
| 
f93390060bbe
internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
 blanchet parents: 
33192diff
changeset | 90 | open Nitpick_Nut | 
| 
f93390060bbe
internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
 blanchet parents: 
33192diff
changeset | 91 | open Nitpick_Kodkod | 
| 
f93390060bbe
internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
 blanchet parents: 
33192diff
changeset | 92 | open Nitpick_Model | 
| 33192 | 93 | |
| 34126 | 94 | structure KK = Kodkod | 
| 95 | ||
| 47560 | 96 | datatype mode = Auto_Try | Try | Normal | TPTP | 
| 97 | ||
| 98 | fun is_mode_nt mode = (mode = Normal orelse mode = TPTP) | |
| 43022 | 99 | |
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 100 | type params = | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 101 |   {cards_assigns: (typ option * int list) list,
 | 
| 55889 | 102 | maxes_assigns: ((string * typ) option * int list) list, | 
| 103 | iters_assigns: ((string * typ) option * int list) list, | |
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 104 | bitss: int list, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 105 | bisim_depths: int list, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 106 | boxes: (typ option * bool option) list, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 107 | finitizes: (typ option * bool option) list, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 108 | monos: (typ option * bool option) list, | 
| 55889 | 109 | wfs: ((string * typ) option * bool option) list, | 
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 110 | sat_solver: string, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 111 | blocking: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 112 | falsify: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 113 | debug: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 114 | verbose: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 115 | overlord: bool, | 
| 53802 | 116 | spy: bool, | 
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 117 | user_axioms: bool option, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 118 | assms: bool, | 
| 38209 | 119 | whacks: term list, | 
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 120 | merge_type_vars: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 121 | binary_ints: bool option, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 122 | destroy_constrs: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 123 | specialize: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 124 | star_linear_preds: bool, | 
| 41856 | 125 | total_consts: bool option, | 
| 41876 | 126 | needs: term list option, | 
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 127 | peephole_optim: bool, | 
| 38124 | 128 | datatype_sym_break: int, | 
| 129 | kodkod_sym_break: int, | |
| 54816 
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
 blanchet parents: 
53815diff
changeset | 130 | timeout: Time.time, | 
| 
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
 blanchet parents: 
53815diff
changeset | 131 | tac_timeout: Time.time, | 
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 132 | max_threads: int, | 
| 55889 | 133 | show_types: bool, | 
| 41993 
bd6296de1432
reintroduced "show_skolems" option -- useful when too many Skolems are displayed
 blanchet parents: 
41992diff
changeset | 134 | show_skolems: bool, | 
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 135 | show_consts: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 136 | evals: term list, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 137 | formats: (term option * int list) list, | 
| 37260 
dde817e6dfb1
added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
 blanchet parents: 
37257diff
changeset | 138 | atomss: (typ option * string list) list, | 
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 139 | max_potential: int, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 140 | max_genuine: int, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 141 | check_potential: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 142 | check_genuine: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 143 | batch_size: int, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 144 | expect: string} | 
| 33192 | 145 | |
| 43020 
abb5d1f907e4
added "try" command, to launch Solve Direct, Quickcheck, Nitpick, Sledgehammer, and Try Methods
 blanchet parents: 
42959diff
changeset | 146 | val genuineN = "genuine" | 
| 
abb5d1f907e4
added "try" command, to launch Solve Direct, Quickcheck, Nitpick, Sledgehammer, and Try Methods
 blanchet parents: 
42959diff
changeset | 147 | val quasi_genuineN = "quasi_genuine" | 
| 
abb5d1f907e4
added "try" command, to launch Solve Direct, Quickcheck, Nitpick, Sledgehammer, and Try Methods
 blanchet parents: 
42959diff
changeset | 148 | val potentialN = "potential" | 
| 
abb5d1f907e4
added "try" command, to launch Solve Direct, Quickcheck, Nitpick, Sledgehammer, and Try Methods
 blanchet parents: 
42959diff
changeset | 149 | val noneN = "none" | 
| 
abb5d1f907e4
added "try" command, to launch Solve Direct, Quickcheck, Nitpick, Sledgehammer, and Try Methods
 blanchet parents: 
42959diff
changeset | 150 | val unknownN = "unknown" | 
| 
abb5d1f907e4
added "try" command, to launch Solve Direct, Quickcheck, Nitpick, Sledgehammer, and Try Methods
 blanchet parents: 
42959diff
changeset | 151 | |
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38214diff
changeset | 152 | (* TODO: eliminate these historical aliases *) | 
| 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38214diff
changeset | 153 | val register_frac_type = Nitpick_HOL.register_frac_type_global | 
| 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38214diff
changeset | 154 | val unregister_frac_type = Nitpick_HOL.unregister_frac_type_global | 
| 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38214diff
changeset | 155 | val register_codatatype = Nitpick_HOL.register_codatatype_global | 
| 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38214diff
changeset | 156 | val unregister_codatatype = Nitpick_HOL.unregister_codatatype_global | 
| 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38214diff
changeset | 157 | val register_term_postprocessor = | 
| 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38214diff
changeset | 158 | Nitpick_Model.register_term_postprocessor_global | 
| 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38214diff
changeset | 159 | val unregister_term_postprocessor = | 
| 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38214diff
changeset | 160 | Nitpick_Model.unregister_term_postprocessor_global | 
| 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38214diff
changeset | 161 | |
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 162 | type problem_extension = | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 163 |   {free_names: nut list,
 | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 164 | sel_names: nut list, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 165 | nonsel_names: nut list, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 166 | rel_table: nut NameTable.table, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 167 | unsound: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 168 | scope: scope} | 
| 39316 
b6c4385ab400
change defaults of Auto Nitpick so that it consumes less resources (time and Kodkod threads)
 blanchet parents: 
38857diff
changeset | 169 | |
| 34126 | 170 | type rich_problem = KK.problem * problem_extension | 
| 33192 | 171 | |
| 172 | fun pretties_for_formulas _ _ [] = [] | |
| 173 | | pretties_for_formulas ctxt s ts = | |
| 174 | [Pretty.str (s ^ plural_s_for_list ts ^ ":"), | |
| 175 | Pretty.indent indent_size (Pretty.chunks | |
| 176 | (map2 (fn j => fn t => | |
| 34121 
5e831d805118
get rid of polymorphic equality in Nitpick's code + a few minor cleanups
 blanchet parents: 
34039diff
changeset | 177 | Pretty.block [t |> shorten_names_in_term | 
| 33192 | 178 | |> Syntax.pretty_term ctxt, | 
| 179 | Pretty.str (if j = 1 then "." else ";")]) | |
| 180 | (length ts downto 1) ts))] | |
| 181 | ||
| 49024 | 182 | val isabelle_wrong_message = | 
| 183 | "Something appears to be wrong with your Isabelle installation." | |
| 55889 | 184 | val java_not_found_message = | 
| 49024 | 185 | "Java could not be launched. " ^ isabelle_wrong_message | 
| 55889 | 186 | val java_too_old_message = | 
| 49024 | 187 | "The Java version is too old. " ^ isabelle_wrong_message | 
| 55889 | 188 | val kodkodi_not_installed_message = | 
| 50830 | 189 | "Nitpick requires the external Java program Kodkodi." | 
| 55889 | 190 | val kodkodi_too_old_message = "The installed Kodkodi version is too old." | 
| 191 | ||
| 35185 
9b8f351cced6
added yet another hint to Nitpick's output, this time warning about problems for which nothing was effectively tested
 blanchet parents: 
35183diff
changeset | 192 | val max_unsound_delay_ms = 200 | 
| 
9b8f351cced6
added yet another hint to Nitpick's output, this time warning about problems for which nothing was effectively tested
 blanchet parents: 
35183diff
changeset | 193 | val max_unsound_delay_percent = 2 | 
| 33192 | 194 | |
| 54816 
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
 blanchet parents: 
53815diff
changeset | 195 | fun unsound_delay_for_timeout timeout = | 
| 
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
 blanchet parents: 
53815diff
changeset | 196 | Int.max (0, Int.min (max_unsound_delay_ms, | 
| 
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
 blanchet parents: 
53815diff
changeset | 197 | Time.toMilliseconds timeout | 
| 
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
 blanchet parents: 
53815diff
changeset | 198 | * max_unsound_delay_percent div 100)) | 
| 33192 | 199 | |
| 34123 
c4988215a691
distinguish better between "complete" (vs. incomplete) types and "concrete" (vs. abstract) types in Nitpick;
 blanchet parents: 
34121diff
changeset | 200 | fun none_true assigns = forall (not_equal (SOME true) o snd) assigns | 
| 33192 | 201 | |
| 41048 
d5ebe94248ad
added a hint when the user obviously just forgot a colon after the lemma's name
 blanchet parents: 
41007diff
changeset | 202 | fun has_lonely_bool_var (@{const Pure.conjunction}
 | 
| 
d5ebe94248ad
added a hint when the user obviously just forgot a colon after the lemma's name
 blanchet parents: 
41007diff
changeset | 203 |                          $ (@{const Trueprop} $ Free _) $ _) = true
 | 
| 
d5ebe94248ad
added a hint when the user obviously just forgot a colon after the lemma's name
 blanchet parents: 
41007diff
changeset | 204 | | has_lonely_bool_var _ = false | 
| 
d5ebe94248ad
added a hint when the user obviously just forgot a colon after the lemma's name
 blanchet parents: 
41007diff
changeset | 205 | |
| 34038 
a2736debeabd
make Nitpick output the message "Hint: Maybe you forgot a type constraint?" only for syntactic classes
 blanchet parents: 
33982diff
changeset | 206 | val syntactic_sorts = | 
| 38857 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
38517diff
changeset | 207 |   @{sort "{default,zero,one,plus,minus,uminus,times,inverse,abs,sgn,ord,equal}"} @
 | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46243diff
changeset | 208 |   @{sort numeral}
 | 
| 55889 | 209 | |
| 34038 
a2736debeabd
make Nitpick output the message "Hint: Maybe you forgot a type constraint?" only for syntactic classes
 blanchet parents: 
33982diff
changeset | 210 | fun has_tfree_syntactic_sort (TFree (_, S as _ :: _)) = | 
| 
a2736debeabd
make Nitpick output the message "Hint: Maybe you forgot a type constraint?" only for syntactic classes
 blanchet parents: 
33982diff
changeset | 211 | subset (op =) (S, syntactic_sorts) | 
| 
a2736debeabd
make Nitpick output the message "Hint: Maybe you forgot a type constraint?" only for syntactic classes
 blanchet parents: 
33982diff
changeset | 212 | | has_tfree_syntactic_sort _ = false | 
| 
a2736debeabd
make Nitpick output the message "Hint: Maybe you forgot a type constraint?" only for syntactic classes
 blanchet parents: 
33982diff
changeset | 213 | val has_syntactic_sorts = exists_type (exists_subtype has_tfree_syntactic_sort) | 
| 33192 | 214 | |
| 59432 | 215 | fun plazy f = Pretty.para (f ()) | 
| 33568 
532b915afa14
don't run Nitpick at all if Kodkodi is not installed (as indicated by the $KODKODI variable)
 blanchet parents: 
33566diff
changeset | 216 | |
| 43022 | 217 | fun pick_them_nits_in_term deadline state (params : params) mode i n step | 
| 47715 
04400144c6fc
handle TPTP definitions as definitions in Nitpick rather than as axioms
 blanchet parents: 
47670diff
changeset | 218 | subst def_assm_ts nondef_assm_ts orig_t = | 
| 33192 | 219 | let | 
| 220 | val timer = Timer.startRealTimer () | |
| 34935 
cb011ba38950
removed the Nitpick code that loaded the "Nitpick" theory explicitly if it's not already loaded, because this didn't work properly and is of doubtful value
 blanchet parents: 
34126diff
changeset | 221 | val thy = Proof.theory_of state | 
| 
cb011ba38950
removed the Nitpick code that loaded the "Nitpick" theory explicitly if it's not already loaded, because this didn't work properly and is of doubtful value
 blanchet parents: 
34126diff
changeset | 222 | val ctxt = Proof.context_of state | 
| 58928 
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
 wenzelm parents: 
58892diff
changeset | 223 | val keywords = Thy_Header.get_keywords thy | 
| 35386 
45a4e19d3ebd
more work on the new monotonicity stuff in Nitpick
 blanchet parents: 
35385diff
changeset | 224 | (* FIXME: reintroduce code before new release: | 
| 
45a4e19d3ebd
more work on the new monotonicity stuff in Nitpick
 blanchet parents: 
35385diff
changeset | 225 | |
| 37216 
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
 wenzelm parents: 
37213diff
changeset | 226 | val nitpick_thy = Thy_Info.get_theory "Nitpick" | 
| 34936 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34935diff
changeset | 227 | val _ = Theory.subthy (nitpick_thy, thy) orelse | 
| 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34935diff
changeset | 228 | error "You must import the theory \"Nitpick\" to use Nitpick" | 
| 34982 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34938diff
changeset | 229 | *) | 
| 34124 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 blanchet parents: 
34123diff
changeset | 230 |     val {cards_assigns, maxes_assigns, iters_assigns, bitss, bisim_depths,
 | 
| 55888 | 231 | boxes, finitizes, monos, wfs, sat_solver, falsify, debug, verbose, | 
| 232 | overlord, spy, user_axioms, assms, whacks, merge_type_vars, | |
| 38209 | 233 | binary_ints, destroy_constrs, specialize, star_linear_preds, | 
| 41875 | 234 | total_consts, needs, peephole_optim, datatype_sym_break, | 
| 55889 | 235 | kodkod_sym_break, tac_timeout, max_threads, show_types, show_skolems, | 
| 236 | show_consts, evals, formats, atomss, max_potential, max_genuine, | |
| 237 | check_potential, check_genuine, batch_size, ...} = params | |
| 58892 
20aa19ecf2cc
eliminated obsolete Proof.goal_message -- print outcome more directly;
 wenzelm parents: 
58843diff
changeset | 238 | val outcome = Synchronized.var "Nitpick.outcome" (Queue.empty: string Queue.T) | 
| 
20aa19ecf2cc
eliminated obsolete Proof.goal_message -- print outcome more directly;
 wenzelm parents: 
58843diff
changeset | 239 | fun pprint print prt = | 
| 43022 | 240 | if mode = Auto_Try then | 
| 59184 
830bb7ddb3ab
explicit message channels for "state", "information";
 wenzelm parents: 
58928diff
changeset | 241 | Synchronized.change outcome (Queue.enqueue (Pretty.string_of prt)) | 
| 33192 | 242 | else | 
| 58892 
20aa19ecf2cc
eliminated obsolete Proof.goal_message -- print outcome more directly;
 wenzelm parents: 
58843diff
changeset | 243 | print (Pretty.string_of prt) | 
| 58843 | 244 | val pprint_a = pprint writeln | 
| 245 | fun pprint_nt f = () |> is_mode_nt mode ? pprint writeln o f | |
| 246 | fun pprint_v f = () |> verbose ? pprint writeln o f | |
| 46086 | 247 | fun pprint_d f = () |> debug ? pprint tracing o f | 
| 59432 | 248 | val print = pprint writeln o Pretty.para | 
| 47560 | 249 | fun print_t f = () |> mode = TPTP ? print o f | 
| 39345 | 250 | (* | 
| 46086 | 251 | val print_g = pprint tracing o Pretty.str | 
| 39345 | 252 | *) | 
| 47560 | 253 | val print_nt = pprint_nt o K o plazy | 
| 33568 
532b915afa14
don't run Nitpick at all if Kodkodi is not installed (as indicated by the $KODKODI variable)
 blanchet parents: 
33566diff
changeset | 254 | val print_v = pprint_v o K o plazy | 
| 33192 | 255 | |
| 256 | fun check_deadline () = | |
| 54816 
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
 blanchet parents: 
53815diff
changeset | 257 | if Time.compare (Time.now (), deadline) <> LESS then | 
| 
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
 blanchet parents: 
53815diff
changeset | 258 | raise TimeLimit.TimeOut | 
| 
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
 blanchet parents: 
53815diff
changeset | 259 | else | 
| 
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
 blanchet parents: 
53815diff
changeset | 260 | () | 
| 33192 | 261 | |
| 47715 
04400144c6fc
handle TPTP definitions as definitions in Nitpick rather than as axioms
 blanchet parents: 
47670diff
changeset | 262 | val (def_assm_ts, nondef_assm_ts) = | 
| 
04400144c6fc
handle TPTP definitions as definitions in Nitpick rather than as axioms
 blanchet parents: 
47670diff
changeset | 263 | if assms orelse mode <> Normal then (def_assm_ts, nondef_assm_ts) | 
| 
04400144c6fc
handle TPTP definitions as definitions in Nitpick rather than as axioms
 blanchet parents: 
47670diff
changeset | 264 | else ([], []) | 
| 34982 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34938diff
changeset | 265 | val _ = | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34938diff
changeset | 266 | if step = 0 then | 
| 47560 | 267 | print_nt (fn () => "Nitpicking formula...") | 
| 34982 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34938diff
changeset | 268 | else | 
| 47560 | 269 | pprint_nt (fn () => Pretty.chunks ( | 
| 34982 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34938diff
changeset | 270 |             pretties_for_formulas ctxt ("Nitpicking " ^
 | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34938diff
changeset | 271 | (if i <> 1 orelse n <> 1 then | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34938diff
changeset | 272 | "subgoal " ^ string_of_int i ^ " of " ^ string_of_int n | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34938diff
changeset | 273 | else | 
| 47715 
04400144c6fc
handle TPTP definitions as definitions in Nitpick rather than as axioms
 blanchet parents: 
47670diff
changeset | 274 | "goal")) [Logic.list_implies (nondef_assm_ts, orig_t)])) | 
| 53815 
e8aa538e959e
encode goal digest in spying log (to detect duplicates)
 blanchet parents: 
53802diff
changeset | 275 |     val _ = spying spy (fn () => (state, i, "starting " ^ @{make_string} mode ^ " mode"))
 | 
| 41278 
8e1cde88aae6
added a timestamp to Nitpick in verbose mode for debugging purposes;
 blanchet parents: 
41052diff
changeset | 276 | val _ = print_v (enclose "Timestamp: " "." o Date.fmt "%H:%M:%S" | 
| 
8e1cde88aae6
added a timestamp to Nitpick in verbose mode for debugging purposes;
 blanchet parents: 
41052diff
changeset | 277 | o Date.fromTimeLocal o Time.now) | 
| 33192 | 278 |     val neg_t = if falsify then Logic.mk_implies (orig_t, @{prop False})
 | 
| 279 | else orig_t | |
| 47715 
04400144c6fc
handle TPTP definitions as definitions in Nitpick rather than as axioms
 blanchet parents: 
47670diff
changeset | 280 | val conj_ts = neg_t :: def_assm_ts @ nondef_assm_ts @ evals @ these needs | 
| 38169 
b51784515471
optimize local "def"s by treating them as definitions
 blanchet parents: 
38126diff
changeset | 281 | val tfree_table = | 
| 41869 
9e367f1c9570
robust handling of types occurring in "eval" and "preconstr" options but not in the goal
 blanchet parents: 
41868diff
changeset | 282 | if merge_type_vars then merged_type_var_table_for_terms thy conj_ts | 
| 
9e367f1c9570
robust handling of types occurring in "eval" and "preconstr" options but not in the goal
 blanchet parents: 
41868diff
changeset | 283 | else [] | 
| 
9e367f1c9570
robust handling of types occurring in "eval" and "preconstr" options but not in the goal
 blanchet parents: 
41868diff
changeset | 284 | val merge_tfrees = merge_type_vars_in_term thy merge_type_vars tfree_table | 
| 
9e367f1c9570
robust handling of types occurring in "eval" and "preconstr" options but not in the goal
 blanchet parents: 
41868diff
changeset | 285 | val neg_t = neg_t |> merge_tfrees | 
| 47715 
04400144c6fc
handle TPTP definitions as definitions in Nitpick rather than as axioms
 blanchet parents: 
47670diff
changeset | 286 | val def_assm_ts = def_assm_ts |> map merge_tfrees | 
| 
04400144c6fc
handle TPTP definitions as definitions in Nitpick rather than as axioms
 blanchet parents: 
47670diff
changeset | 287 | val nondef_assm_ts = nondef_assm_ts |> map merge_tfrees | 
| 41869 
9e367f1c9570
robust handling of types occurring in "eval" and "preconstr" options but not in the goal
 blanchet parents: 
41868diff
changeset | 288 | val evals = evals |> map merge_tfrees | 
| 41876 | 289 | val needs = needs |> Option.map (map merge_tfrees) | 
| 47715 
04400144c6fc
handle TPTP definitions as definitions in Nitpick rather than as axioms
 blanchet parents: 
47670diff
changeset | 290 | val conj_ts = neg_t :: def_assm_ts @ nondef_assm_ts @ evals @ these needs | 
| 33192 | 291 | val original_max_potential = max_potential | 
| 292 | val original_max_genuine = max_genuine | |
| 293 | val max_bisim_depth = fold Integer.max bisim_depths ~1 | |
| 55888 | 294 | val case_names = case_const_names ctxt | 
| 47715 
04400144c6fc
handle TPTP definitions as definitions in Nitpick rather than as axioms
 blanchet parents: 
47670diff
changeset | 295 | val defs = def_assm_ts @ all_defs_of thy subst | 
| 42415 
10accf397ab6
use "Spec_Rules" for finding axioms -- more reliable and cleaner
 blanchet parents: 
42361diff
changeset | 296 | val nondefs = all_nondefs_of ctxt subst | 
| 41791 
01d722707a36
always unfold constant defitions marked with "nitpick_def" -- to prevent unfolding, there's already "nitpick_simp"
 blanchet parents: 
41789diff
changeset | 297 | val def_tables = const_def_tables ctxt subst defs | 
| 42415 
10accf397ab6
use "Spec_Rules" for finding axioms -- more reliable and cleaner
 blanchet parents: 
42361diff
changeset | 298 | val nondef_table = const_nondef_table nondefs | 
| 35335 | 299 | val simp_table = Unsynchronized.ref (const_simp_table ctxt subst) | 
| 300 | val psimp_table = const_psimp_table ctxt subst | |
| 35807 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35711diff
changeset | 301 | val choice_spec_table = const_choice_spec_table ctxt subst | 
| 42415 
10accf397ab6
use "Spec_Rules" for finding axioms -- more reliable and cleaner
 blanchet parents: 
42361diff
changeset | 302 | val nondefs = | 
| 
10accf397ab6
use "Spec_Rules" for finding axioms -- more reliable and cleaner
 blanchet parents: 
42361diff
changeset | 303 | nondefs |> filter_out (is_choice_spec_axiom thy choice_spec_table) | 
| 41791 
01d722707a36
always unfold constant defitions marked with "nitpick_def" -- to prevent unfolding, there's already "nitpick_simp"
 blanchet parents: 
41789diff
changeset | 304 | val intro_table = inductive_intro_table ctxt subst def_tables | 
| 33192 | 305 | val ground_thm_table = ground_theorem_table thy | 
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38214diff
changeset | 306 | val ersatz_table = ersatz_table ctxt | 
| 41007 
75275c796b46
use ML SAT solvers up to a certain time limit, then switch to faster solvers with a timeout -- this becomes necessary with the new, more powerful monotonicity calculus
 blanchet parents: 
41001diff
changeset | 307 |     val hol_ctxt as {wf_cache, ...} =
 | 
| 33192 | 308 |       {thy = thy, ctxt = ctxt, max_bisim_depth = max_bisim_depth, boxes = boxes,
 | 
| 55888 | 309 | wfs = wfs, user_axioms = user_axioms, debug = debug, whacks = whacks, | 
| 310 | binary_ints = binary_ints, destroy_constrs = destroy_constrs, | |
| 311 | specialize = specialize, star_linear_preds = star_linear_preds, | |
| 312 | total_consts = total_consts, needs = needs, tac_timeout = tac_timeout, | |
| 313 | evals = evals, case_names = case_names, def_tables = def_tables, | |
| 42415 
10accf397ab6
use "Spec_Rules" for finding axioms -- more reliable and cleaner
 blanchet parents: 
42361diff
changeset | 314 | nondef_table = nondef_table, nondefs = nondefs, simp_table = simp_table, | 
| 
10accf397ab6
use "Spec_Rules" for finding axioms -- more reliable and cleaner
 blanchet parents: 
42361diff
changeset | 315 | psimp_table = psimp_table, choice_spec_table = choice_spec_table, | 
| 
10accf397ab6
use "Spec_Rules" for finding axioms -- more reliable and cleaner
 blanchet parents: 
42361diff
changeset | 316 | intro_table = intro_table, ground_thm_table = ground_thm_table, | 
| 
10accf397ab6
use "Spec_Rules" for finding axioms -- more reliable and cleaner
 blanchet parents: 
42361diff
changeset | 317 | ersatz_table = ersatz_table, skolems = Unsynchronized.ref [], | 
| 
10accf397ab6
use "Spec_Rules" for finding axioms -- more reliable and cleaner
 blanchet parents: 
42361diff
changeset | 318 | special_funs = Unsynchronized.ref [], | 
| 33580 
45c33e97cb86
added datatype constructor cache in Nitpick (to speed up the scope enumeration) and never test more than 4096 scopes
 blanchet parents: 
33568diff
changeset | 319 | unrolled_preds = Unsynchronized.ref [], wf_cache = Unsynchronized.ref [], | 
| 
45c33e97cb86
added datatype constructor cache in Nitpick (to speed up the scope enumeration) and never test more than 4096 scopes
 blanchet parents: 
33568diff
changeset | 320 | constr_cache = Unsynchronized.ref []} | 
| 41789 
7c7b68b06c1a
don't distinguish between "fixes" and other free variables -- this confuses users
 blanchet parents: 
41772diff
changeset | 321 | val pseudo_frees = [] | 
| 41869 
9e367f1c9570
robust handling of types occurring in "eval" and "preconstr" options but not in the goal
 blanchet parents: 
41868diff
changeset | 322 | val real_frees = fold Term.add_frees conj_ts [] | 
| 
9e367f1c9570
robust handling of types occurring in "eval" and "preconstr" options but not in the goal
 blanchet parents: 
41868diff
changeset | 323 | val _ = null (fold Term.add_tvars conj_ts []) orelse | 
| 
9e367f1c9570
robust handling of types occurring in "eval" and "preconstr" options but not in the goal
 blanchet parents: 
41868diff
changeset | 324 | error "Nitpick cannot handle goals with schematic type variables." | 
| 41875 | 325 | val (nondef_ts, def_ts, need_ts, got_all_mono_user_axioms, | 
| 41803 
ef13e3b7cbaf
more work on "fix_datatype_vals" optimization (renamed "preconstruct")
 blanchet parents: 
41802diff
changeset | 326 | no_poly_user_axioms, binarize) = | 
| 47715 
04400144c6fc
handle TPTP definitions as definitions in Nitpick rather than as axioms
 blanchet parents: 
47670diff
changeset | 327 | preprocess_formulas hol_ctxt nondef_assm_ts neg_t | 
| 33192 | 328 | val got_all_user_axioms = | 
| 329 | got_all_mono_user_axioms andalso no_poly_user_axioms | |
| 330 | ||
| 331 | fun print_wf (x, (gfp, wf)) = | |
| 47560 | 332 | pprint_nt (fn () => Pretty.blk (0, | 
| 59432 | 333 |           Pretty.text ("The " ^ (if gfp then "co" else "") ^ "inductive predicate \"")
 | 
| 33192 | 334 | @ Syntax.pretty_term ctxt (Const x) :: | 
| 59432 | 335 | Pretty.text (if wf then | 
| 33192 | 336 | "\" was proved well-founded. Nitpick can compute it \ | 
| 337 | \efficiently." | |
| 338 | else | |
| 339 | "\" could not be proved well-founded. Nitpick might need to \ | |
| 340 | \unroll it."))) | |
| 341 | val _ = if verbose then List.app print_wf (!wf_cache) else () | |
| 38171 
5f2ea92319e0
fix soundness bug w.r.t. "Suc" with "binary_ints"
 blanchet parents: 
38170diff
changeset | 342 | val das_wort_formula = if falsify then "Negated conjecture" else "Formula" | 
| 33192 | 343 | val _ = | 
| 35386 
45a4e19d3ebd
more work on the new monotonicity stuff in Nitpick
 blanchet parents: 
35385diff
changeset | 344 | pprint_d (fn () => Pretty.chunks | 
| 38171 
5f2ea92319e0
fix soundness bug w.r.t. "Suc" with "binary_ints"
 blanchet parents: 
38170diff
changeset | 345 | (pretties_for_formulas ctxt das_wort_formula [hd nondef_ts] @ | 
| 35386 
45a4e19d3ebd
more work on the new monotonicity stuff in Nitpick
 blanchet parents: 
35385diff
changeset | 346 | pretties_for_formulas ctxt "Relevant definitional axiom" def_ts @ | 
| 
45a4e19d3ebd
more work on the new monotonicity stuff in Nitpick
 blanchet parents: 
35385diff
changeset | 347 | pretties_for_formulas ctxt "Relevant nondefinitional axiom" | 
| 
45a4e19d3ebd
more work on the new monotonicity stuff in Nitpick
 blanchet parents: 
35385diff
changeset | 348 | (tl nondef_ts))) | 
| 
45a4e19d3ebd
more work on the new monotonicity stuff in Nitpick
 blanchet parents: 
35385diff
changeset | 349 | val _ = List.app (ignore o Term.type_of) (nondef_ts @ def_ts) | 
| 33192 | 350 | handle TYPE (_, Ts, ts) => | 
| 351 |                    raise TYPE ("Nitpick.pick_them_nits_in_term", Ts, ts)
 | |
| 352 | ||
| 41801 
ed77524f3429
first steps in implementing "fix_datatype_vals" optimization
 blanchet parents: 
41793diff
changeset | 353 | val nondef_us = nondef_ts |> map (nut_from_term hol_ctxt Eq) | 
| 
ed77524f3429
first steps in implementing "fix_datatype_vals" optimization
 blanchet parents: 
41793diff
changeset | 354 | val def_us = def_ts |> map (nut_from_term hol_ctxt DefEq) | 
| 41875 | 355 | val need_us = need_ts |> map (nut_from_term hol_ctxt Eq) | 
| 33558 
a2db56854b83
optimized Nitpick's encoding and rendering of datatypes whose constructors don't appear in the problem
 blanchet parents: 
33556diff
changeset | 356 | val (free_names, const_names) = | 
| 41888 
79f837c2e33b
don't forget to look for constants appearing only in "need" option -- otherwise we get exceptions in "the_name" later on
 blanchet parents: 
41876diff
changeset | 357 | fold add_free_and_const_names (nondef_us @ def_us @ need_us) ([], []) | 
| 33558 
a2db56854b83
optimized Nitpick's encoding and rendering of datatypes whose constructors don't appear in the problem
 blanchet parents: 
33556diff
changeset | 358 | val (sel_names, nonsel_names) = | 
| 
a2db56854b83
optimized Nitpick's encoding and rendering of datatypes whose constructors don't appear in the problem
 blanchet parents: 
33556diff
changeset | 359 | List.partition (is_sel o nickname_of) const_names | 
| 46114 
e6d33b200f42
remove subtlety whose justification got lost in time -- the new code is possibly less precise but sounder
 blanchet parents: 
46103diff
changeset | 360 | val sound_finitizes = none_true finitizes | 
| 33558 
a2db56854b83
optimized Nitpick's encoding and rendering of datatypes whose constructors don't appear in the problem
 blanchet parents: 
33556diff
changeset | 361 | (* | 
| 41888 
79f837c2e33b
don't forget to look for constants appearing only in "need" option -- otherwise we get exceptions in "the_name" later on
 blanchet parents: 
41876diff
changeset | 362 | val _ = | 
| 
79f837c2e33b
don't forget to look for constants appearing only in "need" option -- otherwise we get exceptions in "the_name" later on
 blanchet parents: 
41876diff
changeset | 363 | List.app (print_g o string_for_nut ctxt) (nondef_us @ def_us @ need_us) | 
| 33558 
a2db56854b83
optimized Nitpick's encoding and rendering of datatypes whose constructors don't appear in the problem
 blanchet parents: 
33556diff
changeset | 364 | *) | 
| 
a2db56854b83
optimized Nitpick's encoding and rendering of datatypes whose constructors don't appear in the problem
 blanchet parents: 
33556diff
changeset | 365 | |
| 34121 
5e831d805118
get rid of polymorphic equality in Nitpick's code + a few minor cleanups
 blanchet parents: 
34039diff
changeset | 366 | val unique_scope = forall (curry (op =) 1 o length o snd) cards_assigns | 
| 35385 
29f81babefd7
improved precision of infinite "shallow" datatypes in Nitpick;
 blanchet parents: 
35384diff
changeset | 367 | fun monotonicity_message Ts extra = | 
| 58928 
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
 wenzelm parents: 
58892diff
changeset | 368 | let val pretties = map (pretty_maybe_quote keywords o pretty_for_type ctxt) Ts in | 
| 38188 | 369 | Pretty.blk (0, | 
| 59432 | 370 |           Pretty.text ("The type" ^ plural_s_for_list pretties ^ " ") @
 | 
| 38188 | 371 | pretty_serial_commas "and" pretties @ | 
| 59432 | 372 |           Pretty.text (" " ^
 | 
| 42959 | 373 | (if none_true monos then | 
| 374 | "passed the monotonicity test" | |
| 375 | else | |
| 376 | (if length pretties = 1 then "is" else "are") ^ | |
| 377 | " considered monotonic") ^ | |
| 378 | ". " ^ extra)) | |
| 35385 
29f81babefd7
improved precision of infinite "shallow" datatypes in Nitpick;
 blanchet parents: 
35384diff
changeset | 379 | end | 
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35408diff
changeset | 380 | fun is_type_fundamentally_monotonic T = | 
| 55890 | 381 | (is_data_type ctxt T andalso not (is_quot_type ctxt T) andalso | 
| 37256 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37213diff
changeset | 382 | (not (is_pure_typedef ctxt T) orelse is_univ_typedef ctxt T)) orelse | 
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38214diff
changeset | 383 | is_number_type ctxt T orelse is_bit_type T | 
| 35385 
29f81babefd7
improved precision of infinite "shallow" datatypes in Nitpick;
 blanchet parents: 
35384diff
changeset | 384 | fun is_type_actually_monotonic T = | 
| 54816 
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
 blanchet parents: 
53815diff
changeset | 385 | TimeLimit.timeLimit tac_timeout (formulas_monotonic hol_ctxt binarize T) | 
| 
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
 blanchet parents: 
53815diff
changeset | 386 | (nondef_ts, def_ts) | 
| 47716 | 387 | handle TimeLimit.TimeOut => false | 
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35408diff
changeset | 388 | fun is_type_kind_of_monotonic T = | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35408diff
changeset | 389 | case triple_lookup (type_match thy) monos T of | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35408diff
changeset | 390 | SOME (SOME false) => false | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35408diff
changeset | 391 | | _ => is_type_actually_monotonic T | 
| 34936 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34935diff
changeset | 392 | fun is_type_monotonic T = | 
| 33192 | 393 | unique_scope orelse | 
| 394 | case triple_lookup (type_match thy) monos T of | |
| 395 | SOME (SOME b) => b | |
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35408diff
changeset | 396 | | _ => is_type_fundamentally_monotonic T orelse | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35408diff
changeset | 397 | is_type_actually_monotonic T | 
| 55890 | 398 | fun is_deep_data_type_finitizable T = | 
| 41793 
c7a2669ae75d
tweaked Nitpick based on C++ memory model example
 blanchet parents: 
41791diff
changeset | 399 | triple_lookup (type_match thy) finitizes T = SOME (SOME true) | 
| 55890 | 400 |     fun is_shallow_data_type_finitizable (T as Type (@{type_name fun_box}, _)) =
 | 
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35408diff
changeset | 401 | is_type_kind_of_monotonic T | 
| 55890 | 402 | | is_shallow_data_type_finitizable T = | 
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35408diff
changeset | 403 | case triple_lookup (type_match thy) finitizes T of | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35408diff
changeset | 404 | SOME (SOME b) => b | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35408diff
changeset | 405 | | _ => is_type_kind_of_monotonic T | 
| 55890 | 406 | fun is_data_type_deep T = | 
| 55888 | 407 |       T = @{typ unit} orelse T = nat_T orelse is_word_type T orelse
 | 
| 35385 
29f81babefd7
improved precision of infinite "shallow" datatypes in Nitpick;
 blanchet parents: 
35384diff
changeset | 408 | exists (curry (op =) T o domain_type o type_of) sel_names | 
| 35386 
45a4e19d3ebd
more work on the new monotonicity stuff in Nitpick
 blanchet parents: 
35385diff
changeset | 409 | val all_Ts = ground_types_in_terms hol_ctxt binarize (nondef_ts @ def_ts) | 
| 35408 | 410 | |> sort Term_Ord.typ_ord | 
| 38214 | 411 | val _ = | 
| 412 | if verbose andalso binary_ints = SOME true andalso | |
| 413 | exists (member (op =) [nat_T, int_T]) all_Ts then | |
| 414 | print_v (K "The option \"binary_ints\" will be ignored because of the \ | |
| 415 | \presence of rationals, reals, \"Suc\", \"gcd\", or \"lcm\" \ | |
| 55888 | 416 | \in the problem.") | 
| 38214 | 417 | else | 
| 418 | () | |
| 34982 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34938diff
changeset | 419 | val (mono_Ts, nonmono_Ts) = List.partition is_type_monotonic all_Ts | 
| 33192 | 420 | val _ = | 
| 34936 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34935diff
changeset | 421 | if verbose andalso not unique_scope then | 
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35408diff
changeset | 422 | case filter_out is_type_fundamentally_monotonic mono_Ts of | 
| 34936 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34935diff
changeset | 423 | [] => () | 
| 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34935diff
changeset | 424 | | interesting_mono_Ts => | 
| 38188 | 425 | pprint_v (K (monotonicity_message interesting_mono_Ts | 
| 426 | "Nitpick might be able to skip some scopes.")) | |
| 33192 | 427 | else | 
| 428 | () | |
| 35385 
29f81babefd7
improved precision of infinite "shallow" datatypes in Nitpick;
 blanchet parents: 
35384diff
changeset | 429 | val (deep_dataTs, shallow_dataTs) = | 
| 55890 | 430 | all_Ts |> filter (is_data_type ctxt) | 
| 431 | |> List.partition is_data_type_deep | |
| 35385 
29f81babefd7
improved precision of infinite "shallow" datatypes in Nitpick;
 blanchet parents: 
35384diff
changeset | 432 | val finitizable_dataTs = | 
| 41793 
c7a2669ae75d
tweaked Nitpick based on C++ memory model example
 blanchet parents: 
41791diff
changeset | 433 | (deep_dataTs |> filter_out (is_finite_type hol_ctxt) | 
| 55890 | 434 | |> filter is_deep_data_type_finitizable) @ | 
| 41793 
c7a2669ae75d
tweaked Nitpick based on C++ memory model example
 blanchet parents: 
41791diff
changeset | 435 | (shallow_dataTs |> filter_out (is_finite_type hol_ctxt) | 
| 55890 | 436 | |> filter is_shallow_data_type_finitizable) | 
| 35385 
29f81babefd7
improved precision of infinite "shallow" datatypes in Nitpick;
 blanchet parents: 
35384diff
changeset | 437 | val _ = | 
| 
29f81babefd7
improved precision of infinite "shallow" datatypes in Nitpick;
 blanchet parents: 
35384diff
changeset | 438 | if verbose andalso not (null finitizable_dataTs) then | 
| 38188 | 439 | pprint_v (K (monotonicity_message finitizable_dataTs | 
| 440 | "Nitpick can use a more precise finite encoding.")) | |
| 35385 
29f81babefd7
improved precision of infinite "shallow" datatypes in Nitpick;
 blanchet parents: 
35384diff
changeset | 441 | else | 
| 
29f81babefd7
improved precision of infinite "shallow" datatypes in Nitpick;
 blanchet parents: 
35384diff
changeset | 442 | () | 
| 33192 | 443 | (* | 
| 36128 
a3d8d5329438
make Nitpick output everything to tracing in debug mode;
 blanchet parents: 
36126diff
changeset | 444 | val _ = print_g "Monotonic types:" | 
| 
a3d8d5329438
make Nitpick output everything to tracing in debug mode;
 blanchet parents: 
36126diff
changeset | 445 | val _ = List.app (print_g o string_for_type ctxt) mono_Ts | 
| 
a3d8d5329438
make Nitpick output everything to tracing in debug mode;
 blanchet parents: 
36126diff
changeset | 446 | val _ = print_g "Nonmonotonic types:" | 
| 
a3d8d5329438
make Nitpick output everything to tracing in debug mode;
 blanchet parents: 
36126diff
changeset | 447 | val _ = List.app (print_g o string_for_type ctxt) nonmono_Ts | 
| 33192 | 448 | *) | 
| 449 | ||
| 36384 | 450 | val incremental = Int.max (max_potential, max_genuine) >= 2 | 
| 451 | val actual_sat_solver = | |
| 33192 | 452 | if sat_solver <> "smart" then | 
| 36384 | 453 | if incremental andalso | 
| 34936 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34935diff
changeset | 454 | not (member (op =) (Kodkod_SAT.configured_sat_solvers true) | 
| 35333 
f61de25f71f9
distinguish between Kodkodi warnings and errors in Nitpick;
 blanchet parents: 
35280diff
changeset | 455 | sat_solver) then | 
| 47560 | 456 |           (print_nt (K ("An incremental SAT solver is required: \"SAT4J\" will \
 | 
| 457 | \be used instead of " ^ quote sat_solver ^ ".")); | |
| 33192 | 458 | "SAT4J") | 
| 459 | else | |
| 460 | sat_solver | |
| 461 | else | |
| 36384 | 462 | Kodkod_SAT.smart_sat_solver_name incremental | 
| 33192 | 463 | val _ = | 
| 464 | if sat_solver = "smart" then | |
| 36384 | 465 | print_v (fn () => | 
| 466 | "Using SAT solver " ^ quote actual_sat_solver ^ ". The following" ^ | |
| 467 | (if incremental then " incremental " else " ") ^ | |
| 468 | "solvers are configured: " ^ | |
| 469 | commas_quote (Kodkod_SAT.configured_sat_solvers incremental) ^ ".") | |
| 33192 | 470 | else | 
| 471 | () | |
| 472 | ||
| 473 | val too_big_scopes = Unsynchronized.ref [] | |
| 474 | ||
| 35185 
9b8f351cced6
added yet another hint to Nitpick's output, this time warning about problems for which nothing was effectively tested
 blanchet parents: 
35183diff
changeset | 475 | fun problem_for_scope unsound | 
| 55890 | 476 |             (scope as {card_assigns, bits, bisim_depth, data_types, ofs, ...}) =
 | 
| 33192 | 477 | let | 
| 478 | val _ = not (exists (fn other => scope_less_eq other scope) | |
| 34936 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34935diff
changeset | 479 | (!too_big_scopes)) orelse | 
| 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34935diff
changeset | 480 |                 raise TOO_LARGE ("Nitpick.pick_them_nits_in_term.\
 | 
| 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34935diff
changeset | 481 | \problem_for_scope", "too large scope") | 
| 33192 | 482 | (* | 
| 36128 
a3d8d5329438
make Nitpick output everything to tracing in debug mode;
 blanchet parents: 
36126diff
changeset | 483 | val _ = print_g "Offsets:" | 
| 33192 | 484 | val _ = List.app (fn (T, j0) => | 
| 36128 
a3d8d5329438
make Nitpick output everything to tracing in debug mode;
 blanchet parents: 
36126diff
changeset | 485 | print_g (string_for_type ctxt T ^ " = " ^ | 
| 
a3d8d5329438
make Nitpick output everything to tracing in debug mode;
 blanchet parents: 
36126diff
changeset | 486 | string_of_int j0)) | 
| 33192 | 487 | (Typtab.dest ofs) | 
| 488 | *) | |
| 41858 
37ce158d6266
if "total_consts" is set, report cex's as quasi-genuine
 blanchet parents: 
41856diff
changeset | 489 | val effective_total_consts = | 
| 41856 | 490 | case total_consts of | 
| 491 | SOME b => b | |
| 55890 | 492 | | NONE => forall (is_exact_type data_types true) all_Ts | 
| 33192 | 493 | val main_j0 = offset_of_type ofs bool_T | 
| 494 | val (nat_card, nat_j0) = spec_of_type scope nat_T | |
| 495 | val (int_card, int_j0) = spec_of_type scope int_T | |
| 34936 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34935diff
changeset | 496 | val _ = (nat_j0 = main_j0 andalso int_j0 = main_j0) orelse | 
| 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34935diff
changeset | 497 |                 raise BAD ("Nitpick.pick_them_nits_in_term.problem_for_scope",
 | 
| 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34935diff
changeset | 498 | "bad offsets") | 
| 33192 | 499 | val kk = kodkod_constrs peephole_optim nat_card int_card main_j0 | 
| 500 | val (free_names, rep_table) = | |
| 38170 | 501 | choose_reps_for_free_vars scope pseudo_frees free_names | 
| 502 | NameTable.empty | |
| 33192 | 503 | val (sel_names, rep_table) = choose_reps_for_all_sels scope rep_table | 
| 38170 | 504 | val (nonsel_names, rep_table) = | 
| 41858 
37ce158d6266
if "total_consts" is set, report cex's as quasi-genuine
 blanchet parents: 
41856diff
changeset | 505 | choose_reps_for_consts scope effective_total_consts nonsel_names | 
| 
37ce158d6266
if "total_consts" is set, report cex's as quasi-genuine
 blanchet parents: 
41856diff
changeset | 506 | rep_table | 
| 38182 | 507 | val (guiltiest_party, min_highest_arity) = | 
| 508 | NameTable.fold (fn (name, R) => fn (s, n) => | |
| 509 | let val n' = arity_of_rep R in | |
| 510 | if n' > n then (nickname_of name, n') else (s, n) | |
| 511 |                              end) rep_table ("", 1)
 | |
| 33192 | 512 | val min_univ_card = | 
| 36384 | 513 | NameTable.fold (Integer.max o min_univ_card_of_rep o snd) rep_table | 
| 34126 | 514 | (univ_card nat_card int_card main_j0 [] KK.True) | 
| 52202 | 515 | val _ = check_arity guiltiest_party min_univ_card min_highest_arity | 
| 33192 | 516 | |
| 41802 | 517 | val def_us = | 
| 518 | def_us |> map (choose_reps_in_nut scope unsound rep_table true) | |
| 519 | val nondef_us = | |
| 520 | nondef_us |> map (choose_reps_in_nut scope unsound rep_table false) | |
| 41875 | 521 | val need_us = | 
| 522 | need_us |> map (choose_reps_in_nut scope unsound rep_table false) | |
| 33745 | 523 | (* | 
| 36128 
a3d8d5329438
make Nitpick output everything to tracing in debug mode;
 blanchet parents: 
36126diff
changeset | 524 | val _ = List.app (print_g o string_for_nut ctxt) | 
| 33192 | 525 | (free_names @ sel_names @ nonsel_names @ | 
| 41888 
79f837c2e33b
don't forget to look for constants appearing only in "need" option -- otherwise we get exceptions in "the_name" later on
 blanchet parents: 
41876diff
changeset | 526 | nondef_us @ def_us @ need_us) | 
| 33745 | 527 | *) | 
| 33192 | 528 | val (free_rels, pool, rel_table) = | 
| 529 | rename_free_vars free_names initial_pool NameTable.empty | |
| 530 | val (sel_rels, pool, rel_table) = | |
| 531 | rename_free_vars sel_names pool rel_table | |
| 532 | val (other_rels, pool, rel_table) = | |
| 533 | rename_free_vars nonsel_names pool rel_table | |
| 41802 | 534 | val nondef_us = nondef_us |> map (rename_vars_in_nut pool rel_table) | 
| 535 | val def_us = def_us |> map (rename_vars_in_nut pool rel_table) | |
| 41875 | 536 | val need_us = need_us |> map (rename_vars_in_nut pool rel_table) | 
| 35386 
45a4e19d3ebd
more work on the new monotonicity stuff in Nitpick
 blanchet parents: 
35385diff
changeset | 537 | val nondef_fs = map (kodkod_formula_from_nut ofs kk) nondef_us | 
| 35280 
54ab4921f826
fixed a few bugs in Nitpick and removed unreferenced variables
 blanchet parents: 
35220diff
changeset | 538 | val def_fs = map (kodkod_formula_from_nut ofs kk) def_us | 
| 35386 
45a4e19d3ebd
more work on the new monotonicity stuff in Nitpick
 blanchet parents: 
35385diff
changeset | 539 | val formula = fold (fold s_and) [def_fs, nondef_fs] KK.True | 
| 35185 
9b8f351cced6
added yet another hint to Nitpick's output, this time warning about problems for which nothing was effectively tested
 blanchet parents: 
35183diff
changeset | 540 | val comment = (if unsound then "unsound" else "sound") ^ "\n" ^ | 
| 37146 
f652333bbf8e
renamed structure PrintMode to Print_Mode, keeping the old name as legacy alias for some time;
 wenzelm parents: 
36913diff
changeset | 541 | Print_Mode.setmp [] multiline_string_for_scope scope | 
| 34998 | 542 | val kodkod_sat_solver = | 
| 36384 | 543 | Kodkod_SAT.sat_solver_spec actual_sat_solver |> snd | 
| 34124 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 blanchet parents: 
34123diff
changeset | 544 | val bit_width = if bits = 0 then 16 else bits + 1 | 
| 36384 | 545 | val delay = | 
| 546 | if unsound then | |
| 54816 
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
 blanchet parents: 
53815diff
changeset | 547 | unsound_delay_for_timeout (Time.- (deadline, Time.now ())) | 
| 36384 | 548 | else | 
| 549 | 0 | |
| 550 |         val settings = [("solver", commas_quote kodkod_sat_solver),
 | |
| 34124 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 blanchet parents: 
34123diff
changeset | 551 |                         ("bit_width", string_of_int bit_width),
 | 
| 38124 | 552 |                         ("symmetry_breaking", string_of_int kodkod_sym_break),
 | 
| 36386 
2132f15b366f
Fruhjahrsputz: remove three mostly useless Nitpick options
 blanchet parents: 
36385diff
changeset | 553 |                         ("sharing", "3"),
 | 
| 
2132f15b366f
Fruhjahrsputz: remove three mostly useless Nitpick options
 blanchet parents: 
36385diff
changeset | 554 |                         ("flatten", "false"),
 | 
| 33192 | 555 |                         ("delay", signed_string_of_int delay)]
 | 
| 556 | val plain_rels = free_rels @ other_rels | |
| 557 | val plain_bounds = map (bound_for_plain_rel ctxt debug) plain_rels | |
| 558 | val plain_axioms = map (declarative_axiom_for_plain_rel kk) plain_rels | |
| 41995 | 559 | val need_vals = | 
| 560 |           map (fn dtype as {typ, ...} =>
 | |
| 55890 | 561 | (typ, needed_values_for_data_type need_us ofs dtype)) | 
| 562 | data_types | |
| 41995 | 563 | val sel_bounds = | 
| 55890 | 564 | map (bound_for_sel_rel ctxt debug need_vals data_types) sel_rels | 
| 35190 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35185diff
changeset | 565 | val dtype_axioms = | 
| 55890 | 566 | declarative_axioms_for_data_types hol_ctxt binarize need_us need_vals | 
| 567 | datatype_sym_break bits ofs kk rel_table data_types | |
| 33192 | 568 | val declarative_axioms = plain_axioms @ dtype_axioms | 
| 35220 
2bcdae5f4fdb
added support for nonstandard "nat"s to Nitpick and fixed bugs in binary "nat"s and "int"s
 blanchet parents: 
35190diff
changeset | 569 | val univ_card = Int.max (univ_card nat_card int_card main_j0 | 
| 
2bcdae5f4fdb
added support for nonstandard "nat"s to Nitpick and fixed bugs in binary "nat"s and "int"s
 blanchet parents: 
35190diff
changeset | 570 | (plain_bounds @ sel_bounds) formula, | 
| 
2bcdae5f4fdb
added support for nonstandard "nat"s to Nitpick and fixed bugs in binary "nat"s and "int"s
 blanchet parents: 
35190diff
changeset | 571 | main_j0 |> bits > 0 ? Integer.add (bits + 1)) | 
| 38126 | 572 | val (built_in_bounds, built_in_axioms) = | 
| 39345 | 573 | bounds_and_axioms_for_built_in_rels_in_formulas debug univ_card | 
| 574 | nat_card int_card main_j0 (formula :: declarative_axioms) | |
| 33192 | 575 | val bounds = built_in_bounds @ plain_bounds @ sel_bounds | 
| 576 | |> not debug ? merge_bounds | |
| 38126 | 577 | val axioms = built_in_axioms @ declarative_axioms | 
| 33192 | 578 | val highest_arity = | 
| 579 | fold Integer.max (map (fst o fst) (maps fst bounds)) 0 | |
| 38126 | 580 | val formula = fold_rev s_and axioms formula | 
| 34124 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 blanchet parents: 
34123diff
changeset | 581 | val _ = if bits = 0 then () else check_bits bits formula | 
| 52202 | 582 | val _ = if formula = KK.False then () | 
| 38182 | 583 | else check_arity "" univ_card highest_arity | 
| 33192 | 584 | in | 
| 585 |         SOME ({comment = comment, settings = settings, univ_card = univ_card,
 | |
| 586 | tuple_assigns = [], bounds = bounds, | |
| 35280 
54ab4921f826
fixed a few bugs in Nitpick and removed unreferenced variables
 blanchet parents: 
35220diff
changeset | 587 | int_bounds = if bits = 0 then sequential_int_bounds univ_card | 
| 
54ab4921f826
fixed a few bugs in Nitpick and removed unreferenced variables
 blanchet parents: 
35220diff
changeset | 588 | else pow_of_two_int_bounds bits main_j0, | 
| 33192 | 589 | expr_assigns = [], formula = formula}, | 
| 590 |               {free_names = free_names, sel_names = sel_names,
 | |
| 591 | nonsel_names = nonsel_names, rel_table = rel_table, | |
| 35386 
45a4e19d3ebd
more work on the new monotonicity stuff in Nitpick
 blanchet parents: 
35385diff
changeset | 592 | unsound = unsound, scope = scope}) | 
| 33192 | 593 | end | 
| 34124 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 blanchet parents: 
34123diff
changeset | 594 | handle TOO_LARGE (loc, msg) => | 
| 34936 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34935diff
changeset | 595 | if loc = "Nitpick_Kodkod.check_arity" andalso | 
| 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34935diff
changeset | 596 | not (Typtab.is_empty ofs) then | 
| 35185 
9b8f351cced6
added yet another hint to Nitpick's output, this time warning about problems for which nothing was effectively tested
 blanchet parents: 
35183diff
changeset | 597 | problem_for_scope unsound | 
| 35190 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35185diff
changeset | 598 |                    {hol_ctxt = hol_ctxt, binarize = binarize,
 | 
| 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35185diff
changeset | 599 | card_assigns = card_assigns, bits = bits, | 
| 55890 | 600 | bisim_depth = bisim_depth, data_types = data_types, | 
| 35190 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35185diff
changeset | 601 | ofs = Typtab.empty} | 
| 33192 | 602 | else if loc = "Nitpick.pick_them_nits_in_term.\ | 
| 603 | \problem_for_scope" then | |
| 604 | NONE | |
| 605 | else | |
| 606 | (Unsynchronized.change too_big_scopes (cons scope); | |
| 41992 
0e4716fa330a
reword Nitpick's wording concerning potential counterexamples
 blanchet parents: 
41985diff
changeset | 607 | print_v (fn () => | 
| 
0e4716fa330a
reword Nitpick's wording concerning potential counterexamples
 blanchet parents: 
41985diff
changeset | 608 | "Limit reached: " ^ msg ^ ". Skipping " ^ | 
| 
0e4716fa330a
reword Nitpick's wording concerning potential counterexamples
 blanchet parents: 
41985diff
changeset | 609 | (if unsound then "potential component of " else "") ^ | 
| 
0e4716fa330a
reword Nitpick's wording concerning potential counterexamples
 blanchet parents: 
41985diff
changeset | 610 | "scope."); | 
| 33192 | 611 | NONE) | 
| 35280 
54ab4921f826
fixed a few bugs in Nitpick and removed unreferenced variables
 blanchet parents: 
35220diff
changeset | 612 | | TOO_SMALL (_, msg) => | 
| 41992 
0e4716fa330a
reword Nitpick's wording concerning potential counterexamples
 blanchet parents: 
41985diff
changeset | 613 | (print_v (fn () => | 
| 
0e4716fa330a
reword Nitpick's wording concerning potential counterexamples
 blanchet parents: 
41985diff
changeset | 614 | "Limit reached: " ^ msg ^ ". Skipping " ^ | 
| 
0e4716fa330a
reword Nitpick's wording concerning potential counterexamples
 blanchet parents: 
41985diff
changeset | 615 | (if unsound then "potential component of " else "") ^ | 
| 
0e4716fa330a
reword Nitpick's wording concerning potential counterexamples
 blanchet parents: 
41985diff
changeset | 616 | "scope."); | 
| 34124 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 blanchet parents: 
34123diff
changeset | 617 | NONE) | 
| 33192 | 618 | |
| 55888 | 619 | val das_wort_model = if falsify then "counterexample" else "model" | 
| 33192 | 620 | |
| 621 | val scopes = Unsynchronized.ref [] | |
| 622 | val generated_scopes = Unsynchronized.ref [] | |
| 35185 
9b8f351cced6
added yet another hint to Nitpick's output, this time warning about problems for which nothing was effectively tested
 blanchet parents: 
35183diff
changeset | 623 | val generated_problems = Unsynchronized.ref ([] : rich_problem list) | 
| 33192 | 624 | val checked_problems = Unsynchronized.ref (SOME []) | 
| 625 | val met_potential = Unsynchronized.ref 0 | |
| 626 | ||
| 627 | fun update_checked_problems problems = | |
| 628 | List.app (Unsynchronized.change checked_problems o Option.map o cons | |
| 629 | o nth problems) | |
| 35333 
f61de25f71f9
distinguish between Kodkodi warnings and errors in Nitpick;
 blanchet parents: 
35280diff
changeset | 630 | fun show_kodkod_warning "" = () | 
| 47560 | 631 | | show_kodkod_warning s = print_nt (fn () => "Kodkod warning: " ^ s ^ ".") | 
| 33192 | 632 | |
| 633 | fun print_and_check_model genuine bounds | |
| 634 |             ({free_names, sel_names, nonsel_names, rel_table, scope, ...}
 | |
| 635 | : problem_extension) = | |
| 636 | let | |
| 47752 | 637 | val _ = | 
| 638 | print_t (fn () => | |
| 639 | "% SZS status " ^ | |
| 640 | (if genuine then | |
| 641 | if falsify then "CounterSatisfiable" else "Satisfiable" | |
| 642 | else | |
| 643 | "Unknown") ^ "\n" ^ | |
| 644 | "% SZS output start FiniteModel") | |
| 33192 | 645 | val (reconstructed_model, codatatypes_ok) = | 
| 41993 
bd6296de1432
reintroduced "show_skolems" option -- useful when too many Skolems are displayed
 blanchet parents: 
41992diff
changeset | 646 | reconstruct_hol_model | 
| 55889 | 647 |               {show_types = show_types, show_skolems = show_skolems,
 | 
| 41993 
bd6296de1432
reintroduced "show_skolems" option -- useful when too many Skolems are displayed
 blanchet parents: 
41992diff
changeset | 648 | show_consts = show_consts} | 
| 38170 | 649 | scope formats atomss real_frees pseudo_frees free_names sel_names | 
| 650 | nonsel_names rel_table bounds | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 651 | val genuine_means_genuine = | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 652 | got_all_user_axioms andalso none_true wfs andalso | 
| 41858 
37ce158d6266
if "total_consts" is set, report cex's as quasi-genuine
 blanchet parents: 
41856diff
changeset | 653 | sound_finitizes andalso total_consts <> SOME true andalso | 
| 
37ce158d6266
if "total_consts" is set, report cex's as quasi-genuine
 blanchet parents: 
41856diff
changeset | 654 | codatatypes_ok | 
| 47715 
04400144c6fc
handle TPTP definitions as definitions in Nitpick rather than as axioms
 blanchet parents: 
47670diff
changeset | 655 | fun assms_prop () = | 
| 
04400144c6fc
handle TPTP definitions as definitions in Nitpick rather than as axioms
 blanchet parents: 
47670diff
changeset | 656 | Logic.mk_conjunction_list (neg_t :: def_assm_ts @ nondef_assm_ts) | 
| 33192 | 657 | in | 
| 47752 | 658 | (pprint_a (Pretty.chunks | 
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 659 | [Pretty.blk (0, | 
| 59432 | 660 | (Pretty.text ((if mode = Auto_Try then "Auto " else "") ^ | 
| 43022 | 661 | "Nitpick found a" ^ | 
| 41992 
0e4716fa330a
reword Nitpick's wording concerning potential counterexamples
 blanchet parents: 
41985diff
changeset | 662 | (if not genuine then " potentially spurious " | 
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 663 | else if genuine_means_genuine then " " | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 664 | else " quasi genuine ") ^ das_wort_model) @ | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 665 | (case pretties_for_scope scope verbose of | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 666 | [] => [] | 
| 59432 | 667 | | pretties => Pretty.text " for " @ pretties) @ | 
| 59429 | 668 | [Pretty.str ":", Pretty.fbrk])), | 
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 669 | Pretty.indent indent_size reconstructed_model]); | 
| 47564 | 670 | print_t (K "% SZS output end FiniteModel"); | 
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 671 | if genuine then | 
| 55888 | 672 | (if check_genuine then | 
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 673 | case prove_hol_model scope tac_timeout free_names sel_names | 
| 38169 
b51784515471
optimize local "def"s by treating them as definitions
 blanchet parents: 
38126diff
changeset | 674 | rel_table bounds (assms_prop ()) of | 
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 675 | SOME true => | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 676 |                 print ("Confirmation by \"auto\": The above " ^
 | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 677 | das_wort_model ^ " is really genuine.") | 
| 33192 | 678 | | SOME false => | 
| 34982 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34938diff
changeset | 679 | if genuine_means_genuine then | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34938diff
changeset | 680 |                   error ("A supposedly genuine " ^ das_wort_model ^ " was \
 | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34938diff
changeset | 681 | \shown to be spurious by \"auto\".\nThis should never \ | 
| 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34938diff
changeset | 682 | \happen.\nPlease send a bug report to blanchet\ | 
| 33192 | 683 | \te@in.tum.de.") | 
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 684 | else | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 685 |                    print ("Refutation by \"auto\": The above " ^
 | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 686 | das_wort_model ^ " is spurious.") | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 687 | | NONE => print "No confirmation by \"auto\"." | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 688 | else | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 689 | (); | 
| 41048 
d5ebe94248ad
added a hint when the user obviously just forgot a colon after the lemma's name
 blanchet parents: 
41007diff
changeset | 690 | if has_lonely_bool_var orig_t then | 
| 
d5ebe94248ad
added a hint when the user obviously just forgot a colon after the lemma's name
 blanchet parents: 
41007diff
changeset | 691 | print "Hint: Maybe you forgot a colon after the lemma's name?" | 
| 
d5ebe94248ad
added a hint when the user obviously just forgot a colon after the lemma's name
 blanchet parents: 
41007diff
changeset | 692 | else if has_syntactic_sorts orig_t then | 
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 693 | print "Hint: Maybe you forgot a type constraint?" | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 694 | else | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 695 | (); | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 696 | if not genuine_means_genuine then | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 697 | if no_poly_user_axioms then | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 698 | let | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 699 | val options = | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 700 | [] |> not got_all_mono_user_axioms | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 701 |                           ? cons ("user_axioms", "\"true\"")
 | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 702 | |> not (none_true wfs) | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 703 |                           ? cons ("wf", "\"smart\" or \"false\"")
 | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 704 | |> not sound_finitizes | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 705 |                           ? cons ("finitize", "\"smart\" or \"false\"")
 | 
| 41858 
37ce158d6266
if "total_consts" is set, report cex's as quasi-genuine
 blanchet parents: 
41856diff
changeset | 706 | |> total_consts = SOME true | 
| 
37ce158d6266
if "total_consts" is set, report cex's as quasi-genuine
 blanchet parents: 
41856diff
changeset | 707 |                           ? cons ("total_consts", "\"smart\" or \"false\"")
 | 
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 708 | |> not codatatypes_ok | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 709 |                           ? cons ("bisim_depth", "a nonnegative value")
 | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 710 | val ss = | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 711 | map (fn (name, value) => quote name ^ " set to " ^ value) | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 712 | options | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 713 | in | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 714 |                   print ("Try again with " ^
 | 
| 41872 | 715 | space_implode " " (serial_commas "and" ss) ^ | 
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 716 | " to confirm that the " ^ das_wort_model ^ | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 717 | " is genuine.") | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 718 | end | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 719 | else | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 720 |                 print ("Nitpick is unable to guarantee the authenticity of \
 | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 721 | \the " ^ das_wort_model ^ " in the presence of \ | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 722 | \polymorphic axioms.") | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 723 | else | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 724 | (); | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 725 | NONE) | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 726 | else | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 727 | if not genuine then | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 728 | (Unsynchronized.inc met_potential; | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 729 | if check_potential then | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 730 | let | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 731 | val status = prove_hol_model scope tac_timeout free_names | 
| 38169 
b51784515471
optimize local "def"s by treating them as definitions
 blanchet parents: 
38126diff
changeset | 732 | sel_names rel_table bounds | 
| 
b51784515471
optimize local "def"s by treating them as definitions
 blanchet parents: 
38126diff
changeset | 733 | (assms_prop ()) | 
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 734 | in | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 735 | (case status of | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 736 |                      SOME true => print ("Confirmation by \"auto\": The \
 | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 737 | \above " ^ das_wort_model ^ | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 738 | " is genuine.") | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 739 |                    | SOME false => print ("Refutation by \"auto\": The above " ^
 | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 740 | das_wort_model ^ " is spurious.") | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 741 | | NONE => print "No confirmation by \"auto\"."); | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 742 | status | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 743 | end | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 744 | else | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 745 | NONE) | 
| 33192 | 746 | else | 
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 747 | NONE) | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 748 | |> pair genuine_means_genuine | 
| 33192 | 749 | end | 
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 750 | fun solve_any_problem (found_really_genuine, max_potential, max_genuine, | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 751 | donno) first_time problems = | 
| 33192 | 752 | let | 
| 753 | val max_potential = Int.max (0, max_potential) | |
| 754 | val max_genuine = Int.max (0, max_genuine) | |
| 755 | fun print_and_check genuine (j, bounds) = | |
| 756 | print_and_check_model genuine bounds (snd (nth problems j)) | |
| 757 | val max_solutions = max_potential + max_genuine | |
| 36384 | 758 | |> not incremental ? Integer.min 1 | 
| 33192 | 759 | in | 
| 760 | if max_solutions <= 0 then | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 761 | (found_really_genuine, 0, 0, donno) | 
| 33192 | 762 | else | 
| 41793 
c7a2669ae75d
tweaked Nitpick based on C++ memory model example
 blanchet parents: 
41791diff
changeset | 763 | case KK.solve_any_problem debug overlord deadline max_threads | 
| 
c7a2669ae75d
tweaked Nitpick based on C++ memory model example
 blanchet parents: 
41791diff
changeset | 764 | max_solutions (map fst problems) of | 
| 49024 | 765 | KK.JavaNotFound => | 
| 55889 | 766 | (print_nt (K java_not_found_message); | 
| 35696 
17ae461d6133
show nice error message in Nitpick when "java" is not available
 blanchet parents: 
35671diff
changeset | 767 | (found_really_genuine, max_potential, max_genuine, donno + 1)) | 
| 38516 
307669429dc1
gracefully handle the case where the JVM is too old in Nitpick
 blanchet parents: 
38240diff
changeset | 768 | | KK.JavaTooOld => | 
| 55889 | 769 | (print_nt (K java_too_old_message); | 
| 38516 
307669429dc1
gracefully handle the case where the JVM is too old in Nitpick
 blanchet parents: 
38240diff
changeset | 770 | (found_really_genuine, max_potential, max_genuine, donno + 1)) | 
| 35696 
17ae461d6133
show nice error message in Nitpick when "java" is not available
 blanchet parents: 
35671diff
changeset | 771 | | KK.KodkodiNotInstalled => | 
| 55889 | 772 | (print_nt (K kodkodi_not_installed_message); | 
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 773 | (found_really_genuine, max_potential, max_genuine, donno + 1)) | 
| 50487 | 774 | | KK.KodkodiTooOld => | 
| 55889 | 775 | (print_nt (K kodkodi_too_old_message); | 
| 50487 | 776 | (found_really_genuine, max_potential, max_genuine, donno + 1)) | 
| 35333 
f61de25f71f9
distinguish between Kodkodi warnings and errors in Nitpick;
 blanchet parents: 
35280diff
changeset | 777 | | KK.Normal ([], unsat_js, s) => | 
| 
f61de25f71f9
distinguish between Kodkodi warnings and errors in Nitpick;
 blanchet parents: 
35280diff
changeset | 778 | (update_checked_problems problems unsat_js; show_kodkod_warning s; | 
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 779 | (found_really_genuine, max_potential, max_genuine, donno)) | 
| 35333 
f61de25f71f9
distinguish between Kodkodi warnings and errors in Nitpick;
 blanchet parents: 
35280diff
changeset | 780 | | KK.Normal (sat_ps, unsat_js, s) => | 
| 33192 | 781 | let | 
| 782 | val (lib_ps, con_ps) = | |
| 35185 
9b8f351cced6
added yet another hint to Nitpick's output, this time warning about problems for which nothing was effectively tested
 blanchet parents: 
35183diff
changeset | 783 | List.partition (#unsound o snd o nth problems o fst) sat_ps | 
| 33192 | 784 | in | 
| 785 | update_checked_problems problems (unsat_js @ map fst lib_ps); | |
| 35333 
f61de25f71f9
distinguish between Kodkodi warnings and errors in Nitpick;
 blanchet parents: 
35280diff
changeset | 786 | show_kodkod_warning s; | 
| 33192 | 787 | if null con_ps then | 
| 788 | let | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 789 | val genuine_codes = | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 790 | lib_ps |> take max_potential | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 791 | |> map (print_and_check false) | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 792 | |> filter (curry (op =) (SOME true) o snd) | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 793 | val found_really_genuine = | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 794 | found_really_genuine orelse exists fst genuine_codes | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 795 | val num_genuine = length genuine_codes | 
| 33192 | 796 | val max_genuine = max_genuine - num_genuine | 
| 797 | val max_potential = max_potential | |
| 798 | - (length lib_ps - num_genuine) | |
| 799 | in | |
| 800 | if max_genuine <= 0 then | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 801 | (found_really_genuine, 0, 0, donno) | 
| 33192 | 802 | else | 
| 803 | let | |
| 35185 
9b8f351cced6
added yet another hint to Nitpick's output, this time warning about problems for which nothing was effectively tested
 blanchet parents: 
35183diff
changeset | 804 | (* "co_js" is the list of sound problems whose unsound | 
| 
9b8f351cced6
added yet another hint to Nitpick's output, this time warning about problems for which nothing was effectively tested
 blanchet parents: 
35183diff
changeset | 805 | pendants couldn't be satisfied and hence that most | 
| 
9b8f351cced6
added yet another hint to Nitpick's output, this time warning about problems for which nothing was effectively tested
 blanchet parents: 
35183diff
changeset | 806 | probably can't be satisfied themselves. *) | 
| 33192 | 807 | val co_js = | 
| 808 | map (fn j => j - 1) unsat_js | |
| 809 | |> filter (fn j => | |
| 810 | j >= 0 andalso | |
| 811 | scopes_equivalent | |
| 35814 | 812 | (#scope (snd (nth problems j)), | 
| 813 | #scope (snd (nth problems (j + 1))))) | |
| 33192 | 814 | val bye_js = sort_distinct int_ord (map fst sat_ps @ | 
| 815 | unsat_js @ co_js) | |
| 816 | val problems = | |
| 817 | problems |> filter_out_indices bye_js | |
| 818 | |> max_potential <= 0 | |
| 35185 
9b8f351cced6
added yet another hint to Nitpick's output, this time warning about problems for which nothing was effectively tested
 blanchet parents: 
35183diff
changeset | 819 | ? filter_out (#unsound o snd) | 
| 33192 | 820 | in | 
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 821 | solve_any_problem (found_really_genuine, max_potential, | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 822 | max_genuine, donno) false problems | 
| 33192 | 823 | end | 
| 824 | end | |
| 825 | else | |
| 826 | let | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 827 | val genuine_codes = | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 828 | con_ps |> take max_genuine | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 829 | |> map (print_and_check true) | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 830 | val max_genuine = max_genuine - length genuine_codes | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 831 | val found_really_genuine = | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 832 | found_really_genuine orelse exists fst genuine_codes | 
| 33192 | 833 | in | 
| 834 | if max_genuine <= 0 orelse not first_time then | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 835 | (found_really_genuine, 0, max_genuine, donno) | 
| 33192 | 836 | else | 
| 837 | let | |
| 838 | val bye_js = sort_distinct int_ord | |
| 839 | (map fst sat_ps @ unsat_js) | |
| 840 | val problems = | |
| 841 | problems |> filter_out_indices bye_js | |
| 35185 
9b8f351cced6
added yet another hint to Nitpick's output, this time warning about problems for which nothing was effectively tested
 blanchet parents: 
35183diff
changeset | 842 | |> filter_out (#unsound o snd) | 
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 843 | in | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 844 | solve_any_problem (found_really_genuine, 0, max_genuine, | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 845 | donno) false problems | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 846 | end | 
| 33192 | 847 | end | 
| 848 | end | |
| 34126 | 849 | | KK.TimedOut unsat_js => | 
| 33192 | 850 | (update_checked_problems problems unsat_js; raise TimeLimit.TimeOut) | 
| 34126 | 851 | | KK.Error (s, unsat_js) => | 
| 33192 | 852 | (update_checked_problems problems unsat_js; | 
| 853 |              print_v (K ("Kodkod error: " ^ s ^ "."));
 | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 854 | (found_really_genuine, max_potential, max_genuine, donno + 1)) | 
| 33192 | 855 | end | 
| 856 | ||
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 857 | fun run_batch j n scopes (found_really_genuine, max_potential, max_genuine, | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 858 | donno) = | 
| 33192 | 859 | let | 
| 860 | val _ = | |
| 861 | if null scopes then | |
| 47560 | 862 | print_nt (K "The scope specification is inconsistent.") | 
| 33192 | 863 | else if verbose then | 
| 47560 | 864 | pprint_nt (fn () => Pretty.chunks | 
| 33192 | 865 | [Pretty.blk (0, | 
| 59432 | 866 | Pretty.text ((if n > 1 then | 
| 33192 | 867 | "Batch " ^ string_of_int (j + 1) ^ " of " ^ | 
| 868 | signed_string_of_int n ^ ": " | |
| 869 | else | |
| 870 | "") ^ | |
| 871 | "Trying " ^ string_of_int (length scopes) ^ | |
| 872 | " scope" ^ plural_s_for_list scopes ^ ":")), | |
| 873 | Pretty.indent indent_size | |
| 874 | (Pretty.chunks (map2 | |
| 875 | (fn j => fn scope => | |
| 876 | Pretty.block ( | |
| 877 | (case pretties_for_scope scope true of | |
| 878 | [] => [Pretty.str "Empty"] | |
| 879 | | pretties => pretties) @ | |
| 880 | [Pretty.str (if j = 1 then "." else ";")])) | |
| 881 | (length scopes downto 1) scopes))]) | |
| 882 | else | |
| 883 | () | |
| 35280 
54ab4921f826
fixed a few bugs in Nitpick and removed unreferenced variables
 blanchet parents: 
35220diff
changeset | 884 | fun add_problem_for_scope (scope, unsound) (problems, donno) = | 
| 33192 | 885 | (check_deadline (); | 
| 35185 
9b8f351cced6
added yet another hint to Nitpick's output, this time warning about problems for which nothing was effectively tested
 blanchet parents: 
35183diff
changeset | 886 | case problem_for_scope unsound scope of | 
| 33192 | 887 | SOME problem => | 
| 888 | (problems | |
| 889 | |> (null problems orelse | |
| 35814 | 890 | not (KK.problems_equivalent (fst problem, fst (hd problems)))) | 
| 33192 | 891 | ? cons problem, donno) | 
| 892 | | NONE => (problems, donno + 1)) | |
| 893 | val (problems, donno) = | |
| 894 | fold add_problem_for_scope | |
| 895 | (map_product pair scopes | |
| 896 | ((if max_genuine > 0 then [false] else []) @ | |
| 897 | (if max_potential > 0 then [true] else []))) | |
| 898 | ([], donno) | |
| 899 | val _ = Unsynchronized.change generated_problems (append problems) | |
| 900 | val _ = Unsynchronized.change generated_scopes (append scopes) | |
| 35185 
9b8f351cced6
added yet another hint to Nitpick's output, this time warning about problems for which nothing was effectively tested
 blanchet parents: 
35183diff
changeset | 901 | val _ = | 
| 
9b8f351cced6
added yet another hint to Nitpick's output, this time warning about problems for which nothing was effectively tested
 blanchet parents: 
35183diff
changeset | 902 | if j + 1 = n then | 
| 
9b8f351cced6
added yet another hint to Nitpick's output, this time warning about problems for which nothing was effectively tested
 blanchet parents: 
35183diff
changeset | 903 | let | 
| 
9b8f351cced6
added yet another hint to Nitpick's output, this time warning about problems for which nothing was effectively tested
 blanchet parents: 
35183diff
changeset | 904 | val (unsound_problems, sound_problems) = | 
| 
9b8f351cced6
added yet another hint to Nitpick's output, this time warning about problems for which nothing was effectively tested
 blanchet parents: 
35183diff
changeset | 905 | List.partition (#unsound o snd) (!generated_problems) | 
| 
9b8f351cced6
added yet another hint to Nitpick's output, this time warning about problems for which nothing was effectively tested
 blanchet parents: 
35183diff
changeset | 906 | in | 
| 
9b8f351cced6
added yet another hint to Nitpick's output, this time warning about problems for which nothing was effectively tested
 blanchet parents: 
35183diff
changeset | 907 | if not (null sound_problems) andalso | 
| 
9b8f351cced6
added yet another hint to Nitpick's output, this time warning about problems for which nothing was effectively tested
 blanchet parents: 
35183diff
changeset | 908 | forall (KK.is_problem_trivially_false o fst) | 
| 
9b8f351cced6
added yet another hint to Nitpick's output, this time warning about problems for which nothing was effectively tested
 blanchet parents: 
35183diff
changeset | 909 | sound_problems then | 
| 47560 | 910 | print_nt (fn () => | 
| 44395 | 911 | "Warning: The conjecture " ^ | 
| 912 | (if falsify then "either trivially holds" | |
| 913 | else "is either trivially unsatisfiable") ^ | |
| 914 | " for the given scopes or lies outside Nitpick's supported \ | |
| 35384 | 915 | \fragment." ^ | 
| 35185 
9b8f351cced6
added yet another hint to Nitpick's output, this time warning about problems for which nothing was effectively tested
 blanchet parents: 
35183diff
changeset | 916 | (if exists (not o KK.is_problem_trivially_false o fst) | 
| 
9b8f351cced6
added yet another hint to Nitpick's output, this time warning about problems for which nothing was effectively tested
 blanchet parents: 
35183diff
changeset | 917 | unsound_problems then | 
| 41992 
0e4716fa330a
reword Nitpick's wording concerning potential counterexamples
 blanchet parents: 
41985diff
changeset | 918 | " Only potentially spurious " ^ das_wort_model ^ | 
| 
0e4716fa330a
reword Nitpick's wording concerning potential counterexamples
 blanchet parents: 
41985diff
changeset | 919 | "s may be found." | 
| 35185 
9b8f351cced6
added yet another hint to Nitpick's output, this time warning about problems for which nothing was effectively tested
 blanchet parents: 
35183diff
changeset | 920 | else | 
| 
9b8f351cced6
added yet another hint to Nitpick's output, this time warning about problems for which nothing was effectively tested
 blanchet parents: 
35183diff
changeset | 921 | "")) | 
| 
9b8f351cced6
added yet another hint to Nitpick's output, this time warning about problems for which nothing was effectively tested
 blanchet parents: 
35183diff
changeset | 922 | else | 
| 
9b8f351cced6
added yet another hint to Nitpick's output, this time warning about problems for which nothing was effectively tested
 blanchet parents: 
35183diff
changeset | 923 | () | 
| 
9b8f351cced6
added yet another hint to Nitpick's output, this time warning about problems for which nothing was effectively tested
 blanchet parents: 
35183diff
changeset | 924 | end | 
| 
9b8f351cced6
added yet another hint to Nitpick's output, this time warning about problems for which nothing was effectively tested
 blanchet parents: 
35183diff
changeset | 925 | else | 
| 
9b8f351cced6
added yet another hint to Nitpick's output, this time warning about problems for which nothing was effectively tested
 blanchet parents: 
35183diff
changeset | 926 | () | 
| 33192 | 927 | in | 
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 928 | solve_any_problem (found_really_genuine, max_potential, max_genuine, | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 929 | donno) true (rev problems) | 
| 33192 | 930 | end | 
| 931 | ||
| 932 | fun scope_count (problems : rich_problem list) scope = | |
| 35814 | 933 | length (filter (curry scopes_equivalent scope o #scope o snd) problems) | 
| 33192 | 934 | fun excipit did_so_and_so = | 
| 935 | let | |
| 936 | val do_filter = | |
| 35185 
9b8f351cced6
added yet another hint to Nitpick's output, this time warning about problems for which nothing was effectively tested
 blanchet parents: 
35183diff
changeset | 937 | if !met_potential = max_potential then filter_out (#unsound o snd) | 
| 33192 | 938 | else I | 
| 939 | val total = length (!scopes) | |
| 940 | val unsat = | |
| 941 | fold (fn scope => | |
| 942 | case scope_count (do_filter (!generated_problems)) scope of | |
| 943 | 0 => I | |
| 944 | | n => | |
| 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: 
33233diff
changeset | 945 | scope_count (do_filter (these (!checked_problems))) | 
| 
cba22e2999d5
renamed Nitpick option "coalesce_type_vars" to "merge_type_vars" (shorter) and cleaned up old hacks that are no longer necessary
 blanchet parents: 
33233diff
changeset | 946 | scope = n | 
| 
cba22e2999d5
renamed Nitpick option "coalesce_type_vars" to "merge_type_vars" (shorter) and cleaned up old hacks that are no longer necessary
 blanchet parents: 
33233diff
changeset | 947 | ? Integer.add 1) (!generated_scopes) 0 | 
| 33192 | 948 | in | 
| 47560 | 949 | (if mode = TPTP then "% SZS status Unknown\n" else "") ^ | 
| 33192 | 950 | "Nitpick " ^ did_so_and_so ^ | 
| 951 | (if is_some (!checked_problems) andalso total > 0 then | |
| 39361 | 952 | " " ^ string_of_int unsat ^ " of " ^ string_of_int total ^ " scope" | 
| 953 | ^ plural_s total | |
| 33192 | 954 | else | 
| 955 | "") ^ "." | |
| 956 | end | |
| 957 | ||
| 37704 
c6161bee8486
adapt Nitpick to "prod_case" and "*" -> "sum" renaming;
 blanchet parents: 
37497diff
changeset | 958 | val (skipped, the_scopes) = | 
| 
c6161bee8486
adapt Nitpick to "prod_case" and "*" -> "sum" renaming;
 blanchet parents: 
37497diff
changeset | 959 | all_scopes hol_ctxt binarize cards_assigns maxes_assigns iters_assigns | 
| 
c6161bee8486
adapt Nitpick to "prod_case" and "*" -> "sum" renaming;
 blanchet parents: 
37497diff
changeset | 960 | bitss bisim_depths mono_Ts nonmono_Ts deep_dataTs | 
| 
c6161bee8486
adapt Nitpick to "prod_case" and "*" -> "sum" renaming;
 blanchet parents: 
37497diff
changeset | 961 | finitizable_dataTs | 
| 
c6161bee8486
adapt Nitpick to "prod_case" and "*" -> "sum" renaming;
 blanchet parents: 
37497diff
changeset | 962 | val _ = if skipped > 0 then | 
| 47560 | 963 | print_nt (fn () => "Too many scopes. Skipping " ^ | 
| 964 | string_of_int skipped ^ " scope" ^ | |
| 965 | plural_s skipped ^ | |
| 966 | ". (Consider using \"mono\" or \ | |
| 967 | \\"merge_type_vars\" to prevent this.)") | |
| 37704 
c6161bee8486
adapt Nitpick to "prod_case" and "*" -> "sum" renaming;
 blanchet parents: 
37497diff
changeset | 968 | else | 
| 
c6161bee8486
adapt Nitpick to "prod_case" and "*" -> "sum" renaming;
 blanchet parents: 
37497diff
changeset | 969 | () | 
| 
c6161bee8486
adapt Nitpick to "prod_case" and "*" -> "sum" renaming;
 blanchet parents: 
37497diff
changeset | 970 | val _ = scopes := the_scopes | 
| 
c6161bee8486
adapt Nitpick to "prod_case" and "*" -> "sum" renaming;
 blanchet parents: 
37497diff
changeset | 971 | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 972 | fun run_batches _ _ [] | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 973 | (found_really_genuine, max_potential, max_genuine, donno) = | 
| 33192 | 974 | if donno > 0 andalso max_genuine > 0 then | 
| 47560 | 975 | (print_nt (fn () => excipit "checked"); unknownN) | 
| 33192 | 976 | else if max_genuine = original_max_genuine then | 
| 977 | if max_potential = original_max_potential then | |
| 47562 | 978 | (print_t (K "% SZS status Unknown"); | 
| 55888 | 979 | print_nt (fn () => "Nitpick found no " ^ das_wort_model ^ "."); | 
| 980 | if skipped > 0 then unknownN else noneN) | |
| 33192 | 981 | else | 
| 47560 | 982 | (print_nt (fn () => | 
| 38123 
36f649db4a6c
clarify Nitpick's output in case of a potential counterexample
 blanchet parents: 
37928diff
changeset | 983 |                  excipit ("could not find a" ^
 | 
| 
36f649db4a6c
clarify Nitpick's output in case of a potential counterexample
 blanchet parents: 
37928diff
changeset | 984 | (if max_genuine = 1 then | 
| 
36f649db4a6c
clarify Nitpick's output in case of a potential counterexample
 blanchet parents: 
37928diff
changeset | 985 | " better " ^ das_wort_model ^ "." | 
| 
36f649db4a6c
clarify Nitpick's output in case of a potential counterexample
 blanchet parents: 
37928diff
changeset | 986 | else | 
| 
36f649db4a6c
clarify Nitpick's output in case of a potential counterexample
 blanchet parents: 
37928diff
changeset | 987 | "ny better " ^ das_wort_model ^ "s.") ^ | 
| 
36f649db4a6c
clarify Nitpick's output in case of a potential counterexample
 blanchet parents: 
37928diff
changeset | 988 | " It checked")); | 
| 43020 
abb5d1f907e4
added "try" command, to launch Solve Direct, Quickcheck, Nitpick, Sledgehammer, and Try Methods
 blanchet parents: 
42959diff
changeset | 989 | potentialN) | 
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 990 | else if found_really_genuine then | 
| 43020 
abb5d1f907e4
added "try" command, to launch Solve Direct, Quickcheck, Nitpick, Sledgehammer, and Try Methods
 blanchet parents: 
42959diff
changeset | 991 | genuineN | 
| 33192 | 992 | else | 
| 43020 
abb5d1f907e4
added "try" command, to launch Solve Direct, Quickcheck, Nitpick, Sledgehammer, and Try Methods
 blanchet parents: 
42959diff
changeset | 993 | quasi_genuineN | 
| 33192 | 994 | | run_batches j n (batch :: batches) z = | 
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 995 | let val (z as (_, _, max_genuine, _)) = run_batch j n batch z in | 
| 33192 | 996 | run_batches (j + 1) n (if max_genuine > 0 then batches else []) z | 
| 997 | end | |
| 998 | ||
| 48323 | 999 | val batches = chunk_list batch_size (!scopes) | 
| 33192 | 1000 | val outcome_code = | 
| 40411 
36b7ed41ca9f
removed explicit "Interrupt" handling for conformity with async model -- unfortunately the user loses the information about how many scopes were checked, but this needs to be retought with the new interface anyway
 blanchet parents: 
40381diff
changeset | 1001 | run_batches 0 (length batches) batches | 
| 
36b7ed41ca9f
removed explicit "Interrupt" handling for conformity with async model -- unfortunately the user loses the information about how many scopes were checked, but this needs to be retought with the new interface anyway
 blanchet parents: 
40381diff
changeset | 1002 | (false, max_potential, max_genuine, 0) | 
| 33192 | 1003 | handle TimeLimit.TimeOut => | 
| 47560 | 1004 | (print_nt (fn () => excipit "ran out of time after checking"); | 
| 43020 
abb5d1f907e4
added "try" command, to launch Solve Direct, Quickcheck, Nitpick, Sledgehammer, and Try Methods
 blanchet parents: 
42959diff
changeset | 1005 | if !met_potential > 0 then potentialN else unknownN) | 
| 40341 
03156257040f
standardize on seconds for Nitpick and Sledgehammer timeouts
 blanchet parents: 
40223diff
changeset | 1006 | val _ = print_v (fn () => | 
| 52031 
9a9238342963
tuning -- renamed '_from_' to '_of_' in Sledgehammer
 blanchet parents: 
50830diff
changeset | 1007 | "Total time: " ^ string_of_time (Timer.checkRealTimer timer) ^ | 
| 40341 
03156257040f
standardize on seconds for Nitpick and Sledgehammer timeouts
 blanchet parents: 
40223diff
changeset | 1008 | ".") | 
| 53815 
e8aa538e959e
encode goal digest in spying log (to detect duplicates)
 blanchet parents: 
53802diff
changeset | 1009 | val _ = spying spy (fn () => (state, i, "outcome: " ^ outcome_code)) | 
| 58892 
20aa19ecf2cc
eliminated obsolete Proof.goal_message -- print outcome more directly;
 wenzelm parents: 
58843diff
changeset | 1010 | in (outcome_code, Queue.content (Synchronized.value outcome)) end | 
| 33192 | 1011 | |
| 41051 
2ed1b971fc20
give the inner timeout mechanism a chance, since it gives more precise information to the user
 blanchet parents: 
41048diff
changeset | 1012 | (* Give the inner timeout a chance. *) | 
| 41772 
27d4c768cf20
make Nitpick's timeout mechanism somewhat more reliable/friendly;
 blanchet parents: 
41278diff
changeset | 1013 | val timeout_bonus = seconds 1.0 | 
| 41051 
2ed1b971fc20
give the inner timeout mechanism a chance, since it gives more precise information to the user
 blanchet parents: 
41048diff
changeset | 1014 | |
| 55539 
0819931d652d
simplified data structure by reducing the incidence of clumsy indices
 blanchet parents: 
54816diff
changeset | 1015 | fun pick_nits_in_term state (params as {timeout, expect, ...}) mode i n step
 | 
| 
0819931d652d
simplified data structure by reducing the incidence of clumsy indices
 blanchet parents: 
54816diff
changeset | 1016 | subst def_assm_ts nondef_assm_ts orig_t = | 
| 47670 | 1017 | let | 
| 58843 | 1018 | val print_nt = if is_mode_nt mode then writeln else K () | 
| 1019 | val print_t = if mode = TPTP then writeln else K () | |
| 47670 | 1020 | in | 
| 37213 
efcad7594872
fix handling of "split" w.r.t. new definition + fix exception handling w.r.t. "expect" option
 blanchet parents: 
37146diff
changeset | 1021 | if getenv "KODKODI" = "" then | 
| 37497 
71fdbffe3275
distinguish between "unknown" and "no Kodkodi installed" errors
 blanchet parents: 
37273diff
changeset | 1022 | (* The "expect" argument is deliberately ignored if Kodkodi is missing so | 
| 
71fdbffe3275
distinguish between "unknown" and "no Kodkodi installed" errors
 blanchet parents: 
37273diff
changeset | 1023 | that the "Nitpick_Examples" can be processed on any machine. *) | 
| 55889 | 1024 | (print_nt (Pretty.string_of (plazy (K kodkodi_not_installed_message))); | 
| 58892 
20aa19ecf2cc
eliminated obsolete Proof.goal_message -- print outcome more directly;
 wenzelm parents: 
58843diff
changeset | 1025 |        ("no_kodkodi", []))
 | 
| 37213 
efcad7594872
fix handling of "split" w.r.t. new definition + fix exception handling w.r.t. "expect" option
 blanchet parents: 
37146diff
changeset | 1026 | else | 
| 
efcad7594872
fix handling of "split" w.r.t. new definition + fix exception handling w.r.t. "expect" option
 blanchet parents: 
37146diff
changeset | 1027 | let | 
| 58892 
20aa19ecf2cc
eliminated obsolete Proof.goal_message -- print outcome more directly;
 wenzelm parents: 
58843diff
changeset | 1028 | val unknown_outcome = (unknownN, []) | 
| 54816 
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
 blanchet parents: 
53815diff
changeset | 1029 | val deadline = Time.+ (Time.now (), timeout) | 
| 37213 
efcad7594872
fix handling of "split" w.r.t. new definition + fix exception handling w.r.t. "expect" option
 blanchet parents: 
37146diff
changeset | 1030 | val outcome as (outcome_code, _) = | 
| 54816 
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
 blanchet parents: 
53815diff
changeset | 1031 | TimeLimit.timeLimit (Time.+ (timeout, timeout_bonus)) | 
| 43022 | 1032 | (pick_them_nits_in_term deadline state params mode i n step subst | 
| 47715 
04400144c6fc
handle TPTP definitions as definitions in Nitpick rather than as axioms
 blanchet parents: 
47670diff
changeset | 1033 | def_assm_ts nondef_assm_ts) orig_t | 
| 37213 
efcad7594872
fix handling of "split" w.r.t. new definition + fix exception handling w.r.t. "expect" option
 blanchet parents: 
37146diff
changeset | 1034 | handle TOO_LARGE (_, details) => | 
| 47670 | 1035 | (print_t "% SZS status Unknown"; | 
| 1036 |                   print_nt ("Limit reached: " ^ details ^ "."); unknown_outcome)
 | |
| 37213 
efcad7594872
fix handling of "split" w.r.t. new definition + fix exception handling w.r.t. "expect" option
 blanchet parents: 
37146diff
changeset | 1037 | | TOO_SMALL (_, details) => | 
| 47670 | 1038 | (print_t "% SZS status Unknown"; | 
| 1039 |                   print_nt ("Limit reached: " ^ details ^ "."); unknown_outcome)
 | |
| 37213 
efcad7594872
fix handling of "split" w.r.t. new definition + fix exception handling w.r.t. "expect" option
 blanchet parents: 
37146diff
changeset | 1040 | | Kodkod.SYNTAX (_, details) => | 
| 47670 | 1041 | (print_t "% SZS status Unknown"; | 
| 1042 |                   print_nt ("Malformed Kodkodi output: " ^ details ^ ".");
 | |
| 37213 
efcad7594872
fix handling of "split" w.r.t. new definition + fix exception handling w.r.t. "expect" option
 blanchet parents: 
37146diff
changeset | 1043 | unknown_outcome) | 
| 41772 
27d4c768cf20
make Nitpick's timeout mechanism somewhat more reliable/friendly;
 blanchet parents: 
41278diff
changeset | 1044 | | TimeLimit.TimeOut => | 
| 47670 | 1045 | (print_t "% SZS status TimedOut"; | 
| 1046 | print_nt "Nitpick ran out of time."; unknown_outcome) | |
| 37213 
efcad7594872
fix handling of "split" w.r.t. new definition + fix exception handling w.r.t. "expect" option
 blanchet parents: 
37146diff
changeset | 1047 | in | 
| 
efcad7594872
fix handling of "split" w.r.t. new definition + fix exception handling w.r.t. "expect" option
 blanchet parents: 
37146diff
changeset | 1048 | if expect = "" orelse outcome_code = expect then outcome | 
| 
efcad7594872
fix handling of "split" w.r.t. new definition + fix exception handling w.r.t. "expect" option
 blanchet parents: 
37146diff
changeset | 1049 |         else error ("Unexpected outcome: " ^ quote outcome_code ^ ".")
 | 
| 
efcad7594872
fix handling of "split" w.r.t. new definition + fix exception handling w.r.t. "expect" option
 blanchet parents: 
37146diff
changeset | 1050 | end | 
| 
efcad7594872
fix handling of "split" w.r.t. new definition + fix exception handling w.r.t. "expect" option
 blanchet parents: 
37146diff
changeset | 1051 | end | 
| 33192 | 1052 | |
| 42486 | 1053 | fun is_fixed_equation ctxt | 
| 56245 | 1054 |                       (Const (@{const_name Pure.eq}, _) $ Free (s, _) $ Const _) =
 | 
| 42486 | 1055 | Variable.is_fixed ctxt s | 
| 35335 | 1056 | | is_fixed_equation _ _ = false | 
| 55889 | 1057 | |
| 35335 | 1058 | fun extract_fixed_frees ctxt (assms, t) = | 
| 1059 | let | |
| 1060 | val (subst, other_assms) = | |
| 42486 | 1061 | List.partition (is_fixed_equation ctxt) assms | 
| 35335 | 1062 | |>> map Logic.dest_equals | 
| 1063 | in (subst, other_assms, subst_atomic subst t) end | |
| 1064 | ||
| 43022 | 1065 | fun pick_nits_in_subgoal state params mode i step = | 
| 33192 | 1066 | let | 
| 1067 | val ctxt = Proof.context_of state | |
| 59582 | 1068 | val t = state |> Proof.raw_goal |> #goal |> Thm.prop_of | 
| 33192 | 1069 | in | 
| 34982 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34938diff
changeset | 1070 | case Logic.count_prems t of | 
| 58892 
20aa19ecf2cc
eliminated obsolete Proof.goal_message -- print outcome more directly;
 wenzelm parents: 
58843diff
changeset | 1071 | 0 => (writeln "No subgoal!"; (noneN, [])) | 
| 34982 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34938diff
changeset | 1072 | | n => | 
| 33192 | 1073 | let | 
| 36406 | 1074 | val t = Logic.goal_params t i |> fst | 
| 59582 | 1075 | val assms = map Thm.term_of (Assumption.all_assms_of ctxt) | 
| 35335 | 1076 | val (subst, assms, t) = extract_fixed_frees ctxt (assms, t) | 
| 47715 
04400144c6fc
handle TPTP definitions as definitions in Nitpick rather than as axioms
 blanchet parents: 
47670diff
changeset | 1077 | in pick_nits_in_term state params mode i n step subst [] assms t end | 
| 33192 | 1078 | end | 
| 1079 | ||
| 1080 | end; |