| author | wenzelm | 
| Fri, 03 Dec 2010 20:38:58 +0100 | |
| changeset 40945 | b8703f63bfb2 | 
| parent 40411 | 36b7ed41ca9f | 
| child 40993 | 52ee2a187cdb | 
| 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 | |
| 33705 
947184dc75c9
removed a few global names in Nitpick (styp, nat_less, pairf)
 blanchet parents: 
33580diff
changeset | 10 | type styp = Nitpick_Util.styp | 
| 35711 
548d3f16404b
added term postprocessor to Nitpick, to provide custom syntax for typedefs
 blanchet parents: 
35696diff
changeset | 11 | type term_postprocessor = Nitpick_Model.term_postprocessor | 
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 12 | type params = | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 13 |     {cards_assigns: (typ option * int list) list,
 | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 14 | maxes_assigns: (styp option * int list) list, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 15 | iters_assigns: (styp option * int list) list, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 16 | bitss: int list, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 17 | bisim_depths: int list, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 18 | boxes: (typ option * bool option) list, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 19 | finitizes: (typ option * bool option) list, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 20 | monos: (typ option * bool option) list, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 21 | stds: (typ option * bool) list, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 22 | wfs: (styp option * bool option) list, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 23 | sat_solver: string, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 24 | blocking: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 25 | falsify: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 26 | debug: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 27 | verbose: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 28 | overlord: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 29 | user_axioms: bool option, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 30 | assms: bool, | 
| 38209 | 31 | whacks: term list, | 
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 32 | merge_type_vars: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 33 | binary_ints: bool option, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 34 | destroy_constrs: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 35 | specialize: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 36 | star_linear_preds: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 37 | peephole_optim: bool, | 
| 38124 | 38 | datatype_sym_break: int, | 
| 39 | kodkod_sym_break: int, | |
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 40 | timeout: Time.time option, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 41 | tac_timeout: Time.time option, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 42 | max_threads: int, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 43 | show_datatypes: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 44 | show_consts: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 45 | evals: term list, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 46 | 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 | 47 | atomss: (typ option * string list) list, | 
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 48 | max_potential: int, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 49 | max_genuine: int, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 50 | check_potential: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 51 | check_genuine: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 52 | batch_size: int, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 53 | expect: string} | 
| 33192 | 54 | |
| 55 | val register_frac_type : string -> (string * string) list -> theory -> theory | |
| 56 | val unregister_frac_type : string -> theory -> theory | |
| 57 | val register_codatatype : typ -> string -> styp list -> theory -> theory | |
| 58 | val unregister_codatatype : typ -> theory -> theory | |
| 35711 
548d3f16404b
added term postprocessor to Nitpick, to provide custom syntax for typedefs
 blanchet parents: 
35696diff
changeset | 59 | val register_term_postprocessor : | 
| 
548d3f16404b
added term postprocessor to Nitpick, to provide custom syntax for typedefs
 blanchet parents: 
35696diff
changeset | 60 | typ -> term_postprocessor -> theory -> theory | 
| 
548d3f16404b
added term postprocessor to Nitpick, to provide custom syntax for typedefs
 blanchet parents: 
35696diff
changeset | 61 | val unregister_term_postprocessor : typ -> theory -> theory | 
| 33192 | 62 | val pick_nits_in_term : | 
| 35335 | 63 | Proof.state -> params -> bool -> int -> int -> int -> (term * term) list | 
| 64 | -> term list -> term -> string * Proof.state | |
| 33192 | 65 | val pick_nits_in_subgoal : | 
| 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 | 66 | Proof.state -> params -> bool -> int -> int -> string * Proof.state | 
| 33192 | 67 | end; | 
| 68 | ||
| 69 | structure Nitpick : NITPICK = | |
| 70 | struct | |
| 71 | ||
| 33232 
f93390060bbe
internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
 blanchet parents: 
33192diff
changeset | 72 | open Nitpick_Util | 
| 
f93390060bbe
internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
 blanchet parents: 
33192diff
changeset | 73 | open Nitpick_HOL | 
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 74 | open Nitpick_Preproc | 
| 33232 
f93390060bbe
internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
 blanchet parents: 
33192diff
changeset | 75 | open Nitpick_Mono | 
| 
f93390060bbe
internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
 blanchet parents: 
33192diff
changeset | 76 | open Nitpick_Scope | 
| 
f93390060bbe
internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
 blanchet parents: 
33192diff
changeset | 77 | open Nitpick_Peephole | 
| 
f93390060bbe
internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
 blanchet parents: 
33192diff
changeset | 78 | open Nitpick_Rep | 
| 
f93390060bbe
internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
 blanchet parents: 
33192diff
changeset | 79 | open Nitpick_Nut | 
| 
f93390060bbe
internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
 blanchet parents: 
33192diff
changeset | 80 | open Nitpick_Kodkod | 
| 
f93390060bbe
internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
 blanchet parents: 
33192diff
changeset | 81 | open Nitpick_Model | 
| 33192 | 82 | |
| 34126 | 83 | structure KK = Kodkod | 
| 84 | ||
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 85 | type params = | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 86 |   {cards_assigns: (typ option * int list) list,
 | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 87 | maxes_assigns: (styp option * int list) list, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 88 | iters_assigns: (styp option * int list) list, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 89 | bitss: int list, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 90 | bisim_depths: int list, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 91 | boxes: (typ option * bool option) list, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 92 | finitizes: (typ option * bool option) list, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 93 | monos: (typ option * bool option) list, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 94 | stds: (typ option * bool) list, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 95 | wfs: (styp option * bool option) list, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 96 | sat_solver: string, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 97 | blocking: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 98 | falsify: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 99 | debug: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 100 | verbose: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 101 | overlord: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 102 | user_axioms: bool option, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 103 | assms: bool, | 
| 38209 | 104 | whacks: term list, | 
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 105 | merge_type_vars: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 106 | binary_ints: bool option, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 107 | destroy_constrs: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 108 | specialize: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 109 | star_linear_preds: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 110 | peephole_optim: bool, | 
| 38124 | 111 | datatype_sym_break: int, | 
| 112 | kodkod_sym_break: int, | |
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 113 | timeout: Time.time option, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 114 | tac_timeout: Time.time option, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 115 | max_threads: int, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 116 | show_datatypes: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 117 | show_consts: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 118 | evals: term list, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 119 | 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 | 120 | atomss: (typ option * string list) list, | 
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 121 | max_potential: int, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 122 | max_genuine: int, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 123 | check_potential: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 124 | check_genuine: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 125 | batch_size: int, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 126 | expect: string} | 
| 33192 | 127 | |
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38214diff
changeset | 128 | (* TODO: eliminate these historical aliases *) | 
| 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38214diff
changeset | 129 | val register_frac_type = Nitpick_HOL.register_frac_type_global | 
| 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38214diff
changeset | 130 | val unregister_frac_type = Nitpick_HOL.unregister_frac_type_global | 
| 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38214diff
changeset | 131 | val register_codatatype = Nitpick_HOL.register_codatatype_global | 
| 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38214diff
changeset | 132 | val unregister_codatatype = Nitpick_HOL.unregister_codatatype_global | 
| 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38214diff
changeset | 133 | val register_term_postprocessor = | 
| 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38214diff
changeset | 134 | Nitpick_Model.register_term_postprocessor_global | 
| 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38214diff
changeset | 135 | val unregister_term_postprocessor = | 
| 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38214diff
changeset | 136 | Nitpick_Model.unregister_term_postprocessor_global | 
| 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38214diff
changeset | 137 | |
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 138 | type problem_extension = | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 139 |   {free_names: nut list,
 | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 140 | sel_names: nut list, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 141 | nonsel_names: nut list, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 142 | rel_table: nut NameTable.table, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 143 | unsound: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 144 | scope: scope} | 
| 39316 
b6c4385ab400
change defaults of Auto Nitpick so that it consumes less resources (time and Kodkod threads)
 blanchet parents: 
38857diff
changeset | 145 | |
| 34126 | 146 | type rich_problem = KK.problem * problem_extension | 
| 33192 | 147 | |
| 148 | fun pretties_for_formulas _ _ [] = [] | |
| 149 | | pretties_for_formulas ctxt s ts = | |
| 150 | [Pretty.str (s ^ plural_s_for_list ts ^ ":"), | |
| 151 | Pretty.indent indent_size (Pretty.chunks | |
| 152 | (map2 (fn j => fn t => | |
| 34121 
5e831d805118
get rid of polymorphic equality in Nitpick's code + a few minor cleanups
 blanchet parents: 
34039diff
changeset | 153 | Pretty.block [t |> shorten_names_in_term | 
| 33192 | 154 | |> Syntax.pretty_term ctxt, | 
| 155 | Pretty.str (if j = 1 then "." else ";")]) | |
| 156 | (length ts downto 1) ts))] | |
| 157 | ||
| 35696 
17ae461d6133
show nice error message in Nitpick when "java" is not available
 blanchet parents: 
35671diff
changeset | 158 | fun install_java_message () = | 
| 38517 | 159 | "Nitpick requires a Java 1.5 virtual machine called \"java\"." | 
| 33568 
532b915afa14
don't run Nitpick at all if Kodkodi is not installed (as indicated by the $KODKODI variable)
 blanchet parents: 
33566diff
changeset | 160 | fun install_kodkodi_message () = | 
| 
532b915afa14
don't run Nitpick at all if Kodkodi is not installed (as indicated by the $KODKODI variable)
 blanchet parents: 
33566diff
changeset | 161 | "Nitpick requires the external Java program Kodkodi. To install it, download \ | 
| 
532b915afa14
don't run Nitpick at all if Kodkodi is not installed (as indicated by the $KODKODI variable)
 blanchet parents: 
33566diff
changeset | 162 | \the package from Isabelle's web page and add the \"kodkodi-x.y.z\" \ | 
| 
532b915afa14
don't run Nitpick at all if Kodkodi is not installed (as indicated by the $KODKODI variable)
 blanchet parents: 
33566diff
changeset | 163 | \directory's full path to \"" ^ | 
| 
532b915afa14
don't run Nitpick at all if Kodkodi is not installed (as indicated by the $KODKODI variable)
 blanchet parents: 
