src/HOL/Tools/Nitpick/nitpick_commands.ML
author blanchet
Fri, 02 Oct 2015 21:24:37 +0200
changeset 61315 a48388351990
parent 60310 932221b62e89
child 61476 1884c40f1539
permissions -rw-r--r--
removed Nitpick nonblocking mode, that was never really used
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
55199
ba93ef2c0d27 tuned ML file name
blanchet
parents: 54816
diff changeset
     1
(*  Title:      HOL/Tools/Nitpick/nitpick_commands.ML
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
     2
    Author:     Jasmin Blanchette, TU Muenchen
34982
7b8c366e34a2 added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
blanchet
parents: 34936
diff changeset
     3
    Copyright   2008, 2009, 2010
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
     4
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
     5
Adds the "nitpick" and "nitpick_params" commands to Isabelle/Isar's outer
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
     6
syntax.
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
     7
*)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
     8
55199
ba93ef2c0d27 tuned ML file name
blanchet
parents: 54816
diff changeset
     9
signature NITPICK_COMMANDS =
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    10
sig
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    11
  type params = Nitpick.params
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    12
43020
abb5d1f907e4 added "try" command, to launch Solve Direct, Quickcheck, Nitpick, Sledgehammer, and Try Methods
blanchet
parents: 43018
diff changeset
    13
  val nitpickN : string
abb5d1f907e4 added "try" command, to launch Solve Direct, Quickcheck, Nitpick, Sledgehammer, and Try Methods
blanchet
parents: 43018
diff changeset
    14
  val nitpick_paramsN : string
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    15
  val default_params : theory -> (string * string) list -> params
35866
513074557e06 move the Sledgehammer Isar commands together into one file;
blanchet
parents: 35665
diff changeset
    16
end;
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    17
55203
e872d196a73b compile
blanchet
parents: 55199
diff changeset
    18
structure Nitpick_Commands : NITPICK_COMMANDS =
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    19
struct
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    20
33232
f93390060bbe internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
blanchet
parents: 33220
diff changeset
    21
open Nitpick_Util
f93390060bbe internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
blanchet
parents: 33220
diff changeset
    22
open Nitpick_HOL
f93390060bbe internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
blanchet
parents: 33220
diff changeset
    23
open Nitpick_Rep
f93390060bbe internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
blanchet
parents: 33220
diff changeset
    24
open Nitpick_Nut
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    25
open Nitpick
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    26
43020
abb5d1f907e4 added "try" command, to launch Solve Direct, Quickcheck, Nitpick, Sledgehammer, and Try Methods
blanchet
parents: 43018
diff changeset
    27
val nitpickN = "nitpick"
abb5d1f907e4 added "try" command, to launch Solve Direct, Quickcheck, Nitpick, Sledgehammer, and Try Methods
blanchet
parents: 43018
diff changeset
    28
val nitpick_paramsN = "nitpick_params"
abb5d1f907e4 added "try" command, to launch Solve Direct, Quickcheck, Nitpick, Sledgehammer, and Try Methods
blanchet
parents: 43018
diff changeset
    29
39344
9de74cdcd833 make Auto Nitpick go through fewer scopes
blanchet
parents: 39328
diff changeset
    30
(* Maximum number of scopes for Auto Nitpick. Be frugal since it has to share
9de74cdcd833 make Auto Nitpick go through fewer scopes
blanchet
parents: 39328
diff changeset
    31
   its time slot with several other automatic tools. *)
43022
7d3ce43d9464 handle non-auto try case gracefully in Nitpick
blanchet
parents: 43020
diff changeset
    32