33566diff
changeset | 164 | Path.implode (Path.expand (Path.appends | 
| 
532b915afa14
don't run Nitpick at all if Kodkodi is not installed (as indicated by the $KODKODI variable)
 blanchet parents: 
33566diff
changeset | 165 | (Path.variable "ISABELLE_HOME_USER" :: | 
| 36266 | 166 | map Path.basic ["etc", "components"]))) ^ "\" on a line of its own." | 
| 33568 
532b915afa14
don't run Nitpick at all if Kodkodi is not installed (as indicated by the $KODKODI variable)
 blanchet parents: 
33566diff
changeset | 167 | |
| 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 | 168 | 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 | 169 | val max_unsound_delay_percent = 2 | 
| 33192 | 170 | |
| 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 | 171 | fun unsound_delay_for_timeout NONE = max_unsound_delay_ms | 
| 
9b8f351cced6
added yet another hint to Nitpick's output, this time warning about problems for which nothing was effectively tested
 blanchet parents: 
35183diff
changeset | 172 | | unsound_delay_for_timeout (SOME timeout) = | 
| 
9b8f351cced6
added yet another hint to Nitpick's output, this time warning about problems for which nothing was effectively tested
 blanchet parents: 
35183diff
changeset | 173 | Int.max (0, Int.min (max_unsound_delay_ms, | 
| 33192 | 174 | Time.toMilliseconds timeout | 
| 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 | 175 | * max_unsound_delay_percent div 100)) | 
| 33192 | 176 | |
| 177 | fun passed_deadline NONE = false | |
| 178 | | passed_deadline (SOME time) = Time.compare (Time.now (), time) <> LESS | |
| 179 | ||
| 34123 
c4988215a691
distinguish better between "complete" (vs. incomplete) types and "concrete" (vs. abstract) types in Nitpick;
 blanchet parents: 
34121diff
changeset | 180 | fun none_true assigns = forall (not_equal (SOME true) o snd) assigns | 
| 33192 | 181 | |
| 34038 
a2736debeabd
make Nitpick output the message "Hint: Maybe you forgot a type constraint?" only for syntactic classes
 blanchet parents: 
33982diff
changeset | 182 | val syntactic_sorts = | 
| 38857 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
38517diff
changeset | 183 |   @{sort "{default,zero,one,plus,minus,uminus,times,inverse,abs,sgn,ord,equal}"} @
 | 
| 34038 
a2736debeabd
make Nitpick output the message "Hint: Maybe you forgot a type constraint?" only for syntactic classes
 blanchet parents: 
33982diff
changeset | 184 |   @{sort number}
 | 
| 
a2736debeabd
make Nitpick output the message "Hint: Maybe you forgot a type constraint?" only for syntactic classes
 blanchet parents: 
33982diff
changeset | 185 | 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 | 186 | 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 | 187 | | 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 | 188 | val has_syntactic_sorts = exists_type (exists_subtype has_tfree_syntactic_sort) | 
| 33192 | 189 | |
| 33568 
532b915afa14
don't run Nitpick at all if Kodkodi is not installed (as indicated by the $KODKODI variable)
 blanchet parents: 
33566diff
changeset | 190 | fun plazy f = Pretty.blk (0, pstrs (f ())) | 
| 
532b915afa14
don't run Nitpick at all if Kodkodi is not installed (as indicated by the $KODKODI variable)
 blanchet parents: 
33566diff
changeset | 191 | |
| 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 | 192 | fun pick_them_nits_in_term deadline state (params : params) auto i n step | 
| 38169 
b51784515471
optimize local "def"s by treating them as definitions
 blanchet parents: 
38126diff
changeset | 193 | subst assm_ts orig_t = | 
| 33192 | 194 | let | 
| 195 | 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 | 196 | 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 | 197 | val ctxt = Proof.context_of state | 
| 35386 
45a4e19d3ebd
more work on the new monotonicity stuff in Nitpick
 blanchet parents: 
35385diff
changeset | 198 | (* FIXME: reintroduce code before new release: | 
| 
45a4e19d3ebd
more work on the new monotonicity stuff in Nitpick
 blanchet parents: 
35385diff
changeset | 199 | |
| 37216 
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
 wenzelm parents: 
37213diff
changeset | 200 | val nitpick_thy = Thy_Info.get_theory "Nitpick" | 
| 34936 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34935diff
changeset | 201 | val _ = Theory.subthy (nitpick_thy, thy) orelse | 
| 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34935diff
changeset | 202 | 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 | 203 | *) | 
| 34124 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 blanchet parents: 
34123diff
changeset | 204 |     val {cards_assigns, maxes_assigns, iters_assigns, bitss, bisim_depths,
 | 
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35408diff
changeset | 205 | boxes, finitizes, monos, stds, wfs, sat_solver, falsify, debug, | 
| 38209 | 206 | verbose, overlord, user_axioms, assms, whacks, merge_type_vars, | 
| 207 | binary_ints, destroy_constrs, specialize, star_linear_preds, | |
| 39359 | 208 | peephole_optim, datatype_sym_break, kodkod_sym_break, tac_timeout, | 
| 209 | max_threads, show_datatypes, show_consts, evals, formats, atomss, | |
| 210 | max_potential, max_genuine, check_potential, check_genuine, batch_size, | |
| 211 | ...} = params | |
| 33192 | 212 | val state_ref = Unsynchronized.ref state | 
| 213 | val pprint = | |
| 214 | if auto then | |
| 215 | Unsynchronized.change state_ref o Proof.goal_message o K | |
| 33561 
ab01b72715ef
introduced Auto Nitpick in addition to Auto Quickcheck;
 blanchet parents: 
33558diff
changeset | 216 | o Pretty.chunks o cons (Pretty.str "") o single | 
| 33192 | 217 | o Pretty.mark Markup.hilite | 
| 218 | else | |
| 40132 
7ee65dbffa31
renamed Output.priority to Output.urgent_message to emphasize its special role more clearly;
 wenzelm parents: 
39361diff
changeset | 219 | (fn s => (Output.urgent_message s; if debug then tracing s else ())) | 
| 36128 
a3d8d5329438
make Nitpick output everything to tracing in debug mode;
 blanchet parents: 
36126diff
changeset | 220 | o Pretty.string_of | 
| 33192 | 221 | fun pprint_m f = () |> not auto ? pprint o f | 
| 222 | fun pprint_v f = () |> verbose ? pprint o f | |
| 223 | fun pprint_d f = () |> debug ? pprint o f | |
| 224 | val print = pprint o curry Pretty.blk 0 o pstrs | |
| 39345 | 225 | (* | 
| 36128 
a3d8d5329438
make Nitpick output everything to tracing in debug mode;
 blanchet parents: 
36126diff
changeset | 226 | val print_g = pprint o Pretty.str | 
| 39345 | 227 | *) | 
| 33568 
532b915afa14
don't run Nitpick at all if Kodkodi is not installed (as indicated by the $KODKODI variable)
 blanchet parents: 
33566diff
changeset | 228 | val print_m = pprint_m o K o plazy | 
| 
532b915afa14
don't run Nitpick at all if Kodkodi is not installed (as indicated by the $KODKODI variable)
 blanchet parents: 
33566diff
changeset | 229 | val print_v = pprint_v o K o plazy | 
| 33192 | 230 | |
| 231 | fun check_deadline () = | |
| 232 | if debug andalso passed_deadline deadline then raise TimeLimit.TimeOut | |
| 233 | else () | |
| 234 | ||
| 38169 
b51784515471
optimize local "def"s by treating them as definitions
 blanchet parents: 
38126diff
changeset | 235 | val assm_ts = if assms orelse auto then assm_ts 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 | 236 | 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 | 237 | if step = 0 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 | 238 | print_m (fn () => "Nitpicking formula...") | 
| 
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 | 239 | else | 
| 
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 | 240 | pprint_m (fn () => Pretty.chunks ( | 
| 
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 | 241 |             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 | 242 | (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 | 243 | "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 | 244 | else | 
| 38169 
b51784515471
optimize local "def"s by treating them as definitions
 blanchet parents: 
38126diff
changeset | 245 | "goal")) [Logic.list_implies (assm_ts, orig_t)])) | 
| 33192 | 246 |     val neg_t = if falsify then Logic.mk_implies (orig_t, @{prop False})
 | 
| 247 | else orig_t | |
| 38169 
b51784515471
optimize local "def"s by treating them as definitions
 blanchet parents: 
38126diff
changeset | 248 | val tfree_table = | 
| 
b51784515471
optimize local "def"s by treating them as definitions
 blanchet parents: 
38126diff
changeset | 249 | if merge_type_vars then | 
| 38212 
a7e92239922f
improved "merge_type_vars" option: map supersorts to subsorts, to avoid distinguishing, say, "{}", and "HOL.type"
 blanchet parents: 
38209diff
changeset | 250 | merged_type_var_table_for_terms thy (neg_t :: assm_ts @ evals) | 
| 38169 
b51784515471
optimize local "def"s by treating them as definitions
 blanchet parents: 
38126diff
changeset | 251 | else | 
| 
b51784515471
optimize local "def"s by treating them as definitions
 blanchet parents: 
38126diff
changeset | 252 | [] | 
| 38212 
a7e92239922f
improved "merge_type_vars" option: map supersorts to subsorts, to avoid distinguishing, say, "{}", and "HOL.type"
 blanchet parents: 
38209diff
changeset | 253 | val neg_t = merge_type_vars_in_term thy merge_type_vars tfree_table neg_t | 
| 
a7e92239922f
improved "merge_type_vars" option: map supersorts to subsorts, to avoid distinguishing, say, "{}", and "HOL.type"
 blanchet parents: 
38209diff
changeset | 254 | val assm_ts = map (merge_type_vars_in_term thy merge_type_vars tfree_table) | 
| 38169 
b51784515471
optimize local "def"s by treating them as definitions
 blanchet parents: 
38126diff
changeset | 255 | assm_ts | 
| 38212 
a7e92239922f
improved "merge_type_vars" option: map supersorts to subsorts, to avoid distinguishing, say, "{}", and "HOL.type"
 blanchet parents: 
38209diff
changeset | 256 | val evals = map (merge_type_vars_in_term thy merge_type_vars tfree_table) | 
| 
a7e92239922f
improved "merge_type_vars" option: map supersorts to subsorts, to avoid distinguishing, say, "{}", and "HOL.type"
 blanchet parents: 
38209diff
changeset | 257 | evals | 
| 33192 | 258 | val original_max_potential = max_potential | 
| 259 | val original_max_genuine = max_genuine | |
| 260 | val max_bisim_depth = fold Integer.max bisim_depths ~1 | |
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38214diff
changeset | 261 | val case_names = case_const_names ctxt stds | 
| 37256 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37213diff
changeset | 262 | val (defs, built_in_nondefs, user_nondefs) = all_axioms_of ctxt subst | 
| 35335 | 263 | val def_table = const_def_table ctxt subst defs | 
| 33192 | 264 | val nondef_table = const_nondef_table (built_in_nondefs @ user_nondefs) | 
| 35335 | 265 | val simp_table = Unsynchronized.ref (const_simp_table ctxt subst) | 
| 266 | val psimp_table = const_psimp_table ctxt subst | |
| 35807 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35711diff
changeset | 267 | val choice_spec_table = const_choice_spec_table ctxt subst | 
| 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35711diff
changeset | 268 | val user_nondefs = | 
| 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35711diff
changeset | 269 | user_nondefs |> filter_out (is_choice_spec_axiom thy choice_spec_table) | 
| 35335 | 270 | val intro_table = inductive_intro_table ctxt subst def_table | 
| 33192 | 271 | val ground_thm_table = ground_theorem_table thy | 
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38214diff
changeset | 272 | val ersatz_table = ersatz_table ctxt | 
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 273 |     val (hol_ctxt as {wf_cache, ...}) =
 | 
| 33192 | 274 |       {thy = thy, ctxt = ctxt, max_bisim_depth = max_bisim_depth, boxes = boxes,
 | 
| 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 | 275 | stds = stds, wfs = wfs, user_axioms = user_axioms, debug = debug, | 
| 38209 | 276 | whacks = whacks, binary_ints = binary_ints, | 
| 277 | destroy_constrs = destroy_constrs, specialize = specialize, | |
| 39359 | 278 | star_linear_preds = star_linear_preds, tac_timeout = tac_timeout, | 
| 279 | evals = evals, case_names = case_names, def_table = def_table, | |
| 280 | nondef_table = nondef_table, user_nondefs = user_nondefs, | |
| 281 | simp_table = simp_table, psimp_table = psimp_table, | |
| 282 | choice_spec_table = choice_spec_table, intro_table = intro_table, | |
| 283 | ground_thm_table = ground_thm_table, ersatz_table = ersatz_table, | |
| 284 | skolems = Unsynchronized.ref [], 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 | 285 | 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 | 286 | constr_cache = Unsynchronized.ref []} | 
| 38170 | 287 | val pseudo_frees = fold Term.add_frees assm_ts [] | 
| 288 | val real_frees = subtract (op =) pseudo_frees (Term.add_frees neg_t []) | |
| 38169 
b51784515471
optimize local "def"s by treating them as definitions
 blanchet parents: 
38126diff
changeset | 289 | val _ = null (fold Term.add_tvars (neg_t :: assm_ts) []) orelse | 
| 34936 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34935diff
changeset | 290 | raise NOT_SUPPORTED "schematic type variables" | 
| 35386 
45a4e19d3ebd
more work on the new monotonicity stuff in Nitpick
 blanchet parents: 