val auto_try_max_scopes = 6
39344
9de74cdcd833 make Auto Nitpick go through fewer scopes
blanchet
parents: 39328
diff changeset
    33
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    34
type raw_param = string * string list
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    35
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    36
val default_default_params =
42959
ee829022381d use \<emdash> rather than \<midarrow>
blanchet
parents: 42361
diff changeset
    37
  [("card", "1\<emdash>10"),
38180
7a88032f9265 bump up the max cardinalities, to use up more of the time given to us by the user
blanchet
parents: 38127
diff changeset
    38
   ("iter", "0,1,2,4,8,12,16,20,24,28"),
49618
29be73b789f9 lower the defaults for the number of bits, based on an example by Lukas Bulwahn
blanchet
parents: 46961
diff changeset
    39
   ("bits", "1\<emdash>10"),
38180
7a88032f9265 bump up the max cardinalities, to use up more of the time given to us by the user
blanchet
parents: 38127
diff changeset
    40
   ("bisim_depth", "9"),
35964
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    41
   ("box", "smart"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    42
   ("finitize", "smart"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    43
   ("mono", "smart"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    44
   ("wf", "smart"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    45
   ("sat_solver", "smart"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    46
   ("batch_size", "smart"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    47
   ("falsify", "true"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    48
   ("user_axioms", "smart"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    49
   ("assms", "true"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    50
   ("merge_type_vars", "false"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    51
   ("binary_ints", "smart"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    52
   ("destroy_constrs", "true"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    53
   ("specialize", "true"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    54
   ("star_linear_preds", "true"),
41856
7244589c8ccc added "total_consts" option
blanchet
parents: 41803
diff changeset
    55
   ("total_consts", "smart"),
35964
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    56
   ("peephole_optim", "true"),
38127
9f9f696fc4e8 tweak datatype sym break code
blanchet
parents: 38124
diff changeset
    57
   ("datatype_sym_break", "5"),
9f9f696fc4e8 tweak datatype sym break code
blanchet
parents: 38124
diff changeset
    58
   ("kodkod_sym_break", "15"),
40341
03156257040f standardize on seconds for Nitpick and Sledgehammer timeouts
blanchet
parents: 39359
diff changeset
    59
   ("timeout", "30"),
03156257040f standardize on seconds for Nitpick and Sledgehammer timeouts
blanchet
parents: 39359
diff changeset
    60
   ("tac_timeout", "0.5"),
35964
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    61
   ("max_threads", "0"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    62
   ("debug", "false"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    63
   ("verbose", "false"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    64
   ("overlord", "false"),
53802
44bc6ff8f350 added "spy" option to Nitpick
blanchet
parents: 52641
diff changeset
    65
   ("spy", "false"),
55889
6bfbec3dff62 tuned code
blanchet
parents: 55888
diff changeset
    66
   ("show_types", "false"),
41993
bd6296de1432 reintroduced "show_skolems" option -- useful when too many Skolems are displayed
blanchet
parents: 41876
diff changeset
    67
   ("show_skolems", "true"),
35964
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    68
   ("show_consts", "false"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    69
   ("format", "1"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    70
   ("max_potential", "1"),
60310
932221b62e89 removed model checks from Nitpick
blanchet
parents: 60190
diff changeset
    71
   ("max_genuine", "1")]
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    72
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    73
val negated_params =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    74
  [("dont_box", "box"),
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35280
diff changeset
    75
   ("dont_finitize", "finitize"),
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    76
   ("non_mono", "mono"),
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    77
   ("non_wf", "wf"),
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    78
   ("satisfy", "falsify"),
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    79
   ("no_user_axioms", "user_axioms"),
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    80
   ("no_assms", "assms"),
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: 33232
diff changeset
    81
   ("dont_merge_type_vars", "merge_type_vars"),
34124
c4628a1dcf75 added support for binary nat/int representation to Nitpick
blanchet
parents: 34121
diff changeset
    82
   ("unary_ints", "binary_ints"),
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    83
   ("dont_destroy_constrs", "destroy_constrs"),
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    84
   ("dont_specialize", "specialize"),
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    85
   ("dont_star_linear_preds", "star_linear_preds"),
41856
7244589c8ccc added "total_consts" option
blanchet
parents: 41803
diff changeset
    86
   ("partial_consts", "total_consts"),
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    87
   ("no_peephole_optim", "peephole_optim"),
35964
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    88
   ("no_debug", "debug"),
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    89
   ("quiet", "verbose"),
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    90
   ("no_overlord", "overlord"),
53802
44bc6ff8f350 added "spy" option to Nitpick
blanchet
parents: 52641
diff changeset
    91
   ("dont_spy", "spy"),
55889
6bfbec3dff62 tuned code
blanchet
parents: 55888
diff changeset
    92
   ("hide_types", "show_types"),
41993
bd6296de1432 reintroduced "show_skolems" option -- useful when too many Skolems are displayed
blanchet
parents: 41876
diff changeset
    93
   ("hide_skolems", "show_skolems"),
60310
932221b62e89 removed model checks from Nitpick
blanchet
parents: 60190
diff changeset
    94
   ("hide_consts", "show_consts")]
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    95
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    96
fun is_known_raw_param s =
34936
c4f04bee79f3 some work on Nitpick's support for quotient types;
blanchet
parents: 34124
diff changeset
    97
  AList.defined (op =) default_default_params s orelse
c4f04bee79f3 some work on Nitpick's support for quotient types;
blanchet
parents: 34124
diff changeset
    98
  AList.defined (op =) negated_params s orelse
41876
03f699556955 simplify "need" option's syntax
blanchet
parents: 41875
diff changeset
    99
  member (op =) ["max", "show_all", "whack", "eval", "need", "atoms",
03f699556955 simplify "need" option's syntax
blanchet
parents: 41875
diff changeset
   100
                 "expect"] s orelse
34936
c4f04bee79f3 some work on Nitpick's support for quotient types;
blanchet
parents: 34124
diff changeset
   101
  exists (fn p => String.isPrefix (p ^ " ") s)
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35280
diff changeset
   102
         ["card", "max", "iter", "box", "dont_box", "finitize", "dont_finitize",
55888
cac1add157e8 removed nonstandard models from Nitpick
blanchet
parents: 55203
diff changeset
   103
          "mono", "non_mono", "wf", "non_wf", "format", "atoms"]
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   104
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   105
fun check_raw_param (s, _) =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   106
  if is_known_raw_param s then ()
39316
b6c4385ab400 change defaults of Auto Nitpick so that it consumes less resources (time and Kodkod threads)
blanchet
parents: 39155
diff changeset
   107
  else error ("Unknown parameter: " ^ quote s ^ ".")
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   108
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   109
fun unnegate_param_name name =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   110
  case AList.lookup (op =) negated_params name of
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   111
    NONE => if String.isPrefix "dont_" name then SOME (unprefix "dont_" name)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   112
            else if String.isPrefix "non_" name then SOME (unprefix "non_" name)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   113
            else NONE
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   114
  | some_name => some_name
55889
6bfbec3dff62 tuned code
blanchet
parents: 55888
diff changeset
   115
37169
f69efa106feb make Nitpick "show_all" option behave less surprisingly
blanchet
parents: 36960
diff changeset
   116
fun normalize_raw_param (name, value) =
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   117
  case unnegate_param_name name of
37169
f69efa106feb make Nitpick "show_all" option behave less surprisingly
blanchet
parents: 36960
diff changeset
   118
    SOME name' => [(name', case value of
f69efa106feb make Nitpick "show_all" option behave less surprisingly
blanchet
parents: 36960
diff changeset
   119
                             ["false"] => ["true"]
f69efa106feb make Nitpick "show_all" option behave less surprisingly
blanchet
parents: 36960
diff changeset
   120
                           | ["true"] => ["false"]
f69efa106feb make Nitpick "show_all" option behave less surprisingly
blanchet
parents: 36960
diff changeset
   121
                           | [] => ["false"]
f69efa106feb make Nitpick "show_all" option behave less surprisingly
blanchet
parents: 36960
diff changeset
   122
                           | _ => value)]
f69efa106feb make Nitpick "show_all" option behave less surprisingly
blanchet
parents: 36960
diff changeset
   123
  | NONE => if name = "show_all" then
55889
6bfbec3dff62 tuned code
blanchet
parents: 55888
diff changeset
   124
              [("show_types", value), ("show_skolems", value),
41993
bd6296de1432 reintroduced "show_skolems" option -- useful when too many Skolems are displayed
blanchet
parents: 41876
diff changeset
   125
               ("show_consts", value)]
37169
f69efa106feb make Nitpick "show_all" option behave less surprisingly
blanchet
parents: 36960
diff changeset
   126
            else
f69efa106feb make Nitpick "show_all" option behave less surprisingly
blanchet
parents: 36960
diff changeset
   127
              [(name, value)]
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   128
41472
f6ab14e61604 misc tuning and comments based on review of Theory_Data, Proof_Data, Generic_Data usage;
wenzelm
parents: 40931
diff changeset
   129
structure Data = Theory_Data
f6ab14e61604 misc tuning and comments based on review of Theory_Data, Proof_Data, Generic_Data usage;
wenzelm
parents: 40931
diff changeset
   130
(
35964
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
   131
  type T = raw_param list
54546
8b403a7a8c44 fixed spying so that the envirnoment variables are queried at run-time not at build-time
blanchet
parents: 53802
diff changeset
   132
  val empty = default_default_params |> map (apsnd single)
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   133
  val extend = I
41472
f6ab14e61604 misc tuning and comments based on review of Theory_Data, Proof_Data, Generic_Data usage;
wenzelm
parents: 40931
diff changeset
   134
  fun merge data = AList.merge (op =) (K true) data
f6ab14e61604 misc tuning and comments based on review of Theory_Data, Proof_Data, Generic_Data usage;
wenzelm
parents: 40931
diff changeset
   135
)
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   136
37169
f69efa106feb make Nitpick "show_all" option behave less surprisingly
blanchet
parents: 36960
diff changeset
   137
val set_default_raw_param =
f69efa106feb make Nitpick "show_all" option behave less surprisingly
blanchet
parents: 36960
diff changeset
   138
  Data.map o fold (AList.update (op =)) o normalize_raw_param
35964
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
   139
val default_raw_params = Data.get
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   140
42959
ee829022381d use \<emdash> rather than \<midarrow>
blanchet
parents: 42361
diff changeset
   141
fun is_punctuation s = (s = "," orelse s = "-" orelse s = "\<emdash>")
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   142
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   143
fun stringify_raw_param_value [] = ""
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   144
  | stringify_raw_param_value [s] = s
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   145
  | stringify_raw_param_value (s1 :: s2 :: ss) =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   146
    s1 ^ (if is_punctuation s1 orelse is_punctuation s2 then "" else " ") ^
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   147
    stringify_raw_param_value (s2 :: ss)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   148
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   149
fun maxed_int_from_string min_int s = Int.max (min_int, the (Int.fromString s))
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   150
43022
7d3ce43d9464 handle non-auto try case gracefully in Nitpick
blanchet
parents: 43020
diff changeset
   151
fun extract_params ctxt mode default_params override_params =
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   152
  let
37169
f69efa106feb make Nitpick "show_all" option behave less surprisingly
blanchet
parents: 36960
diff changeset
   153
    val override_params = maps normalize_raw_param override_params
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   154
    val raw_params = rev override_params @ rev default_params
37260
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 37213
diff changeset
   155
    val raw_lookup = AList.lookup (op =) raw_params
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 37213
diff changeset
   156
    val lookup = Option.map stringify_raw_param_value o raw_lookup
35964
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
   157
    val lookup_string = the_default "" o lookup
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
   158
    fun general_lookup_bool option default_value name =
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
   159
      case lookup name of
36380
1e8fcaccb3e8 stop referring to Sledgehammer_Util stuff all over Nitpick code; instead, redeclare any needed function in Nitpick_Util as synonym for the Sledgehammer_Util function of the same name
blanchet
parents: 35968
diff changeset
   160
        SOME s => parse_bool_option option name s
35964
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
   161
      | NONE => default_value
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
   162
    val lookup_bool = the o general_lookup_bool false (SOME false)
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
   163
    val lookup_bool_option = general_lookup_bool true NONE
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   164
    fun do_int name value =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   165
      case value of
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   166
        SOME s => (case Int.fromString s of
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   167
                     SOME i => i
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   168
                   | NONE => error ("Parameter " ^ quote name ^
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   169
                                    " must be assigned an integer value."))
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   170
      | NONE => 0
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   171
    fun lookup_int name = do_int name (lookup name)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   172
    fun lookup_int_option name =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   173
      case lookup name of
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   174
        SOME "smart" => NONE
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   175
      | value => SOME (do_int name value)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   176
    fun int_range_from_string name min_int s =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   177
      let
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   178
        val (k1, k2) =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   179
          (case space_explode "-" s of
42959
ee829022381d use \<emdash> rather than \<midarrow>
blanchet
parents: 42361
diff changeset
   180
             [s] => the_default (s, s) (first_field "\<emdash>" s)
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   181
           | ["", s2] => ("-" ^ s2, "-" ^ s2)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   182
           | [s1, s2] => (s1, s2)
51930
52fd62618631 prefer explicitly qualified exceptions, which is particular important for robust handlers;
wenzelm
parents: 51557
diff changeset
   183
           | _ => raise Option.Option)
59058
a78612c67ec0 renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents: 58893
diff changeset
   184
          |> apply2 (maxed_int_from_string min_int)
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   185
      in if k1 <= k2 then k1 upto k2 else k1 downto k2 end
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   186
      handle Option.Option =>
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   187
             error ("Parameter " ^ quote name ^
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   188
                    " must be assigned a sequence of integers.")
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   189
    fun int_seq_from_string name min_int s =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   190
      maps (int_range_from_string name min_int) (space_explode "," s)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   191
    fun lookup_int_seq name min_int =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   192
      case lookup name of
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   193
        SOME s => (case int_seq_from_string name min_int s of
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   194
                     [] => [min_int]
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   195
                   | value => value)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   196
      | NONE => [min_int]
37260
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 37213
diff changeset
   197
    fun lookup_assigns read prefix default convert =
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 37213
diff changeset
   198
      (NONE, convert (the_default default (lookup prefix)))
34982
7b8c366e34a2 added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
blanchet
parents: 34936
diff changeset
   199
      :: map (fn (name, value) =>
7b8c366e34a2 added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
blanchet
parents: 34936
diff changeset
   200
                 (SOME (read (String.extract (name, size prefix + 1, NONE))),
37260
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 37213
diff changeset
   201
                  convert (stringify_raw_param_value value)))
34982
7b8c366e34a2 added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
blanchet
parents: 34936
diff changeset
   202
             (filter (String.isPrefix (prefix ^ " ") o fst) raw_params)
37260
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 37213
diff changeset
   203
    fun lookup_ints_assigns read prefix min_int =
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 37213
diff changeset
   204
      lookup_assigns read prefix (signed_string_of_int min_int)
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 37213
diff changeset
   205
                     (int_seq_from_string prefix min_int)
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   206
    fun lookup_bool_option_assigns read prefix =
37260
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 37213
diff changeset
   207
      lookup_assigns read prefix "" (parse_bool_option true prefix)
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 37213
diff changeset
   208
    fun lookup_strings_assigns read prefix =
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 37213
diff changeset
   209
      lookup_assigns read prefix "" (space_explode " ")
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   210
    fun lookup_time name =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   211
      case lookup name of
54816
10d48c2a3e32 made timeouts in Sledgehammer not be 'option's -- simplified lots of code
blanchet
parents: 54546
diff changeset
   212
        SOME s => parse_time name s
10d48c2a3e32 made timeouts in Sledgehammer not be 'option's -- simplified lots of code
blanchet
parents: 54546
diff changeset
   213
      | NONE => Time.zeroTime
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   214
    val read_type_polymorphic =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   215
      Syntax.read_typ ctxt #> Logic.mk_type
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   216
      #> singleton (Variable.polymorphic ctxt) #> Logic.dest_type
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   217
    val read_term_polymorphic =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   218
      Syntax.read_term ctxt #> singleton (Variable.polymorphic ctxt)
41876
03f699556955 simplify "need" option's syntax
blanchet
parents: 41875
diff changeset
   219
    val lookup_term_list_option_polymorphic =
03f699556955 simplify "need" option's syntax
blanchet
parents: 41875
diff changeset
   220
      AList.lookup (op =) raw_params #> Option.map (map read_term_polymorphic)
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   221
    val read_const_polymorphic = read_term_polymorphic #> dest_Const
43022
7d3ce43d9464 handle non-auto try case gracefully in Nitpick
blanchet
parents: 43020
diff changeset
   222
    val cards_assigns =
7d3ce43d9464 handle non-auto try case gracefully in Nitpick
blanchet
parents: 43020
diff changeset
   223
      lookup_ints_assigns read_type_polymorphic "card" 1
7d3ce43d9464 handle non-auto try case gracefully in Nitpick
blanchet
parents: 43020
diff changeset
   224
      |> mode = Auto_Try ? map (apsnd (take auto_try_max_scopes))
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   225
    val maxes_assigns = lookup_ints_assigns read_const_polymorphic "max" ~1
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   226
    val iters_assigns = lookup_ints_assigns read_const_polymorphic "iter" 0
34124
c4628a1dcf75 added support for binary nat/int representation to Nitpick
blanchet
parents: 34121
diff changeset
   227
    val bitss = lookup_int_seq "bits" 1
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   228
    val bisim_depths = lookup_int_seq "bisim_depth" ~1
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35280
diff changeset
   229
    val boxes = lookup_bool_option_assigns read_type_polymorphic "box"
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35280
diff changeset
   230
    val finitizes = lookup_bool_option_assigns read_type_polymorphic "finitize"
43022
7d3ce43d9464 handle non-auto try case gracefully in Nitpick
blanchet
parents: 43020
diff changeset
   231
    val monos = if mode = Auto_Try then [(NONE, SOME true)]
39316
b6c4385ab400 change defaults of Auto Nitpick so that it consumes less resources (time and Kodkod threads)
blanchet
parents: 39155
diff changeset
   232
                else lookup_bool_option_assigns read_type_polymorphic "mono"
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   233
    val wfs = lookup_bool_option_assigns read_const_polymorphic "wf"
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   234
    val sat_solver = lookup_string "sat_solver"
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   235
    val falsify = lookup_bool "falsify"
43022
7d3ce43d9464 handle non-auto try case gracefully in Nitpick
blanchet
parents: 43020
diff changeset
   236
    val debug = (mode <> Auto_Try andalso lookup_bool "debug")
7d3ce43d9464 handle non-auto try case gracefully in Nitpick
blanchet
parents: 43020
diff changeset
   237
    val verbose = debug orelse (mode <> Auto_Try andalso lookup_bool "verbose")
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   238
    val overlord = lookup_bool "overlord"
54546
8b403a7a8c44 fixed spying so that the envirnoment variables are queried at run-time not at build-time
blanchet
parents: 53802
diff changeset
   239
    val spy = getenv "NITPICK_SPY" = "yes" orelse lookup_bool "spy"
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   240
    val user_axioms = lookup_bool_option "user_axioms"
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   241
    val assms = lookup_bool "assms"
41876
03f699556955 simplify "need" option's syntax
blanchet
parents: 41875
diff changeset
   242
    val whacks = lookup_term_list_option_polymorphic "whack" |> these
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: 33232
diff changeset
   243
    val merge_type_vars = lookup_bool "merge_type_vars"
34124
c4628a1dcf75 added support for binary nat/int representation to Nitpick
blanchet
parents: 34121
diff changeset
   244
    val binary_ints = lookup_bool_option "binary_ints"
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   245
    val destroy_constrs = lookup_bool "destroy_constrs"
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   246
    val specialize = lookup_bool "specialize"
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   247
    val star_linear_preds = lookup_bool "star_linear_preds"
41856
7244589c8ccc added "total_consts" option
blanchet
parents: 41803
diff changeset
   248
    val total_consts = lookup_bool_option "total_consts"
41876
03f699556955 simplify "need" option's syntax
blanchet
parents: 41875
diff changeset
   249
    val needs = lookup_term_list_option_polymorphic "need"
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   250
    val peephole_optim = lookup_bool "peephole_optim"
38124
6538e25cf5dd started implementation of custom sym break
blanchet
parents: 37260
diff changeset
   251
    val datatype_sym_break = lookup_int "datatype_sym_break"
6538e25cf5dd started implementation of custom sym break
blanchet
parents: 37260
diff changeset
   252
    val kodkod_sym_break = lookup_int "kodkod_sym_break"
54816
10d48c2a3e32 made timeouts in Sledgehammer not be 'option's -- simplified lots of code
blanchet
parents: 54546
diff changeset
   253
    val timeout = lookup_time "timeout"
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   254
    val tac_timeout = lookup_time "tac_timeout"
43022
7d3ce43d9464 handle non-auto try case gracefully in Nitpick
blanchet
parents: 43020
diff changeset
   255
    val max_threads =
7d3ce43d9464 handle non-auto try case gracefully in Nitpick
blanchet
parents: 43020
diff changeset
   256
      if mode = Normal then Int.max (0, lookup_int "max_threads") else 1
55889
6bfbec3dff62 tuned code
blanchet
parents: 55888
diff changeset
   257
    val show_types = debug orelse lookup_bool "show_types"
41993
bd6296de1432 reintroduced "show_skolems" option -- useful when too many Skolems are displayed
blanchet
parents: 41876
diff changeset
   258
    val show_skolems = debug orelse lookup_bool "show_skolems"
37169
f69efa106feb make Nitpick "show_all" option behave less surprisingly
blanchet
parents: 36960
diff changeset
   259
    val show_consts = debug orelse lookup_bool "show_consts"
41876
03f699556955 simplify "need" option's syntax
blanchet
parents: 41875
diff changeset
   260
    val evals = lookup_term_list_option_polymorphic "eval" |> these
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   261
    val formats = lookup_ints_assigns read_term_polymorphic "format" 0
37260
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 37213
diff changeset
   262
    val atomss = lookup_strings_assigns read_type_polymorphic "atoms"
33561
ab01b72715ef introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents: 33556
diff changeset
   263
    val max_potential =
43032
f617a5323d07 unbreak "max_potential" logic
blanchet
parents: 43024
diff changeset
   264
      if mode = Normal then Int.max (0, lookup_int "max_potential") else 0
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   265
    val max_genuine = Int.max (0, lookup_int "max_genuine")
36390
eee4ee6a5cbe remove "show_skolems" option and change style of record declarations
blanchet
parents: 36389
diff changeset
   266
    val batch_size =
eee4ee6a5cbe remove "show_skolems" option and change style of record declarations
blanchet
parents: 36389
diff changeset
   267
      case lookup_int_option "batch_size" of
eee4ee6a5cbe remove "show_skolems" option and change style of record declarations
blanchet
parents: 36389
diff changeset
   268
        SOME n => Int.max (1, n)
38180
7a88032f9265 bump up the max cardinalities, to use up more of the time given to us by the user
blanchet
parents: 38127
diff changeset
   269
      | NONE => if debug then 1 else 50
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   270
    val expect = lookup_string "expect"
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   271
  in
55888
cac1add157e8 removed nonstandard models from Nitpick
blanchet
parents: 55203
diff changeset
   272
    {cards_assigns = cards_assigns, maxes_assigns = maxes_assigns,
cac1add157e8 removed nonstandard models from Nitpick
blanchet
parents: 55203
diff changeset
   273
     iters_assigns = iters_assigns, bitss = bitss, bisim_depths = bisim_depths,
cac1add157e8 removed nonstandard models from Nitpick
blanchet
parents: 55203
diff changeset
   274
     boxes = boxes, finitizes = finitizes, monos = monos, wfs = wfs,
61315
a48388351990 removed Nitpick nonblocking mode, that was never really used
blanchet
parents: 60310
diff changeset
   275
     sat_solver = sat_solver, falsify = falsify, debug = debug,
a48388351990 removed Nitpick nonblocking mode, that was never really used
blanchet
parents: 60310
diff changeset
   276
     verbose = verbose, overlord = overlord, spy = spy,
55888
cac1add157e8 removed nonstandard models from Nitpick
blanchet
parents: 55203
diff changeset
   277
     user_axioms = user_axioms, assms = assms, whacks = whacks,
cac1add157e8 removed nonstandard models from Nitpick
blanchet
parents: 55203
diff changeset
   278
     merge_type_vars = merge_type_vars, binary_ints = binary_ints,
cac1add157e8 removed nonstandard models from Nitpick
blanchet
parents: 55203
diff changeset
   279
     destroy_constrs = destroy_constrs, specialize = specialize,
cac1add157e8 removed nonstandard models from Nitpick
blanchet
parents: 55203
diff changeset
   280
     star_linear_preds = star_linear_preds, total_consts = total_consts,
cac1add157e8 removed nonstandard models from Nitpick
blanchet
parents: 55203
diff changeset
   281
     needs = needs, peephole_optim = peephole_optim,
cac1add157e8 removed nonstandard models from Nitpick
blanchet
parents: 55203
diff changeset
   282
     datatype_sym_break = datatype_sym_break,
cac1add157e8 removed nonstandard models from Nitpick
blanchet
parents: 55203
diff changeset
   283
     kodkod_sym_break = kodkod_sym_break, timeout = timeout,
cac1add157e8 removed nonstandard models from Nitpick
blanchet
parents: 55203
diff changeset
   284
     tac_timeout = tac_timeout, max_threads = max_threads,
55889
6bfbec3dff62 tuned code
blanchet
parents: 55888
diff changeset
   285
     show_types = show_types, show_skolems = show_skolems,
55888
cac1add157e8 removed nonstandard models from Nitpick
blanchet
parents: 55203
diff changeset
   286
     show_consts = show_consts, evals = evals, formats = formats,
cac1add157e8 removed nonstandard models from Nitpick
blanchet
parents: 55203
diff changeset
   287
     atomss = atomss, max_potential = max_potential, max_genuine = max_genuine,
cac1add157e8 removed nonstandard models from Nitpick
blanchet
parents: 55203
diff changeset
   288
     batch_size = batch_size, expect = expect}
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   289
  end
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   290
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   291
fun default_params thy =
43022
7d3ce43d9464 handle non-auto try case gracefully in Nitpick
blanchet
parents: 43020
diff changeset
   292
  extract_params (Proof_Context.init_global thy) Normal (default_raw_params thy)
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   293
  o map (apsnd single)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   294
36960
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36610
diff changeset
   295
val parse_key = Scan.repeat1 Parse.typ_group >> space_implode " "
35964
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
   296
val parse_value =
36960
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36610
diff changeset
   297
  Scan.repeat1 (Parse.minus >> single
40341
03156257040f standardize on seconds for Nitpick and Sledgehammer timeouts
blanchet
parents: 39359
diff changeset
   298
                || Scan.repeat1 (Scan.unless Parse.minus
03156257040f standardize on seconds for Nitpick and Sledgehammer timeouts
blanchet
parents: 39359
diff changeset
   299
                                             (Parse.name || Parse.float_number))
46949
94aa7b81bcf6 prefer formally checked @{keyword} parser;
wenzelm
parents: 43032
diff changeset
   300
                || @{keyword ","} |-- Parse.number >> prefix "," >> single)
40341
03156257040f standardize on seconds for Nitpick and Sledgehammer timeouts
blanchet
parents: 39359
diff changeset
   301
  >> flat
46949
94aa7b81bcf6 prefer formally checked @{keyword} parser;
wenzelm
parents: 43032
diff changeset
   302
val parse_param = parse_key -- Scan.optional (@{keyword "="} |-- parse_value) []
35968
b7f98ff9c7d9 simplify Nitpick parameter parsing code a little bit + make compile
blanchet
parents: 35964
diff changeset
   303
val parse_params =
46949
94aa7b81bcf6 prefer formally checked @{keyword} parser;
wenzelm
parents: 43032
diff changeset
   304
  Scan.optional (@{keyword "["} |-- Parse.list parse_param --| @{keyword "]"}) []
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   305
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   306
fun handle_exceptions ctxt f x =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   307
  f x
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   308
  handle ARG (loc, details) =>
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   309
         error ("Bad argument(s) to " ^ quote loc ^ ": " ^ details ^ ".")
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   310
       | BAD (loc, details) =>
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   311
         error ("Internal error (" ^ quote loc ^ "): " ^ details ^ ".")
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   312
       | NOT_SUPPORTED details =>
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   313
         (warning ("Unsupported case: " ^ details ^ "."); x)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   314
       | NUT (loc, us) =>
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   315
         error ("Invalid intermediate term" ^ plural_s_for_list us ^
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   316
                " (" ^ quote loc ^ "): " ^
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   317
                commas (map (string_for_nut ctxt) us) ^ ".")
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   318
       | REP (loc, Rs) =>
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   319
         error ("Invalid representation" ^ plural_s_for_list Rs ^
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   320
                " (" ^ quote loc ^ "): " ^ commas (map string_for_rep Rs) ^ ".")
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   321
       | TERM (loc, ts) =>
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   322
         error ("Invalid term" ^ plural_s_for_list ts ^
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   323
                " (" ^ quote loc ^ "): " ^
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   324
                commas (map (Syntax.string_of_term ctxt) ts) ^ ".")
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   325
       | TYPE (loc, Ts, ts) =>
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   326
         error ("Invalid type" ^ plural_s_for_list Ts ^
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   327
                (if null ts then
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   328
                   ""
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   329
                 else
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   330
                   " for term" ^ plural_s_for_list ts ^ " " ^
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   331
                   commas (map (quote o Syntax.string_of_term ctxt) ts)) ^
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   332
                " (" ^ quote loc ^ "): " ^
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   333
                commas (map (Syntax.string_of_typ ctxt) Ts) ^ ".")
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   334
43022
7d3ce43d9464 handle non-auto try case gracefully in Nitpick
blanchet
parents: 43020
diff changeset
   335
fun pick_nits override_params mode i step state =
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   336
  let
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   337
    val thy = Proof.theory_of state
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   338
    val ctxt = Proof.context_of state
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   339
    val _ = List.app check_raw_param override_params
61315
a48388351990 removed Nitpick nonblocking mode, that was never really used
blanchet
parents: 60310
diff changeset
   340
    val params as {debug, ...} =
43022
7d3ce43d9464 handle non-auto try case gracefully in Nitpick
blanchet
parents: 43020
diff changeset
   341
      extract_params ctxt mode (default_raw_params thy) override_params
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   342
    fun go () =
58892
20aa19ecf2cc eliminated obsolete Proof.goal_message -- print outcome more directly;
wenzelm
parents: 58842
diff changeset
   343
      (unknownN, [])
43022
7d3ce43d9464 handle non-auto try case gracefully in Nitpick
blanchet
parents: 43020
diff changeset
   344
      |> (if mode = Auto_Try then perhaps o try
33561
ab01b72715ef introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents: 33556
diff changeset
   345
          else if debug then fn f => fn x => f x
ab01b72715ef introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents: 33556
diff changeset
   346
          else handle_exceptions ctxt)
58892
20aa19ecf2cc eliminated obsolete Proof.goal_message -- print outcome more directly;
wenzelm
parents: 58842
diff changeset
   347
         (fn _ => pick_nits_in_subgoal state params mode i step)
61315
a48388351990 removed Nitpick nonblocking mode, that was never really used
blanchet
parents: 60310
diff changeset
   348
  in go () end
43020
abb5d1f907e4 added "try" command, to launch Solve Direct, Quickcheck, Nitpick, Sledgehammer, and Try Methods
blanchet
parents: 43018
diff changeset
   349
  |> `(fn (outcome_code, _) => outcome_code = genuineN)
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   350
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   351
fun string_for_raw_param (name, value) =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   352
  name ^ " = " ^ stringify_raw_param_value value
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   353
35968
b7f98ff9c7d9 simplify Nitpick parameter parsing code a little bit + make compile
blanchet
parents: 35964
diff changeset
   354
fun nitpick_params_trans params =
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   355
  Toplevel.theory
35968
b7f98ff9c7d9 simplify Nitpick parameter parsing code a little bit + make compile
blanchet
parents: 35964
diff changeset
   356
      (fold set_default_raw_param params
39316
b6c4385ab400 change defaults of Auto Nitpick so that it consumes less resources (time and Kodkod threads)
blanchet
parents: 39155
diff changeset
   357
       #> tap (fn thy =>
33561
ab01b72715ef introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents: 33556
diff changeset
   358
                  writeln ("Default parameters for Nitpick:\n" ^
ab01b72715ef introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents: 33556
diff changeset
   359
                           (case rev (default_raw_params thy) of
ab01b72715ef introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents: 33556
diff changeset
   360
                              [] => "none"
ab01b72715ef introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents: 33556
diff changeset
   361
                            | params =>
ab01b72715ef introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents: 33556
diff changeset
   362
                              (map check_raw_param params;
ab01b72715ef introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents: 33556
diff changeset
   363
                               params |> map string_for_raw_param
ab01b72715ef introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents: 33556
diff changeset
   364
                                      |> sort_strings |> cat_lines)))))
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   365
46961
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46949
diff changeset
   366
val _ =
59936
b8ffc3dc9e24 @{command_spec} is superseded by @{command_keyword};
wenzelm
parents: 59058
diff changeset
   367
  Outer_Syntax.command @{command_keyword nitpick}
46961
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46949
diff changeset
   368
    "try to find a counterexample for a given subgoal using Nitpick"
51557
4e4b56b7a3a5 more robust access Toplevel.proof_of -- prefer warning via Toplevel.unknown_proof over hard crash (notably for skipped proofs);
wenzelm
parents: 49985
diff changeset
   369
    (parse_params -- Scan.optional Parse.nat 1 >> (fn (params, i) =>
60190
906de96ba68a allow diagnostic proof commands with skip_proofs;
wenzelm
parents: 60094
diff changeset
   370
      Toplevel.keep_proof (fn state =>
51557
4e4b56b7a3a5 more robust access Toplevel.proof_of -- prefer warning via Toplevel.unknown_proof over hard crash (notably for skipped proofs);
wenzelm
parents: 49985
diff changeset
   371
        ignore (pick_nits params Normal i (Toplevel.proof_position_of state)
4e4b56b7a3a5 more robust access Toplevel.proof_of -- prefer warning via Toplevel.unknown_proof over hard crash (notably for skipped proofs);
wenzelm
parents: 49985
diff changeset
   372
          (Toplevel.proof_of state)))))
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   373
46961
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46949
diff changeset
   374
val _ =
59936
b8ffc3dc9e24 @{command_spec} is superseded by @{command_keyword};
wenzelm
parents: 59058
diff changeset
   375
  Outer_Syntax.command @{command_keyword nitpick_params}
46961
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46949
diff changeset
   376
    "set and display the default parameters for Nitpick"
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46949
diff changeset
   377
    (parse_params #>> nitpick_params_trans)
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   378
43022
7d3ce43d9464 handle non-auto try case gracefully in Nitpick
blanchet
parents: 43020
diff changeset
   379
fun try_nitpick auto = pick_nits [] (if auto then Auto_Try else Try) 1 0
33561
ab01b72715ef introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents: 33556
diff changeset
   380
56467
8d7d6f17c6a7 more uniform ML/document antiquotations;
wenzelm
parents: 55889
diff changeset
   381
val _ = Try.tool_setup (nitpickN, (50, @{system_option auto_nitpick}, try_nitpick))
33561
ab01b72715ef introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents: 33556
diff changeset
   382
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   383
end;