35385diff
changeset | 291 | val (nondef_ts, def_ts, got_all_mono_user_axioms, no_poly_user_axioms, | 
| 38169 
b51784515471
optimize local "def"s by treating them as definitions
 blanchet parents: 
38126diff
changeset | 292 | binarize) = preprocess_formulas hol_ctxt finitizes monos assm_ts neg_t | 
| 33192 | 293 | val got_all_user_axioms = | 
| 294 | got_all_mono_user_axioms andalso no_poly_user_axioms | |
| 295 | ||
| 296 | fun print_wf (x, (gfp, wf)) = | |
| 297 | pprint (Pretty.blk (0, | |
| 298 |           pstrs ("The " ^ (if gfp then "co" else "") ^ "inductive predicate \"")
 | |
| 299 | @ Syntax.pretty_term ctxt (Const x) :: | |
| 300 | pstrs (if wf then | |
| 301 | "\" was proved well-founded. Nitpick can compute it \ | |
| 302 | \efficiently." | |
| 303 | else | |
| 304 | "\" could not be proved well-founded. Nitpick might need to \ | |
| 305 | \unroll it."))) | |
| 306 | 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 | 307 | val das_wort_formula = if falsify then "Negated conjecture" else "Formula" | 
| 33192 | 308 | val _ = | 
| 35386 
45a4e19d3ebd
more work on the new monotonicity stuff in Nitpick
 blanchet parents: 
35385diff
changeset | 309 | pprint_d (fn () => Pretty.chunks | 
| 38171 
5f2ea92319e0
fix soundness bug w.r.t. "Suc" with "binary_ints"
 blanchet parents: 
38170diff
changeset | 310 | (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 | 311 | pretties_for_formulas ctxt "Relevant definitional axiom" def_ts @ | 
| 
45a4e19d3ebd
more work on the new monotonicity stuff in Nitpick
 blanchet parents: 
35385diff
changeset | 312 | pretties_for_formulas ctxt "Relevant nondefinitional axiom" | 
| 
45a4e19d3ebd
more work on the new monotonicity stuff in Nitpick
 blanchet parents: 
35385diff
changeset | 313 | (tl nondef_ts))) | 
| 
45a4e19d3ebd
more work on the new monotonicity stuff in Nitpick
 blanchet parents: 
35385diff
changeset | 314 | val _ = List.app (ignore o Term.type_of) (nondef_ts @ def_ts) | 
| 33192 | 315 | handle TYPE (_, Ts, ts) => | 
| 316 |                    raise TYPE ("Nitpick.pick_them_nits_in_term", Ts, ts)
 | |
| 317 | ||
| 35386 
45a4e19d3ebd
more work on the new monotonicity stuff in Nitpick
 blanchet parents: 
35385diff
changeset | 318 | val nondef_us = map (nut_from_term hol_ctxt Eq) nondef_ts | 
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 319 | val def_us = map (nut_from_term hol_ctxt DefEq) def_ts | 
| 33558 
a2db56854b83
optimized Nitpick's encoding and rendering of datatypes whose constructors don't appear in the problem
 blanchet parents: 
33556diff
changeset | 320 | val (free_names, const_names) = | 
| 35386 
45a4e19d3ebd
more work on the new monotonicity stuff in Nitpick
 blanchet parents: 
35385diff
changeset | 321 | fold add_free_and_const_names (nondef_us @ def_us) ([], []) | 
| 33558 
a2db56854b83
optimized Nitpick's encoding and rendering of datatypes whose constructors don't appear in the problem
 blanchet parents: 
33556diff
changeset | 322 | 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 | 323 | List.partition (is_sel o nickname_of) const_names | 
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35408diff
changeset | 324 | val sound_finitizes = | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35408diff
changeset | 325 |       none_true (filter_out (fn (SOME (Type (@{type_name fun}, _)), _) => true
 | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35408diff
changeset | 326 | | _ => false) finitizes) | 
| 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 | 327 | val standard = forall snd stds | 
| 33558 
a2db56854b83
optimized Nitpick's encoding and rendering of datatypes whose constructors don't appear in the problem
 blanchet parents: 
33556diff
changeset | 328 | (* | 
| 36128 
a3d8d5329438
make Nitpick output everything to tracing in debug mode;
 blanchet parents: 
36126diff
changeset | 329 | val _ = List.app (print_g o string_for_nut ctxt) (nondef_us @ def_us) | 
| 33558 
a2db56854b83
optimized Nitpick's encoding and rendering of datatypes whose constructors don't appear in the problem
 blanchet parents: 
33556diff
changeset | 330 | *) | 
| 
a2db56854b83
optimized Nitpick's encoding and rendering of datatypes whose constructors don't appear in the problem
 blanchet parents: 
33556diff
changeset | 331 | |
| 34121 
5e831d805118
get rid of polymorphic equality in Nitpick's code + a few minor cleanups
 blanchet parents: 
34039diff
changeset | 332 | 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 | 333 | fun monotonicity_message Ts extra = | 
| 38188 | 334 | let val pretties = map (pretty_maybe_quote o pretty_for_type ctxt) Ts in | 
| 335 | Pretty.blk (0, | |
| 336 |           pstrs ("The type" ^ plural_s_for_list pretties ^ " ") @
 | |
| 337 | pretty_serial_commas "and" pretties @ | |
| 338 |           pstrs (" " ^
 | |
| 339 | (if none_true monos then | |
| 340 | "passed the monotonicity test" | |
| 341 | else | |
| 342 | (if length pretties = 1 then "is" else "are") ^ " considered monotonic") ^ | |
| 343 | ". " ^ extra)) | |
| 35385 
29f81babefd7
improved precision of infinite "shallow" datatypes in Nitpick;
 blanchet parents: 
35384diff
changeset | 344 | end | 
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35408diff
changeset | 345 | fun is_type_fundamentally_monotonic T = | 
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38214diff
changeset | 346 | (is_datatype ctxt stds T andalso not (is_quot_type ctxt T) andalso | 
| 37256 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37213diff
changeset | 347 | (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 | 348 | is_number_type ctxt T orelse is_bit_type T | 
| 35385 
29f81babefd7
improved precision of infinite "shallow" datatypes in Nitpick;
 blanchet parents: 
35384diff
changeset | 349 | fun is_type_actually_monotonic T = | 
| 35386 
45a4e19d3ebd
more work on the new monotonicity stuff in Nitpick
 blanchet parents: 
35385diff
changeset | 350 | formulas_monotonic hol_ctxt binarize T (nondef_ts, def_ts) | 
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35408diff
changeset | 351 | fun is_type_kind_of_monotonic T = | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35408diff
changeset | 352 | case triple_lookup (type_match thy) monos T of | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35408diff
changeset | 353 | SOME (SOME false) => false | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35408diff
changeset | 354 | | _ => is_type_actually_monotonic T | 
| 34936 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34935diff
changeset | 355 | fun is_type_monotonic T = | 
| 33192 | 356 | unique_scope orelse | 
| 357 | case triple_lookup (type_match thy) monos T of | |
| 358 | SOME (SOME b) => b | |
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35408diff
changeset | 359 | | _ => is_type_fundamentally_monotonic T orelse | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35408diff
changeset | 360 | is_type_actually_monotonic T | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35408diff
changeset | 361 |     fun is_shallow_datatype_finitizable (T as Type (@{type_name fin_fun}, _)) =
 | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35408diff
changeset | 362 | is_type_kind_of_monotonic T | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35408diff
changeset | 363 |       | is_shallow_datatype_finitizable (T as Type (@{type_name fun_box}, _)) =
 | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35408diff
changeset | 364 | is_type_kind_of_monotonic T | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35408diff
changeset | 365 | | is_shallow_datatype_finitizable T = | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35408diff
changeset | 366 | case triple_lookup (type_match thy) finitizes T of | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35408diff
changeset | 367 | SOME (SOME b) => b | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35408diff
changeset | 368 | | _ => is_type_kind_of_monotonic T | 
| 35385 
29f81babefd7
improved precision of infinite "shallow" datatypes in Nitpick;
 blanchet parents: 
35384diff
changeset | 369 | fun is_datatype_deep T = | 
| 
29f81babefd7
improved precision of infinite "shallow" datatypes in Nitpick;
 blanchet parents: 
35384diff
changeset | 370 | not standard orelse T = nat_T orelse is_word_type T orelse | 
| 
29f81babefd7
improved precision of infinite "shallow" datatypes in Nitpick;
 blanchet parents: 
35384diff
changeset | 371 | 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 | 372 | val all_Ts = ground_types_in_terms hol_ctxt binarize (nondef_ts @ def_ts) | 
| 35408 | 373 | |> sort Term_Ord.typ_ord | 
| 38214 | 374 | val _ = | 
| 375 | if verbose andalso binary_ints = SOME true andalso | |
| 376 | exists (member (op =) [nat_T, int_T]) all_Ts then | |
| 377 | print_v (K "The option \"binary_ints\" will be ignored because of the \ | |
| 378 | \presence of rationals, reals, \"Suc\", \"gcd\", or \"lcm\" \ | |
| 379 | \in the problem or because of the \"non_std\" option.") | |
| 380 | else | |
| 381 | () | |
| 382 | val _ = | |
| 383 | if not auto andalso | |
| 384 |          exists (fn Type (@{type_name Datatype.node}, _) => true | _ => false)
 | |
| 385 | all_Ts then | |
| 386 |         print_m (K ("Warning: The problem involves directly or indirectly the \
 | |
| 387 |                     \internal type " ^ quote @{type_name Datatype.node} ^
 | |
| 388 | ". This type is very Nitpick-unfriendly, and its presence \ | |
| 39361 | 389 | \usually indicates either a failure of abstraction or a \ | 
| 390 | \quirk in Nitpick.")) | |
| 38214 | 391 | else | 
| 392 | () | |
| 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 | 393 | val (mono_Ts, nonmono_Ts) = List.partition is_type_monotonic all_Ts | 
| 33192 | 394 | val _ = | 
| 34936 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34935diff
changeset | 395 | if verbose andalso not unique_scope then | 
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35408diff
changeset | 396 | 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 | 397 | [] => () | 
| 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34935diff
changeset | 398 | | interesting_mono_Ts => | 
| 38188 | 399 | pprint_v (K (monotonicity_message interesting_mono_Ts | 
| 400 | "Nitpick might be able to skip some scopes.")) | |
| 33192 | 401 | else | 
| 402 | () | |
| 35385 
29f81babefd7
improved precision of infinite "shallow" datatypes in Nitpick;
 blanchet parents: 
35384diff
changeset | 403 | val (deep_dataTs, shallow_dataTs) = | 
| 37256 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37213diff
changeset | 404 | all_Ts |> filter (is_datatype ctxt stds) | 
| 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37213diff
changeset | 405 | |> List.partition is_datatype_deep | 
| 35385 
29f81babefd7
improved precision of infinite "shallow" datatypes in Nitpick;
 blanchet parents: 
35384diff
changeset | 406 | val finitizable_dataTs = | 
| 
29f81babefd7
improved precision of infinite "shallow" datatypes in Nitpick;
 blanchet parents: 
35384diff
changeset | 407 | shallow_dataTs |> filter_out (is_finite_type hol_ctxt) | 
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35408diff
changeset | 408 | |> filter is_shallow_datatype_finitizable | 
| 35385 
29f81babefd7
improved precision of infinite "shallow" datatypes in Nitpick;
 blanchet parents: 
35384diff
changeset | 409 | val _ = | 
| 
29f81babefd7
improved precision of infinite "shallow" datatypes in Nitpick;
 blanchet parents: 
35384diff
changeset | 410 | if verbose andalso not (null finitizable_dataTs) then | 
| 38188 | 411 | pprint_v (K (monotonicity_message finitizable_dataTs | 
| 412 | "Nitpick can use a more precise finite encoding.")) | |
| 35385 
29f81babefd7
improved precision of infinite "shallow" datatypes in Nitpick;
 blanchet parents: 
35384diff
changeset | 413 | else | 
| 
29f81babefd7
improved precision of infinite "shallow" datatypes in Nitpick;
 blanchet parents: 
35384diff
changeset | 414 | () | 
| 35183 
8580ba651489
reintroduce structural induction hint in Nitpick
 blanchet parents: 
35181diff
changeset | 415 | (* This detection code is an ugly hack. Fortunately, it is used only to | 
| 
8580ba651489
reintroduce structural induction hint in Nitpick
 blanchet parents: 
35181diff
changeset | 416 | provide a hint to the user. *) | 
| 
8580ba651489
reintroduce structural induction hint in Nitpick
 blanchet parents: 
35181diff
changeset | 417 |     fun is_struct_induct_step (name, (Rule_Cases.Case {fixes, assumes, ...}, _)) =
 | 
| 
8580ba651489
reintroduce structural induction hint in Nitpick
 blanchet parents: 
35181diff
changeset | 418 | not (null fixes) andalso | 
| 
8580ba651489
reintroduce structural induction hint in Nitpick
 blanchet parents: 
35181diff
changeset | 419 | exists (String.isSuffix ".hyps" o fst) assumes andalso | 
| 
8580ba651489
reintroduce structural induction hint in Nitpick
 blanchet parents: 
35181diff
changeset | 420 | exists (exists (curry (op =) name o shortest_name o fst) | 
| 
8580ba651489
reintroduce structural induction hint in Nitpick
 blanchet parents: 
35181diff
changeset | 421 | o datatype_constrs hol_ctxt) deep_dataTs | 
| 
8580ba651489
reintroduce structural induction hint in Nitpick
 blanchet parents: 
35181diff
changeset | 422 | val likely_in_struct_induct_step = | 
| 
8580ba651489
reintroduce structural induction hint in Nitpick
 blanchet parents: 
35181diff
changeset | 423 | exists is_struct_induct_step (ProofContext.cases_of ctxt) | 
| 
8580ba651489
reintroduce structural induction hint in Nitpick
 blanchet parents: 
35181diff
changeset | 424 | val _ = if standard andalso likely_in_struct_induct_step then | 
| 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 | 425 | pprint_m (fn () => Pretty.blk (0, | 
| 
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 | 426 | pstrs "Hint: To check that the induction hypothesis is \ | 
| 35177 | 427 | \general enough, try this command: " @ | 
| 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 | 428 | [Pretty.mark Markup.sendback (Pretty.blk (0, | 
| 35183 
8580ba651489
reintroduce structural induction hint in Nitpick
 blanchet parents: 
35181diff
changeset | 429 |                        pstrs ("nitpick [non_std, show_all]")))] @ pstrs "."))
 | 
| 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 | 430 | else | 
| 
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 | 431 | () | 
| 33192 | 432 | (* | 
| 36128 
a3d8d5329438
make Nitpick output everything to tracing in debug mode;
 blanchet parents: 
36126diff
changeset | 433 | val _ = print_g "Monotonic types:" | 
| 
a3d8d5329438
make Nitpick output everything to tracing in debug mode;
 blanchet parents: 
36126diff
changeset | 434 | 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 | 435 | val _ = print_g "Nonmonotonic types:" | 
| 
a3d8d5329438
make Nitpick output everything to tracing in debug mode;
 blanchet parents: 
36126diff
changeset | 436 | val _ = List.app (print_g o string_for_type ctxt) nonmono_Ts | 
| 33192 | 437 | *) | 
| 438 | ||
| 36384 | 439 | val incremental = Int.max (max_potential, max_genuine) >= 2 | 
| 440 | val actual_sat_solver = | |
| 33192 | 441 | if sat_solver <> "smart" then | 
| 36384 | 442 | if incremental andalso | 
| 34936 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34935diff
changeset | 443 | not (member (op =) (Kodkod_SAT.configured_sat_solvers true) | 
| 35333 
f61de25f71f9
distinguish between Kodkodi warnings and errors in Nitpick;
 blanchet parents: 
35280diff
changeset | 444 | sat_solver) then | 
| 33192 | 445 |           (print_m (K ("An incremental SAT solver is required: \"SAT4J\" will \
 | 
| 446 | \be used instead of " ^ quote sat_solver ^ ".")); | |
| 447 | "SAT4J") | |
| 448 | else | |
| 449 | sat_solver | |
| 450 | else | |
| 36384 | 451 | Kodkod_SAT.smart_sat_solver_name incremental | 
| 33192 | 452 | val _ = | 
| 453 | if sat_solver = "smart" then | |
| 36384 | 454 | print_v (fn () => | 
| 455 | "Using SAT solver " ^ quote actual_sat_solver ^ ". The following" ^ | |
| 456 | (if incremental then " incremental " else " ") ^ | |
| 457 | "solvers are configured: " ^ | |
| 458 | commas_quote (Kodkod_SAT.configured_sat_solvers incremental) ^ ".") | |
| 33192 | 459 | else | 
| 460 | () | |
| 461 | ||
| 462 | val too_big_scopes = Unsynchronized.ref [] | |
| 463 | ||
| 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 | 464 | fun problem_for_scope unsound | 
| 34124 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 blanchet parents: 
34123diff
changeset | 465 |             (scope as {card_assigns, bits, bisim_depth, datatypes, ofs, ...}) =
 | 
| 33192 | 466 | let | 
| 467 | 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 | 468 | (!too_big_scopes)) orelse | 
| 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34935diff
changeset | 469 |                 raise TOO_LARGE ("Nitpick.pick_them_nits_in_term.\
 | 
| 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34935diff
changeset | 470 | \problem_for_scope", "too large scope") | 
| 33192 | 471 | (* | 
| 36128 
a3d8d5329438
make Nitpick output everything to tracing in debug mode;
 blanchet parents: 
36126diff
changeset | 472 | val _ = print_g "Offsets:" | 
| 33192 | 473 | val _ = List.app (fn (T, j0) => | 
| 36128 
a3d8d5329438
make Nitpick output everything to tracing in debug mode;
 blanchet parents: 
36126diff
changeset | 474 | print_g (string_for_type ctxt T ^ " = " ^ | 
| 
a3d8d5329438
make Nitpick output everything to tracing in debug mode;
 blanchet parents: 
36126diff
changeset | 475 | string_of_int j0)) | 
| 33192 | 476 | (Typtab.dest ofs) | 
| 477 | *) | |
| 35385 
29f81babefd7
improved precision of infinite "shallow" datatypes in Nitpick;
 blanchet parents: 
35384diff
changeset | 478 | val all_exact = forall (is_exact_type datatypes true) all_Ts | 
| 33192 | 479 | val main_j0 = offset_of_type ofs bool_T | 
| 480 | val (nat_card, nat_j0) = spec_of_type scope nat_T | |
| 481 | 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 | 482 | 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 | 483 |                 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 | 484 | "bad offsets") | 
| 33192 | 485 | val kk = kodkod_constrs peephole_optim nat_card int_card main_j0 | 
| 486 | val (free_names, rep_table) = | |
| 38170 | 487 | choose_reps_for_free_vars scope pseudo_frees free_names | 
| 488 | NameTable.empty | |
| 33192 | 489 | val (sel_names, rep_table) = choose_reps_for_all_sels scope rep_table | 
| 38170 | 490 | val (nonsel_names, rep_table) = | 
| 491 | choose_reps_for_consts scope all_exact nonsel_names rep_table | |
| 38182 | 492 | val (guiltiest_party, min_highest_arity) = | 
| 493 | NameTable.fold (fn (name, R) => fn (s, n) => | |
| 494 | let val n' = arity_of_rep R in | |
| 495 | if n' > n then (nickname_of name, n') else (s, n) | |
| 496 |                              end) rep_table ("", 1)
 | |
| 33192 | 497 | val min_univ_card = | 
| 36384 | 498 | NameTable.fold (Integer.max o min_univ_card_of_rep o snd) rep_table | 
| 34126 | 499 | (univ_card nat_card int_card main_j0 [] KK.True) | 
| 38182 | 500 | val _ = check_arity guiltiest_party min_univ_card min_highest_arity | 
| 33192 | 501 | |
| 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 | 502 | val def_us = map (choose_reps_in_nut scope unsound rep_table true) | 
| 33192 | 503 | def_us | 
| 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 | 504 | val nondef_us = map (choose_reps_in_nut scope unsound rep_table false) | 
| 33192 | 505 | nondef_us | 
| 33745 | 506 | (* | 
| 36128 
a3d8d5329438
make Nitpick output everything to tracing in debug mode;
 blanchet parents: 
36126diff
changeset | 507 | val _ = List.app (print_g o string_for_nut ctxt) | 
| 33192 | 508 | (free_names @ sel_names @ nonsel_names @ | 
| 35386 
45a4e19d3ebd
more work on the new monotonicity stuff in Nitpick
 blanchet parents: 
35385diff
changeset | 509 | nondef_us @ def_us) | 
| 33745 | 510 | *) | 
| 33192 | 511 | val (free_rels, pool, rel_table) = | 
| 512 | rename_free_vars free_names initial_pool NameTable.empty | |
| 513 | val (sel_rels, pool, rel_table) = | |
| 514 | rename_free_vars sel_names pool rel_table | |
| 515 | val (other_rels, pool, rel_table) = | |
| 516 | rename_free_vars nonsel_names pool rel_table | |
| 35386 
45a4e19d3ebd
more work on the new monotonicity stuff in Nitpick
 blanchet parents: 
35385diff
changeset | 517 | val nondef_us = map (rename_vars_in_nut pool rel_table) nondef_us | 
| 33192 | 518 | val def_us = map (rename_vars_in_nut pool rel_table) def_us | 
| 35386 
45a4e19d3ebd
more work on the new monotonicity stuff in Nitpick
 blanchet parents: 
35385diff
changeset | 519 | 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 | 520 | 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 | 521 | 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 | 522 | 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 | 523 | Print_Mode.setmp [] multiline_string_for_scope scope | 
| 34998 | 524 | val kodkod_sat_solver = | 
| 36384 | 525 | Kodkod_SAT.sat_solver_spec actual_sat_solver |> snd | 
| 34124 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 blanchet parents: 
34123diff
changeset | 526 | val bit_width = if bits = 0 then 16 else bits + 1 | 
| 36384 | 527 | val delay = | 
| 528 | if unsound then | |
| 529 | Option.map (fn time => Time.- (time, Time.now ())) deadline | |
| 530 | |> unsound_delay_for_timeout | |
| 531 | else | |
| 532 | 0 | |
| 533 |         val settings = [("solver", commas_quote kodkod_sat_solver),
 | |
| 34124 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 blanchet parents: 
34123diff
changeset | 534 |                         ("bit_width", string_of_int bit_width),
 | 
| 38124 | 535 |                         ("symmetry_breaking", string_of_int kodkod_sym_break),
 | 
| 36386 
2132f15b366f
Fruhjahrsputz: remove three mostly useless Nitpick options
 blanchet parents: 
36385diff
changeset | 536 |                         ("sharing", "3"),
 | 
| 
2132f15b366f
Fruhjahrsputz: remove three mostly useless Nitpick options
 blanchet parents: 
36385diff
changeset | 537 |                         ("flatten", "false"),
 | 
| 33192 | 538 |                         ("delay", signed_string_of_int delay)]
 | 
| 539 | val plain_rels = free_rels @ other_rels | |
| 540 | val plain_bounds = map (bound_for_plain_rel ctxt debug) plain_rels | |
| 541 | val plain_axioms = map (declarative_axiom_for_plain_rel kk) plain_rels | |
| 542 | val sel_bounds = map (bound_for_sel_rel ctxt debug datatypes) sel_rels | |
| 35190 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35185diff
changeset | 543 | val dtype_axioms = | 
| 38126 | 544 | declarative_axioms_for_datatypes hol_ctxt binarize datatype_sym_break | 
| 545 | bits ofs kk rel_table datatypes | |
| 33192 | 546 | 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 | 547 | 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 | 548 | (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 | 549 | main_j0 |> bits > 0 ? Integer.add (bits + 1)) | 
| 38126 | 550 | val (built_in_bounds, built_in_axioms) = | 
| 39345 | 551 | bounds_and_axioms_for_built_in_rels_in_formulas debug univ_card | 
| 552 | nat_card int_card main_j0 (formula :: declarative_axioms) | |
| 33192 | 553 | val bounds = built_in_bounds @ plain_bounds @ sel_bounds | 
| 554 | |> not debug ? merge_bounds | |
| 38126 | 555 | val axioms = built_in_axioms @ declarative_axioms | 
| 33192 | 556 | val highest_arity = | 
| 557 | fold Integer.max (map (fst o fst) (maps fst bounds)) 0 | |
| 38126 | 558 | val formula = fold_rev s_and axioms formula | 
| 34124 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 blanchet parents: 
34123diff
changeset | 559 | val _ = if bits = 0 then () else check_bits bits formula | 
| 34126 | 560 | val _ = if formula = KK.False then () | 
| 38182 | 561 | else check_arity "" univ_card highest_arity | 
| 33192 | 562 | in | 
| 563 |         SOME ({comment = comment, settings = settings, univ_card = univ_card,
 | |
| 564 | tuple_assigns = [], bounds = bounds, | |
| 35280 
54ab4921f826
fixed a few bugs in Nitpick and removed unreferenced variables
 blanchet parents: 
35220diff
changeset | 565 | 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 | 566 | else pow_of_two_int_bounds bits main_j0, | 
| 33192 | 567 | expr_assigns = [], formula = formula}, | 
| 568 |               {free_names = free_names, sel_names = sel_names,
 | |
| 569 | nonsel_names = nonsel_names, rel_table = rel_table, | |
| 35386 
45a4e19d3ebd
more work on the new monotonicity stuff in Nitpick
 blanchet parents: 
35385diff
changeset | 570 | unsound = unsound, scope = scope}) | 
| 33192 | 571 | end | 
| 34124 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 blanchet parents: 
34123diff
changeset | 572 | handle TOO_LARGE (loc, msg) => | 
| 34936 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34935diff
changeset | 573 | if loc = "Nitpick_Kodkod.check_arity" andalso | 
| 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34935diff
changeset | 574 | 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 | 575 | problem_for_scope unsound | 
| 35190 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35185diff
changeset | 576 |                    {hol_ctxt = hol_ctxt, binarize = binarize,
 | 
| 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35185diff
changeset | 577 | card_assigns = card_assigns, bits = bits, | 
| 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35185diff
changeset | 578 | bisim_depth = bisim_depth, datatypes = datatypes, | 
| 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35185diff
changeset | 579 | ofs = Typtab.empty} | 
| 33192 | 580 | else if loc = "Nitpick.pick_them_nits_in_term.\ | 
| 581 | \problem_for_scope" then | |
| 582 | NONE | |
| 583 | else | |
| 584 | (Unsynchronized.change too_big_scopes (cons scope); | |
| 585 |                 print_v (fn () => ("Limit reached: " ^ msg ^
 | |
| 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 | 586 | ". Skipping " ^ (if unsound then "potential" | 
| 33192 | 587 | else "genuine") ^ | 
| 588 | " component of scope.")); | |
| 589 | NONE) | |
| 35280 
54ab4921f826
fixed a few bugs in Nitpick and removed unreferenced variables
 blanchet parents: 
35220diff
changeset | 590 | | TOO_SMALL (_, msg) => | 
| 34124 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 blanchet parents: 
34123diff
changeset | 591 |              (print_v (fn () => ("Limit reached: " ^ msg ^
 | 
| 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 | 592 | ". Skipping " ^ (if unsound then "potential" | 
| 34124 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 blanchet parents: 
34123diff
changeset | 593 | else "genuine") ^ | 
| 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 blanchet parents: 
34123diff
changeset | 594 | " component of scope.")); | 
| 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 blanchet parents: 
34123diff
changeset | 595 | NONE) | 
| 33192 | 596 | |
| 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 | 597 | val das_wort_model = | 
| 
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 | 598 | (if falsify then "counterexample" else "model") | 
| 
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 | 599 | |> not standard ? prefix "nonstandard " | 
| 33192 | 600 | |
| 601 | val scopes = Unsynchronized.ref [] | |
| 602 | 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 | 603 | val generated_problems = Unsynchronized.ref ([] : rich_problem list) | 
| 33192 | 604 | val checked_problems = Unsynchronized.ref (SOME []) | 
| 605 | val met_potential = Unsynchronized.ref 0 | |
| 606 | ||
| 607 | fun update_checked_problems problems = | |
| 608 | List.app (Unsynchronized.change checked_problems o Option.map o cons | |
| 609 | o nth problems) | |
| 35333 
f61de25f71f9
distinguish between Kodkodi warnings and errors in Nitpick;
 blanchet parents: 
35280diff
changeset | 610 | fun show_kodkod_warning "" = () | 
| 35334 
b83b9f2a4b92
show Kodkod warning message even in non-verbose mode
 blanchet parents: 
35333diff
changeset | 611 | | show_kodkod_warning s = print_m (fn () => "Kodkod warning: " ^ s ^ ".") | 
| 33192 | 612 | |
| 613 | fun print_and_check_model genuine bounds | |
| 614 |             ({free_names, sel_names, nonsel_names, rel_table, scope, ...}
 | |
| 615 | : problem_extension) = | |
| 616 | let | |
| 617 | val (reconstructed_model, codatatypes_ok) = | |
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 618 |           reconstruct_hol_model {show_datatypes = show_datatypes,
 | 
| 33192 | 619 | show_consts = show_consts} | 
| 38170 | 620 | scope formats atomss real_frees pseudo_frees free_names sel_names | 
| 621 | 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 | 622 | 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 | 623 | got_all_user_axioms andalso none_true wfs andalso | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 624 | sound_finitizes andalso codatatypes_ok | 
| 38169 
b51784515471
optimize local "def"s by treating them as definitions
 blanchet parents: 
38126diff
changeset | 625 | fun assms_prop () = Logic.mk_conjunction_list (neg_t :: assm_ts) | 
| 33192 | 626 | 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 | 627 | (pprint (Pretty.chunks | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 628 | [Pretty.blk (0, | 
| 40223 | 629 | (pstrs ((if auto then "Auto " else "") ^ "Nitpick found a" ^ | 
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 630 | (if not genuine then " potential " | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 631 | 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 | 632 | 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 | 633 | (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 | 634 | [] => [] | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 635 | | pretties => pstrs " for " @ pretties) @ | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 636 | [Pretty.str ":\n"])), | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 637 | Pretty.indent indent_size reconstructed_model]); | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 638 | if 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 | 639 | (if check_genuine andalso standard then | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 640 | 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 | 641 | 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 | 642 | 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 | 643 |                 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 | 644 | das_wort_model ^ " is really genuine.") | 
| 33192 | 645 | | 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 | 646 | 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 | 647 |                   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 | 648 | \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 | 649 | \happen.\nPlease send a bug report to blanchet\ | 
| 33192 | 650 | \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 | 651 | else | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 652 |                    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 | 653 | 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 | 654 | | 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 | 655 | else | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 656 | (); | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 657 | if not standard andalso likely_in_struct_induct_step then | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 658 | print "The existence of a nonstandard model suggests that the \ | 
| 36126 | 659 | \induction hypothesis is not general enough or may even be \ | 
| 660 | \wrong. See the Nitpick manual's \"Inductive Properties\" \ | |
| 661 | \section for details (\"isabelle doc nitpick\")." | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 662 | else | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 663 | (); | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 664 | if has_syntactic_sorts orig_t then | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 665 | 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 | 666 | else | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 667 | (); | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 668 | 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 | 669 | 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 | 670 | let | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 671 | 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 | 672 | [] |> 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 | 673 |                           ? 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 | 674 | |> 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 | 675 |                           ? 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 | 676 | |> 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 | 677 |                           ? cons ("finitize", "\"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 | 678 | |> 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 | 679 |                           ? 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 | 680 | 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 | 681 | 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 | 682 | options | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 683 | in | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 684 |                   print ("Try again with " ^
 | 
| 38188 | 685 | 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 | 686 | " 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 | 687 | " 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 | 688 | end | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 689 | else | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 690 |                 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 | 691 | \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 | 692 | \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 | 693 | else | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 694 | (); | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 695 | NONE) | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 696 | else | 
| 
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 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 | 698 | (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 | 699 | 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 | 700 | let | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 701 | 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 | 702 | sel_names rel_table bounds | 
| 
b51784515471
optimize local "def"s by treating them as definitions
 blanchet parents: 
38126diff
changeset | 703 | (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 | 704 | in | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 705 | (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 | 706 |                      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 | 707 | \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 | 708 | " 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 | 709 |                    | 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 | 710 | 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 | 711 | | 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 | 712 | status | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 713 | end | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 714 | else | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 715 | NONE) | 
| 33192 | 716 | 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 | 717 | NONE) | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 718 | |> pair genuine_means_genuine | 
| 33192 | 719 | 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 | 720 | 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 | 721 | donno) first_time problems = | 
| 33192 | 722 | let | 
| 723 | val max_potential = Int.max (0, max_potential) | |
| 724 | val max_genuine = Int.max (0, max_genuine) | |
| 725 | fun print_and_check genuine (j, bounds) = | |
| 726 | print_and_check_model genuine bounds (snd (nth problems j)) | |
| 727 | val max_solutions = max_potential + max_genuine | |
| 36384 | 728 | |> not incremental ? Integer.min 1 | 
| 33192 | 729 | in | 
| 730 | 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 | 731 | (found_really_genuine, 0, 0, donno) | 
| 33192 | 732 | else | 
| 34126 | 733 | case KK.solve_any_problem overlord deadline max_threads max_solutions | 
| 734 | (map fst problems) of | |
| 35696 
17ae461d6133
show nice error message in Nitpick when "java" is not available
 blanchet parents: 
35671diff
changeset | 735 | KK.JavaNotInstalled => | 
| 
17ae461d6133
show nice error message in Nitpick when "java" is not available
 blanchet parents: 
35671diff
changeset | 736 | (print_m install_java_message; | 
| 
17ae461d6133
show nice error message in Nitpick when "java" is not available
 blanchet parents: 
35671diff
changeset | 737 | (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 | 738 | | KK.JavaTooOld => | 
| 
307669429dc1
gracefully handle the case where the JVM is too old in Nitpick
 blanchet parents: 
38240diff
changeset | 739 | (print_m install_java_message; | 
| 
307669429dc1
gracefully handle the case where the JVM is too old in Nitpick
 blanchet parents: 
38240diff
changeset | 740 | (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 | 741 | | KK.KodkodiNotInstalled => | 
| 33568 
532b915afa14
don't run Nitpick at all if Kodkodi is not installed (as indicated by the $KODKODI variable)
 blanchet parents: 
33566diff
changeset | 742 | (print_m install_kodkodi_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 | 743 | (found_really_genuine, max_potential, max_genuine, donno + 1)) | 
| 35333 
f61de25f71f9
distinguish between Kodkodi warnings and errors in Nitpick;
 blanchet parents: 
35280diff
changeset | 744 | | KK.Normal ([], unsat_js, s) => | 
| 
f61de25f71f9
distinguish between Kodkodi warnings and errors in Nitpick;
 blanchet parents: 
35280diff
changeset | 745 | (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 | 746 | (found_really_genuine, max_potential, max_genuine, donno)) | 
| 35333 
f61de25f71f9
distinguish between Kodkodi warnings and errors in Nitpick;
 blanchet parents: 
35280diff
changeset | 747 | | KK.Normal (sat_ps, unsat_js, s) => | 
| 33192 | 748 | let | 
| 749 | 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 | 750 | List.partition (#unsound o snd o nth problems o fst) sat_ps | 
| 33192 | 751 | in | 
| 752 | update_checked_problems problems (unsat_js @ map fst lib_ps); | |
| 35333 
f61de25f71f9
distinguish between Kodkodi warnings and errors in Nitpick;
 blanchet parents: 
35280diff
changeset | 753 | show_kodkod_warning s; | 
| 33192 | 754 | if null con_ps then | 
| 755 | 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 | 756 | 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 | 757 | 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 | 758 | |> 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 | 759 | |> 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 | 760 | 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 | 761 | 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 | 762 | val num_genuine = length genuine_codes | 
| 33192 | 763 | val max_genuine = max_genuine - num_genuine | 
| 764 | val max_potential = max_potential | |
| 765 | - (length lib_ps - num_genuine) | |
| 766 | in | |
| 767 | 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 | 768 | (found_really_genuine, 0, 0, donno) | 
| 33192 | 769 | else | 
| 770 | 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 | 771 | (* "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 | 772 | 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 | 773 | probably can't be satisfied themselves. *) | 
| 33192 | 774 | val co_js = | 
| 775 | map (fn j => j - 1) unsat_js | |
| 776 | |> filter (fn j => | |
| 777 | j >= 0 andalso | |
| 778 | scopes_equivalent | |
| 35814 | 779 | (#scope (snd (nth problems j)), | 
| 780 | #scope (snd (nth problems (j + 1))))) | |
| 33192 | 781 | val bye_js = sort_distinct int_ord (map fst sat_ps @ | 
| 782 | unsat_js @ co_js) | |
| 783 | val problems = | |
| 784 | problems |> filter_out_indices bye_js | |
| 785 | |> 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 | 786 | ? filter_out (#unsound o snd) | 
| 33192 | 787 | 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 | 788 | 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 | 789 | max_genuine, donno) false problems | 
| 33192 | 790 | end | 
| 791 | end | |
| 792 | else | |
| 793 | 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 | 794 | 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 | 795 | 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 | 796 | |> 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 | 797 | 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 | 798 | 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 | 799 | found_really_genuine orelse exists fst genuine_codes | 
| 33192 | 800 | in | 
| 801 | 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 | 802 | (found_really_genuine, 0, max_genuine, donno) | 
| 33192 | 803 | else | 
| 804 | let | |
| 805 | val bye_js = sort_distinct int_ord | |
| 806 | (map fst sat_ps @ unsat_js) | |
| 807 | val problems = | |
| 808 | 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 | 809 | |> 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 | 810 | in | 
| 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 811 | 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 | 812 | 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 | 813 | end | 
| 33192 | 814 | end | 
| 815 | end | |
| 34126 | 816 | | KK.TimedOut unsat_js => | 
| 33192 | 817 | (update_checked_problems problems unsat_js; raise TimeLimit.TimeOut) | 
| 34126 | 818 | | KK.Error (s, unsat_js) => | 
| 33192 | 819 | (update_checked_problems problems unsat_js; | 
| 820 |              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 | 821 | (found_really_genuine, max_potential, max_genuine, donno + 1)) | 
| 33192 | 822 | end | 
| 823 | ||
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 824 | 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 | 825 | donno) = | 
| 33192 | 826 | let | 
| 827 | val _ = | |
| 828 | if null scopes then | |
| 829 | print_m (K "The scope specification is inconsistent.") | |
| 830 | else if verbose then | |
| 831 | pprint (Pretty.chunks | |
| 832 | [Pretty.blk (0, | |
| 833 | pstrs ((if n > 1 then | |
| 834 | "Batch " ^ string_of_int (j + 1) ^ " of " ^ | |
| 835 | signed_string_of_int n ^ ": " | |
| 836 | else | |
| 837 | "") ^ | |
| 838 | "Trying " ^ string_of_int (length scopes) ^ | |
| 839 | " scope" ^ plural_s_for_list scopes ^ ":")), | |
| 840 | Pretty.indent indent_size | |
| 841 | (Pretty.chunks (map2 | |
| 842 | (fn j => fn scope => | |
| 843 | Pretty.block ( | |
| 844 | (case pretties_for_scope scope true of | |
| 845 | [] => [Pretty.str "Empty"] | |
| 846 | | pretties => pretties) @ | |
| 847 | [Pretty.str (if j = 1 then "." else ";")])) | |
| 848 | (length scopes downto 1) scopes))]) | |
| 849 | else | |
| 850 | () | |
| 35280 
54ab4921f826
fixed a few bugs in Nitpick and removed unreferenced variables
 blanchet parents: 
35220diff
changeset | 851 | fun add_problem_for_scope (scope, unsound) (problems, donno) = | 
| 33192 | 852 | (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 | 853 | case problem_for_scope unsound scope of | 
| 33192 | 854 | SOME problem => | 
| 855 | (problems | |
| 856 | |> (null problems orelse | |
| 35814 | 857 | not (KK.problems_equivalent (fst problem, fst (hd problems)))) | 
| 33192 | 858 | ? cons problem, donno) | 
| 859 | | NONE => (problems, donno + 1)) | |
| 860 | val (problems, donno) = | |
| 861 | fold add_problem_for_scope | |
| 862 | (map_product pair scopes | |
| 863 | ((if max_genuine > 0 then [false] else []) @ | |
| 864 | (if max_potential > 0 then [true] else []))) | |
| 865 | ([], donno) | |
| 866 | val _ = Unsynchronized.change generated_problems (append problems) | |
| 867 | 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 | 868 | 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 | 869 | 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 | 870 | 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 | 871 | 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 | 872 | 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 | 873 | 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 | 874 | 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 | 875 | 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 | 876 | sound_problems 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 | 877 | print_m (fn () => | 
| 35220 
2bcdae5f4fdb
added support for nonstandard "nat"s to Nitpick and fixed bugs in binary "nat"s and "int"s
 blanchet parents: 
35190diff
changeset | 878 | "Warning: The conjecture either trivially holds for the \ | 
| 35384 | 879 | \given scopes or lies outside Nitpick's supported \ | 
| 880 | \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 | 881 | (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 | 882 | unsound_problems then | 
| 36913 | 883 | " Only potential " ^ das_wort_model ^ "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 | 884 | 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 | 885 | "")) | 
| 
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 | 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 | 887 | () | 
| 
9b8f351cced6
added yet another hint to Nitpick's output, this time warning about problems for which nothing was effectively tested
 blanchet parents: 
35183diff
changeset | 888 | 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 | 889 | 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 | 890 | () | 
| 33192 | 891 | 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 | 892 | 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 | 893 | donno) true (rev problems) | 
| 33192 | 894 | end | 
| 895 | ||
| 896 | fun scope_count (problems : rich_problem list) scope = | |
| 35814 | 897 | length (filter (curry scopes_equivalent scope o #scope o snd) problems) | 
| 33192 | 898 | fun excipit did_so_and_so = | 
| 899 | let | |
| 900 | 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 | 901 | if !met_potential = max_potential then filter_out (#unsound o snd) | 
| 33192 | 902 | else I | 
| 903 | val total = length (!scopes) | |
| 904 | val unsat = | |
| 905 | fold (fn scope => | |
| 906 | case scope_count (do_filter (!generated_problems)) scope of | |
| 907 | 0 => I | |
| 908 | | 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 | 909 | 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 | 910 | 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 | 911 | ? Integer.add 1) (!generated_scopes) 0 | 
| 33192 | 912 | in | 
| 913 | "Nitpick " ^ did_so_and_so ^ | |
| 914 | (if is_some (!checked_problems) andalso total > 0 then | |
| 39361 | 915 | " " ^ string_of_int unsat ^ " of " ^ string_of_int total ^ " scope" | 
| 916 | ^ plural_s total | |
| 33192 | 917 | else | 
| 918 | "") ^ "." | |
| 919 | end | |
| 920 | ||
| 37704 
c6161bee8486
adapt Nitpick to "prod_case" and "*" -> "sum" renaming;
 blanchet parents: 
37497diff
changeset | 921 | val (skipped, the_scopes) = | 
| 
c6161bee8486
adapt Nitpick to "prod_case" and "*" -> "sum" renaming;
 blanchet parents: 
37497diff
changeset | 922 | all_scopes hol_ctxt binarize cards_assigns maxes_assigns iters_assigns | 
| 
c6161bee8486
adapt Nitpick to "prod_case" and "*" -> "sum" renaming;
 blanchet parents: 
37497diff
changeset | 923 | bitss bisim_depths mono_Ts nonmono_Ts deep_dataTs | 
| 
c6161bee8486
adapt Nitpick to "prod_case" and "*" -> "sum" renaming;
 blanchet parents: 
37497diff
changeset | 924 | finitizable_dataTs | 
| 
c6161bee8486
adapt Nitpick to "prod_case" and "*" -> "sum" renaming;
 blanchet parents: 
37497diff
changeset | 925 | val _ = if skipped > 0 then | 
| 
c6161bee8486
adapt Nitpick to "prod_case" and "*" -> "sum" renaming;
 blanchet parents: 
37497diff
changeset | 926 | print_m (fn () => "Too many scopes. Skipping " ^ | 
| 
c6161bee8486
adapt Nitpick to "prod_case" and "*" -> "sum" renaming;
 blanchet parents: 
37497diff
changeset | 927 | string_of_int skipped ^ " scope" ^ | 
| 
c6161bee8486
adapt Nitpick to "prod_case" and "*" -> "sum" renaming;
 blanchet parents: 
37497diff
changeset | 928 | plural_s skipped ^ | 
| 
c6161bee8486
adapt Nitpick to "prod_case" and "*" -> "sum" renaming;
 blanchet parents: 
37497diff
changeset | 929 | ". (Consider using \"mono\" or \ | 
| 
c6161bee8486
adapt Nitpick to "prod_case" and "*" -> "sum" renaming;
 blanchet parents: 
37497diff
changeset | 930 | \\"merge_type_vars\" to prevent this.)") | 
| 
c6161bee8486
adapt Nitpick to "prod_case" and "*" -> "sum" renaming;
 blanchet parents: 
37497diff
changeset | 931 | else | 
| 
c6161bee8486
adapt Nitpick to "prod_case" and "*" -> "sum" renaming;
 blanchet parents: 
37497diff
changeset | 932 | () | 
| 
c6161bee8486
adapt Nitpick to "prod_case" and "*" -> "sum" renaming;
 blanchet parents: 
37497diff
changeset | 933 | val _ = scopes := the_scopes | 
| 
c6161bee8486
adapt Nitpick to "prod_case" and "*" -> "sum" renaming;
 blanchet parents: 
37497diff
changeset | 934 | |
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 935 | 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 | 936 | (found_really_genuine, max_potential, max_genuine, donno) = | 
| 33192 | 937 | if donno > 0 andalso max_genuine > 0 then | 
| 35696 
17ae461d6133
show nice error message in Nitpick when "java" is not available
 blanchet parents: 
35671diff
changeset | 938 | (print_m (fn () => excipit "checked"); "unknown") | 
| 33192 | 939 | else if max_genuine = original_max_genuine then | 
| 940 | if max_potential = original_max_potential then | |
| 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 | 941 | (print_m (fn () => | 
| 
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 | 942 | "Nitpick found no " ^ das_wort_model ^ "." ^ | 
| 35183 
8580ba651489
reintroduce structural induction hint in Nitpick
 blanchet parents: 
35181diff
changeset | 943 | (if not standard andalso likely_in_struct_induct_step then | 
| 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 | 944 | " This suggests that the induction hypothesis might be \ | 
| 
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 | 945 | \general enough to prove this subgoal." | 
| 
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 | 946 | else | 
| 37704 
c6161bee8486
adapt Nitpick to "prod_case" and "*" -> "sum" renaming;
 blanchet parents: 
37497diff
changeset | 947 | "")); if skipped > 0 then "unknown" else "none") | 
| 33192 | 948 | 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 | 949 | (print_m (fn () => | 
| 38123 
36f649db4a6c
clarify Nitpick's output in case of a potential counterexample
 blanchet parents: 
37928diff
changeset | 950 |                  excipit ("could not find a" ^
 | 
| 
36f649db4a6c
clarify Nitpick's output in case of a potential counterexample
 blanchet parents: 
37928diff
changeset | 951 | (if max_genuine = 1 then | 
| 
36f649db4a6c
clarify Nitpick's output in case of a potential counterexample
 blanchet parents: 
37928diff
changeset | 952 | " better " ^ das_wort_model ^ "." | 
| 
36f649db4a6c
clarify Nitpick's output in case of a potential counterexample
 blanchet parents: 
37928diff
changeset | 953 | else | 
| 
36f649db4a6c
clarify Nitpick's output in case of a potential counterexample
 blanchet parents: 
37928diff
changeset | 954 | "ny better " ^ das_wort_model ^ "s.") ^ | 
| 
36f649db4a6c
clarify Nitpick's output in case of a potential counterexample
 blanchet parents: 
37928diff
changeset | 955 | " It checked")); | 
| 
36f649db4a6c
clarify Nitpick's output in case of a potential counterexample
 blanchet parents: 
37928diff
changeset | 956 | "potential") | 
| 35671 
ed2c3830d881
improved Nitpick's precision for "card" and "setsum" + fix incorrect outcome code w.r.t. "bisim_depth = -1"
 blanchet parents: 
35665diff
changeset | 957 | else if found_really_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 | 958 | "genuine" | 
| 33192 | 959 | 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 | 960 | "quasi_genuine" | 
| 33192 | 961 | | 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 | 962 | let val (z as (_, _, max_genuine, _)) = run_batch j n batch z in | 
| 33192 | 963 | run_batches (j + 1) n (if max_genuine > 0 then batches else []) z | 
| 964 | end | |
| 965 | ||
| 966 | val batches = batch_list batch_size (!scopes) | |
| 967 | 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 | 968 | 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 | 969 | (false, max_potential, max_genuine, 0) | 
| 33192 | 970 | handle TimeLimit.TimeOut => | 
| 35696 
17ae461d6133
show nice error message in Nitpick when "java" is not available
 blanchet parents: 
35671diff
changeset | 971 | (print_m (fn () => excipit "ran out of time after checking"); | 
| 33192 | 972 | if !met_potential > 0 then "potential" else "unknown") | 
| 40341 
03156257040f
standardize on seconds for Nitpick and Sledgehammer timeouts
 blanchet parents: 
40223diff
changeset | 973 | val _ = print_v (fn () => | 
| 
03156257040f
standardize on seconds for Nitpick and Sledgehammer timeouts
 blanchet parents: 
40223diff
changeset | 974 | "Total time: " ^ string_from_time (Timer.checkRealTimer timer) ^ | 
| 
03156257040f
standardize on seconds for Nitpick and Sledgehammer timeouts
 blanchet parents: 
40223diff
changeset | 975 | ".") | 
| 33192 | 976 | in (outcome_code, !state_ref) end | 
| 977 | ||
| 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 | 978 | fun pick_nits_in_term state (params as {debug, timeout, expect, ...}) auto i n
 | 
| 38169 
b51784515471
optimize local "def"s by treating them as definitions
 blanchet parents: 
38126diff
changeset | 979 | step subst assm_ts orig_t = | 
| 37497 
71fdbffe3275
distinguish between "unknown" and "no Kodkodi installed" errors
 blanchet parents: 
37273diff
changeset | 980 | let val warning_m = if auto then K () else warning in | 
| 37213 
efcad7594872
fix handling of "split" w.r.t. new definition + fix exception handling w.r.t. "expect" option
 blanchet parents: 
37146diff
changeset | 981 | if getenv "KODKODI" = "" then | 
| 37497 
71fdbffe3275
distinguish between "unknown" and "no Kodkodi installed" errors
 blanchet parents: 
37273diff
changeset | 982 | (* The "expect" argument is deliberately ignored if Kodkodi is missing so | 
| 
71fdbffe3275
distinguish between "unknown" and "no Kodkodi installed" errors
 blanchet parents: 
37273diff
changeset | 983 | that the "Nitpick_Examples" can be processed on any machine. *) | 
| 37213 
efcad7594872
fix handling of "split" w.r.t. new definition + fix exception handling w.r.t. "expect" option
 blanchet parents: 
37146diff
changeset | 984 | (warning_m (Pretty.string_of (plazy install_kodkodi_message)); | 
| 37497 
71fdbffe3275
distinguish between "unknown" and "no Kodkodi installed" errors
 blanchet parents: 
37273diff
changeset | 985 |        ("no_kodkodi", state))
 | 
| 37213 
efcad7594872
fix handling of "split" w.r.t. new definition + fix exception handling w.r.t. "expect" option
 blanchet parents: 
37146diff
changeset | 986 | else | 
| 
efcad7594872
fix handling of "split" w.r.t. new definition + fix exception handling w.r.t. "expect" option
 blanchet parents: 
37146diff
changeset | 987 | let | 
| 37497 
71fdbffe3275
distinguish between "unknown" and "no Kodkodi installed" errors
 blanchet parents: 
37273diff
changeset | 988 |         val unknown_outcome = ("unknown", state)
 | 
| 37213 
efcad7594872
fix handling of "split" w.r.t. new definition + fix exception handling w.r.t. "expect" option
 blanchet parents: 
37146diff
changeset | 989 | val deadline = Option.map (curry Time.+ (Time.now ())) timeout | 
| 
efcad7594872
fix handling of "split" w.r.t. new definition + fix exception handling w.r.t. "expect" option
 blanchet parents: 
37146diff
changeset | 990 | val outcome as (outcome_code, _) = | 
| 
efcad7594872
fix handling of "split" w.r.t. new definition + fix exception handling w.r.t. "expect" option
 blanchet parents: 
37146diff
changeset | 991 | time_limit (if debug then NONE else timeout) | 
| 
efcad7594872
fix handling of "split" w.r.t. new definition + fix exception handling w.r.t. "expect" option
 blanchet parents: 
37146diff
changeset | 992 | (pick_them_nits_in_term deadline state params auto i n step subst | 
| 38169 
b51784515471
optimize local "def"s by treating them as definitions
 blanchet parents: 
38126diff
changeset | 993 | 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 | 994 | handle TOO_LARGE (_, details) => | 
| 
efcad7594872
fix handling of "split" w.r.t. new definition + fix exception handling w.r.t. "expect" option
 blanchet parents: 
37146diff
changeset | 995 |                  (warning ("Limit reached: " ^ details ^ "."); unknown_outcome)
 | 
| 
efcad7594872
fix handling of "split" w.r.t. new definition + fix exception handling w.r.t. "expect" option
 blanchet parents: 
37146diff
changeset | 996 | | TOO_SMALL (_, details) => | 
| 
efcad7594872
fix handling of "split" w.r.t. new definition + fix exception handling w.r.t. "expect" option
 blanchet parents: 
37146diff
changeset | 997 |                  (warning ("Limit reached: " ^ details ^ "."); unknown_outcome)
 | 
| 
efcad7594872
fix handling of "split" w.r.t. new definition + fix exception handling w.r.t. "expect" option
 blanchet parents: 
37146diff
changeset | 998 | | Kodkod.SYNTAX (_, details) => | 
| 
efcad7594872
fix handling of "split" w.r.t. new definition + fix exception handling w.r.t. "expect" option
 blanchet parents: 
37146diff
changeset | 999 |                  (warning ("Ill-formed Kodkodi output: " ^ details ^ ".");
 | 
| 
efcad7594872
fix handling of "split" w.r.t. new definition + fix exception handling w.r.t. "expect" option
 blanchet parents: 
37146diff
changeset | 1000 | unknown_outcome) | 
| 
efcad7594872
fix handling of "split" w.r.t. new definition + fix exception handling w.r.t. "expect" option
 blanchet parents: 
37146diff
changeset | 1001 | in | 
| 
efcad7594872
fix handling of "split" w.r.t. new definition + fix exception handling w.r.t. "expect" option
 blanchet parents: 
37146diff
changeset | 1002 | 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 | 1003 |         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 | 1004 | end | 
| 
efcad7594872
fix handling of "split" w.r.t. new definition + fix exception handling w.r.t. "expect" option
 blanchet parents: 
37146diff
changeset | 1005 | end | 
| 33192 | 1006 | |
| 35335 | 1007 | fun is_fixed_equation fixes | 
| 1008 |                       (Const (@{const_name "=="}, _) $ Free (s, _) $ Const _) =
 | |
| 1009 | member (op =) fixes s | |
| 1010 | | is_fixed_equation _ _ = false | |
| 1011 | fun extract_fixed_frees ctxt (assms, t) = | |
| 1012 | let | |
| 1013 | val fixes = Variable.fixes_of ctxt |> map snd | |
| 1014 | val (subst, other_assms) = | |
| 1015 | List.partition (is_fixed_equation fixes) assms | |
| 1016 | |>> map Logic.dest_equals | |
| 1017 | in (subst, other_assms, subst_atomic subst t) end | |
| 1018 | ||
| 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 | 1019 | fun pick_nits_in_subgoal state params auto i step = | 
| 33192 | 1020 | let | 
| 1021 | val ctxt = Proof.context_of state | |
| 33292 | 1022 | val t = state |> Proof.raw_goal |> #goal |> prop_of | 
| 33192 | 1023 | 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 | 1024 | case Logic.count_prems t of | 
| 40132 
7ee65dbffa31
renamed Output.priority to Output.urgent_message to emphasize its special role more clearly;
 wenzelm parents: 
39361diff
changeset | 1025 |       0 => (Output.urgent_message "No subgoal!"; ("none", state))
 | 
| 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 | 1026 | | n => | 
| 33192 | 1027 | let | 
| 36406 | 1028 | val t = Logic.goal_params t i |> fst | 
| 33192 | 1029 | val assms = map term_of (Assumption.all_assms_of ctxt) | 
| 35335 | 1030 | val (subst, assms, t) = extract_fixed_frees ctxt (assms, t) | 
| 1031 | in pick_nits_in_term state params auto i n step subst assms t end | |
| 33192 | 1032 | end | 
| 1033 | ||
| 1034 | end; |