src/HOL/Tools/Nitpick/nitpick_isar.ML
author blanchet
Tue, 01 Jun 2010 12:20:08 +0200
changeset 37259 dde817e6dfb1
parent 37211 efcad7594872
child 38370 6538e25cf5dd
permissions -rw-r--r--
added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet@33982
     1
(*  Title:      HOL/Tools/Nitpick/nitpick_isar.ML
blanchet@33192
     2
    Author:     Jasmin Blanchette, TU Muenchen
blanchet@34969
     3
    Copyright   2008, 2009, 2010
blanchet@33192
     4
blanchet@33192
     5
Adds the "nitpick" and "nitpick_params" commands to Isabelle/Isar's outer
blanchet@33192
     6
syntax.
blanchet@33192
     7
*)
blanchet@33192
     8
blanchet@33192
     9
signature NITPICK_ISAR =
blanchet@33192
    10
sig
blanchet@33192
    11
  type params = Nitpick.params
blanchet@33192
    12
blanchet@33552
    13
  val auto: bool Unsynchronized.ref
blanchet@33192
    14
  val default_params : theory -> (string * string) list -> params
blanchet@33552
    15
  val setup : theory -> theory
blanchet@35866
    16
end;
blanchet@33192
    17
blanchet@33224
    18
structure Nitpick_Isar : NITPICK_ISAR =
blanchet@33192
    19
struct
blanchet@33192
    20
blanchet@33224
    21
open Nitpick_Util
blanchet@33224
    22
open Nitpick_HOL
blanchet@33224
    23
open Nitpick_Rep
blanchet@33224
    24
open Nitpick_Nut
blanchet@33192
    25
open Nitpick
blanchet@33192
    26
blanchet@33552
    27
val auto = Unsynchronized.ref false;
blanchet@33552
    28
wenzelm@33601
    29
val _ =
wenzelm@33601
    30
  ProofGeneralPgip.add_preference Preferences.category_tracing
blanchet@34969
    31
      (Preferences.bool_pref auto "auto-nitpick"
blanchet@34969
    32
           "Whether to run Nitpick automatically.")
blanchet@33552
    33
blanchet@33192
    34
type raw_param = string * string list
blanchet@33192
    35
blanchet@33192
    36
val default_default_params =
blanchet@35962
    37
  [("card", "1\<midarrow>8"),
blanchet@35962
    38
   ("iter", "0,1,2,4,8,12,16,24"),
blanchet@35962
    39
   ("bits", "1,2,3,4,6,8,10,12"),
blanchet@35962
    40
   ("bisim_depth", "7"),
blanchet@35962
    41
   ("box", "smart"),
blanchet@35962
    42
   ("finitize", "smart"),
blanchet@35962
    43
   ("mono", "smart"),
blanchet@35962
    44
   ("std", "true"),
blanchet@35962
    45
   ("wf", "smart"),
blanchet@35962
    46
   ("sat_solver", "smart"),
blanchet@35962
    47
   ("batch_size", "smart"),
blanchet@35962
    48
   ("blocking", "true"),
blanchet@35962
    49
   ("falsify", "true"),
blanchet@35962
    50
   ("user_axioms", "smart"),
blanchet@35962
    51
   ("assms", "true"),
blanchet@35962
    52
   ("merge_type_vars", "false"),
blanchet@35962
    53
   ("binary_ints", "smart"),
blanchet@35962
    54
   ("destroy_constrs", "true"),
blanchet@35962
    55
   ("specialize", "true"),
blanchet@35962
    56
   ("star_linear_preds", "true"),
blanchet@35962
    57
   ("fast_descrs", "true"),
blanchet@35962
    58
   ("peephole_optim", "true"),
blanchet@35962
    59
   ("timeout", "30 s"),
blanchet@35962
    60
   ("tac_timeout", "500 ms"),
blanchet@35962
    61
   ("max_threads", "0"),
blanchet@35962
    62
   ("debug", "false"),
blanchet@35962
    63
   ("verbose", "false"),
blanchet@35962
    64
   ("overlord", "false"),
blanchet@35962
    65
   ("show_datatypes", "false"),
blanchet@35962
    66
   ("show_consts", "false"),
blanchet@35962
    67
   ("format", "1"),
blanchet@37259
    68
   ("atoms", ""),
blanchet@35962
    69
   ("max_potential", "1"),
blanchet@35962
    70
   ("max_genuine", "1"),
blanchet@35962
    71
   ("check_potential", "false"),
blanchet@35962
    72
   ("check_genuine", "false")]
blanchet@33192
    73
blanchet@33192
    74
val negated_params =
blanchet@33192
    75
  [("dont_box", "box"),
blanchet@35665
    76
   ("dont_finitize", "finitize"),
blanchet@33192
    77
   ("non_mono", "mono"),
blanchet@34969
    78
   ("non_std", "std"),
blanchet@33192
    79
   ("non_wf", "wf"),
blanchet@33192
    80
   ("non_blocking", "blocking"),
blanchet@33192
    81
   ("satisfy", "falsify"),
blanchet@33192
    82
   ("no_user_axioms", "user_axioms"),
blanchet@33192
    83
   ("no_assms", "assms"),
blanchet@33547
    84
   ("dont_merge_type_vars", "merge_type_vars"),
blanchet@34121
    85
   ("unary_ints", "binary_ints"),
blanchet@33192
    86
   ("dont_destroy_constrs", "destroy_constrs"),
blanchet@33192
    87
   ("dont_specialize", "specialize"),
blanchet@33192
    88
   ("dont_star_linear_preds", "star_linear_preds"),
blanchet@33192
    89
   ("full_descrs", "fast_descrs"),
blanchet@33192
    90
   ("no_peephole_optim", "peephole_optim"),
blanchet@35962
    91
   ("no_debug", "debug"),
blanchet@33192
    92
   ("quiet", "verbose"),
blanchet@33192
    93
   ("no_overlord", "overlord"),
blanchet@33192
    94
   ("hide_datatypes", "show_datatypes"),
blanchet@33192
    95
   ("hide_consts", "show_consts"),
blanchet@33192
    96
   ("trust_potential", "check_potential"),
blanchet@33192
    97
   ("trust_genuine", "check_genuine")]
blanchet@33192
    98
blanchet@33192
    99
fun is_known_raw_param s =
blanchet@34923
   100
  AList.defined (op =) default_default_params s orelse
blanchet@34923
   101
  AList.defined (op =) negated_params s orelse
blanchet@37259
   102
  member (op =) ["max", "show_all", "eval", "expect"] s orelse
blanchet@34923
   103
  exists (fn p => String.isPrefix (p ^ " ") s)
blanchet@35665
   104
         ["card", "max", "iter", "box", "dont_box", "finitize", "dont_finitize",
blanchet@37259
   105
          "mono", "non_mono", "std", "non_std", "wf", "non_wf", "format",
blanchet@37259
   106
          "atoms"]
blanchet@33192
   107
blanchet@33192
   108
fun check_raw_param (s, _) =
blanchet@33192
   109
  if is_known_raw_param s then ()
blanchet@35962
   110
  else error ("Unknown parameter: " ^ quote s ^ ".")  
blanchet@33192
   111
blanchet@33192
   112
fun unnegate_param_name name =
blanchet@33192
   113
  case AList.lookup (op =) negated_params name of
blanchet@33192
   114
    NONE => if String.isPrefix "dont_" name then SOME (unprefix "dont_" name)
blanchet@33192
   115
            else if String.isPrefix "non_" name then SOME (unprefix "non_" name)
blanchet@33192
   116
            else NONE
blanchet@33192
   117
  | some_name => some_name
blanchet@37163
   118
fun normalize_raw_param (name, value) =
blanchet@33192
   119
  case unnegate_param_name name of
blanchet@37163
   120
    SOME name' => [(name', case value of
blanchet@37163
   121
                             ["false"] => ["true"]
blanchet@37163
   122
                           | ["true"] => ["false"]
blanchet@37163
   123
                           | [] => ["false"]
blanchet@37163
   124
                           | _ => value)]
blanchet@37163
   125
  | NONE => if name = "show_all" then
blanchet@37163
   126
              [("show_datatypes", value), ("show_consts", value)]
blanchet@37163
   127
            else
blanchet@37163
   128
              [(name, value)]
blanchet@33192
   129
blanchet@33574
   130
structure Data = Theory_Data(
blanchet@35962
   131
  type T = raw_param list
blanchet@36391
   132
  val empty = map (apsnd single) default_default_params
blanchet@33192
   133
  val extend = I
krauss@36607
   134
  fun merge (x, y) = AList.merge (op =) (K true) (x, y))
blanchet@33192
   135
blanchet@37163
   136
val set_default_raw_param =
blanchet@37163
   137
  Data.map o fold (AList.update (op =)) o normalize_raw_param
blanchet@35962
   138
val default_raw_params = Data.get
blanchet@33192
   139
blanchet@33192
   140
fun is_punctuation s = (s = "," orelse s = "-" orelse s = "\<midarrow>")
blanchet@33192
   141
blanchet@33192
   142
fun stringify_raw_param_value [] = ""
blanchet@33192
   143
  | stringify_raw_param_value [s] = s
blanchet@33192
   144
  | stringify_raw_param_value (s1 :: s2 :: ss) =
blanchet@33192
   145
    s1 ^ (if is_punctuation s1 orelse is_punctuation s2 then "" else " ") ^
blanchet@33192
   146
    stringify_raw_param_value (s2 :: ss)
blanchet@33192
   147
blanchet@33192
   148
fun maxed_int_from_string min_int s = Int.max (min_int, the (Int.fromString s))
blanchet@33192
   149
blanchet@33192
   150
fun extract_params ctxt auto default_params override_params =
blanchet@33192
   151
  let
blanchet@37163
   152
    val override_params = maps normalize_raw_param override_params
blanchet@33192
   153
    val raw_params = rev override_params @ rev default_params
blanchet@37259
   154
    val raw_lookup = AList.lookup (op =) raw_params
blanchet@37259
   155
    val lookup = Option.map stringify_raw_param_value o raw_lookup
blanchet@35962
   156
    val lookup_string = the_default "" o lookup
blanchet@35962
   157
    fun general_lookup_bool option default_value name =
blanchet@35962
   158
      case lookup name of
blanchet@36380
   159
        SOME s => parse_bool_option option name s
blanchet@35962
   160
      | NONE => default_value
blanchet@35962
   161
    val lookup_bool = the o general_lookup_bool false (SOME false)
blanchet@35962
   162
    val lookup_bool_option = general_lookup_bool true NONE
blanchet@33192
   163
    fun do_int name value =
blanchet@33192
   164
      case value of
blanchet@33192
   165
        SOME s => (case Int.fromString s of
blanchet@33192
   166
                     SOME i => i
blanchet@33192
   167
                   | NONE => error ("Parameter " ^ quote name ^
blanchet@33192
   168
                                    " must be assigned an integer value."))
blanchet@33192
   169
      | NONE => 0
blanchet@33192
   170
    fun lookup_int name = do_int name (lookup name)
blanchet@33192
   171
    fun lookup_int_option name =
blanchet@33192
   172
      case lookup name of
blanchet@33192
   173
        SOME "smart" => NONE
blanchet@33192
   174
      | value => SOME (do_int name value)
blanchet@33192
   175
    fun int_range_from_string name min_int s =
blanchet@33192
   176
      let
blanchet@33192
   177
        val (k1, k2) =
blanchet@33192
   178
          (case space_explode "-" s of
blanchet@33192
   179
             [s] => the_default (s, s) (first_field "\<midarrow>" s)
blanchet@33192
   180
           | ["", s2] => ("-" ^ s2, "-" ^ s2)
blanchet@33192
   181
           | [s1, s2] => (s1, s2)
blanchet@33192
   182
           | _ => raise Option)
blanchet@33192
   183
          |> pairself (maxed_int_from_string min_int)
blanchet@33192
   184
      in if k1 <= k2 then k1 upto k2 else k1 downto k2 end
blanchet@33192
   185
      handle Option.Option =>
blanchet@33192
   186
             error ("Parameter " ^ quote name ^
blanchet@33192
   187
                    " must be assigned a sequence of integers.")
blanchet@33192
   188
    fun int_seq_from_string name min_int s =
blanchet@33192
   189
      maps (int_range_from_string name min_int) (space_explode "," s)
blanchet@33192
   190
    fun lookup_int_seq name min_int =
blanchet@33192
   191
      case lookup name of
blanchet@33192
   192
        SOME s => (case int_seq_from_string name min_int s of
blanchet@33192
   193
                     [] => [min_int]
blanchet@33192
   194
                   | value => value)
blanchet@33192
   195
      | NONE => [min_int]
blanchet@37259
   196
    fun lookup_assigns read prefix default convert =
blanchet@37259
   197
      (NONE, convert (the_default default (lookup prefix)))
blanchet@33192
   198
      :: map (fn (name, value) =>
blanchet@33192
   199
                 (SOME (read (String.extract (name, size prefix + 1, NONE))),
blanchet@37259
   200
                  convert (stringify_raw_param_value value)))
blanchet@33192
   201
             (filter (String.isPrefix (prefix ^ " ") o fst) raw_params)
blanchet@37259
   202
    fun lookup_ints_assigns read prefix min_int =
blanchet@37259
   203
      lookup_assigns read prefix (signed_string_of_int min_int)
blanchet@37259
   204
                     (int_seq_from_string prefix min_int)
blanchet@34969
   205
    fun lookup_bool_assigns read prefix =
blanchet@37259
   206
      lookup_assigns read prefix "" (the o parse_bool_option false prefix)
blanchet@33192
   207
    fun lookup_bool_option_assigns read prefix =
blanchet@37259
   208
      lookup_assigns read prefix "" (parse_bool_option true prefix)
blanchet@37259
   209
    fun lookup_strings_assigns read prefix =
blanchet@37259
   210
      lookup_assigns read prefix "" (space_explode " ")
blanchet@33192
   211
    fun lookup_time name =
blanchet@33192
   212
      case lookup name of
blanchet@33192
   213
        NONE => NONE
blanchet@36380
   214
      | SOME s => parse_time_option name s
blanchet@33192
   215
    val lookup_term_list =
blanchet@33192
   216
      AList.lookup (op =) raw_params #> these #> Syntax.read_terms ctxt
blanchet@33192
   217
    val read_type_polymorphic =
blanchet@33192
   218
      Syntax.read_typ ctxt #> Logic.mk_type
blanchet@33192
   219
      #> singleton (Variable.polymorphic ctxt) #> Logic.dest_type
blanchet@33192
   220
    val read_term_polymorphic =
blanchet@33192
   221
      Syntax.read_term ctxt #> singleton (Variable.polymorphic ctxt)
blanchet@33192
   222
    val read_const_polymorphic = read_term_polymorphic #> dest_Const
blanchet@33192
   223
    val cards_assigns = lookup_ints_assigns read_type_polymorphic "card" 1
blanchet@33192
   224
    val maxes_assigns = lookup_ints_assigns read_const_polymorphic "max" ~1
blanchet@33192
   225
    val iters_assigns = lookup_ints_assigns read_const_polymorphic "iter" 0
blanchet@34121
   226
    val bitss = lookup_int_seq "bits" 1
blanchet@33192
   227
    val bisim_depths = lookup_int_seq "bisim_depth" ~1
blanchet@35665
   228
    val boxes = lookup_bool_option_assigns read_type_polymorphic "box"
blanchet@35665
   229
    val finitizes = lookup_bool_option_assigns read_type_polymorphic "finitize"
blanchet@33192
   230
    val monos = lookup_bool_option_assigns read_type_polymorphic "mono"
blanchet@34969
   231
    val stds = lookup_bool_assigns read_type_polymorphic "std"
blanchet@33192
   232
    val wfs = lookup_bool_option_assigns read_const_polymorphic "wf"
blanchet@33192
   233
    val sat_solver = lookup_string "sat_solver"
blanchet@33192
   234
    val blocking = not auto andalso lookup_bool "blocking"
blanchet@33192
   235
    val falsify = lookup_bool "falsify"
blanchet@33192
   236
    val debug = not auto andalso lookup_bool "debug"
blanchet@33192
   237
    val verbose = debug orelse (not auto andalso lookup_bool "verbose")
blanchet@33192
   238
    val overlord = lookup_bool "overlord"
blanchet@33192
   239
    val user_axioms = lookup_bool_option "user_axioms"
blanchet@33192
   240
    val assms = lookup_bool "assms"
blanchet@33547
   241
    val merge_type_vars = lookup_bool "merge_type_vars"
blanchet@34121
   242
    val binary_ints = lookup_bool_option "binary_ints"
blanchet@33192
   243
    val destroy_constrs = lookup_bool "destroy_constrs"
blanchet@33192
   244
    val specialize = lookup_bool "specialize"
blanchet@33192
   245
    val star_linear_preds = lookup_bool "star_linear_preds"
blanchet@33192
   246
    val fast_descrs = lookup_bool "fast_descrs"
blanchet@33192
   247
    val peephole_optim = lookup_bool "peephole_optim"
blanchet@33552
   248
    val timeout = if auto then NONE else lookup_time "timeout"
blanchet@33192
   249
    val tac_timeout = lookup_time "tac_timeout"
blanchet@33192
   250
    val max_threads = Int.max (0, lookup_int "max_threads")
blanchet@37163
   251
    val show_datatypes = debug orelse lookup_bool "show_datatypes"
blanchet@37163
   252
    val show_consts = debug orelse lookup_bool "show_consts"
blanchet@33192
   253
    val formats = lookup_ints_assigns read_term_polymorphic "format" 0
blanchet@37259
   254
    val atomss = lookup_strings_assigns read_type_polymorphic "atoms"
blanchet@33192
   255
    val evals = lookup_term_list "eval"
blanchet@33552
   256
    val max_potential =
blanchet@33552
   257
      if auto then 0 else Int.max (0, lookup_int "max_potential")
blanchet@33192
   258
    val max_genuine = Int.max (0, lookup_int "max_genuine")
blanchet@33192
   259
    val check_potential = lookup_bool "check_potential"
blanchet@33192
   260
    val check_genuine = lookup_bool "check_genuine"
blanchet@36390
   261
    val batch_size =
blanchet@36390
   262
      case lookup_int_option "batch_size" of
blanchet@36390
   263
        SOME n => Int.max (1, n)
blanchet@36390
   264
      | NONE => if debug then 1 else 64
blanchet@33192
   265
    val expect = lookup_string "expect"
blanchet@33192
   266
  in
blanchet@33192
   267
    {cards_assigns = cards_assigns, maxes_assigns = maxes_assigns,
blanchet@34121
   268
     iters_assigns = iters_assigns, bitss = bitss, bisim_depths = bisim_depths,
blanchet@35665
   269
     boxes = boxes, finitizes = finitizes, monos = monos, stds = stds,
blanchet@35665
   270
     wfs = wfs, sat_solver = sat_solver, blocking = blocking, falsify = falsify,
blanchet@34969
   271
     debug = debug, verbose = verbose, overlord = overlord,
blanchet@34969
   272
     user_axioms = user_axioms, assms = assms,
blanchet@34121
   273
     merge_type_vars = merge_type_vars, binary_ints = binary_ints,
blanchet@34121
   274
     destroy_constrs = destroy_constrs, specialize = specialize,
blanchet@36389
   275
     star_linear_preds = star_linear_preds, fast_descrs = fast_descrs,
blanchet@36389
   276
     peephole_optim = peephole_optim, timeout = timeout,
blanchet@36389
   277
     tac_timeout = tac_timeout, max_threads = max_threads,
blanchet@36390
   278
     show_datatypes = show_datatypes, show_consts = show_consts,
blanchet@37259
   279
     formats = formats, atomss = atomss, evals = evals,
blanchet@37259
   280
     max_potential = max_potential, max_genuine = max_genuine,
blanchet@37259
   281
     check_potential = check_potential, check_genuine = check_genuine,
blanchet@37259
   282
     batch_size = batch_size, expect = expect}
blanchet@33192
   283
  end
blanchet@33192
   284
blanchet@33192
   285
fun default_params thy =
wenzelm@36633
   286
  extract_params (ProofContext.init_global thy) false (default_raw_params thy)
blanchet@33192
   287
  o map (apsnd single)
blanchet@33192
   288
wenzelm@36970
   289
val parse_key = Scan.repeat1 Parse.typ_group >> space_implode " "
blanchet@35962
   290
val parse_value =
wenzelm@36970
   291
  Scan.repeat1 (Parse.minus >> single
wenzelm@36970
   292
                || Scan.repeat1 (Scan.unless Parse.minus Parse.name)
wenzelm@36970
   293
                || Parse.$$$ "," |-- Parse.number >> prefix "," >> single) >> flat
wenzelm@36970
   294
val parse_param = parse_key -- Scan.optional (Parse.$$$ "=" |-- parse_value) []
blanchet@35966
   295
val parse_params =
wenzelm@36970
   296
  Scan.optional (Parse.$$$ "[" |-- Parse.list parse_param --| Parse.$$$ "]") []
blanchet@33192
   297
blanchet@33192
   298
fun handle_exceptions ctxt f x =
blanchet@33192
   299
  f x
blanchet@33192
   300
  handle ARG (loc, details) =>
blanchet@33192
   301
         error ("Bad argument(s) to " ^ quote loc ^ ": " ^ details ^ ".")
blanchet@33192
   302
       | BAD (loc, details) =>
blanchet@33192
   303
         error ("Internal error (" ^ quote loc ^ "): " ^ details ^ ".")
blanchet@33192
   304
       | NOT_SUPPORTED details =>
blanchet@33192
   305
         (warning ("Unsupported case: " ^ details ^ "."); x)
blanchet@33192
   306
       | NUT (loc, us) =>
blanchet@33192
   307
         error ("Invalid intermediate term" ^ plural_s_for_list us ^
blanchet@33192
   308
                " (" ^ quote loc ^ "): " ^
blanchet@33192
   309
                commas (map (string_for_nut ctxt) us) ^ ".")
blanchet@33192
   310
       | REP (loc, Rs) =>
blanchet@33192
   311
         error ("Invalid representation" ^ plural_s_for_list Rs ^
blanchet@33192
   312
                " (" ^ quote loc ^ "): " ^ commas (map string_for_rep Rs) ^ ".")
blanchet@33192
   313
       | TERM (loc, ts) =>
blanchet@33192
   314
         error ("Invalid term" ^ plural_s_for_list ts ^
blanchet@33192
   315
                " (" ^ quote loc ^ "): " ^
blanchet@33192
   316
                commas (map (Syntax.string_of_term ctxt) ts) ^ ".")
blanchet@33192
   317
       | TYPE (loc, Ts, ts) =>
blanchet@33192
   318
         error ("Invalid type" ^ plural_s_for_list Ts ^
blanchet@33192
   319
                (if null ts then
blanchet@33192
   320
                   ""
blanchet@33192
   321
                 else
blanchet@33192
   322
                   " for term" ^ plural_s_for_list ts ^ " " ^
blanchet@33192
   323
                   commas (map (quote o Syntax.string_of_term ctxt) ts)) ^
blanchet@33192
   324
                " (" ^ quote loc ^ "): " ^
blanchet@33192
   325
                commas (map (Syntax.string_of_typ ctxt) Ts) ^ ".")
blanchet@33192
   326
       | Refute.REFUTE (loc, details) =>
blanchet@33192
   327
         error ("Unhandled Refute error (" ^ quote loc ^ "): " ^ details ^ ".")
blanchet@33192
   328
blanchet@34969
   329
fun pick_nits override_params auto i step state =
blanchet@33192
   330
  let
blanchet@33192
   331
    val thy = Proof.theory_of state
blanchet@33192
   332
    val ctxt = Proof.context_of state
blanchet@33192
   333
    val _ = List.app check_raw_param override_params
blanchet@33192
   334
    val params as {blocking, debug, ...} =
blanchet@33192
   335
      extract_params ctxt auto (default_raw_params thy) override_params
blanchet@33192
   336
    fun go () =
blanchet@33552
   337
      (false, state)
blanchet@33552
   338
      |> (if auto then perhaps o try
blanchet@33552
   339
          else if debug then fn f => fn x => f x
blanchet@33552
   340
          else handle_exceptions ctxt)
blanchet@34969
   341
         (fn (_, state) => pick_nits_in_subgoal state params auto i step
blanchet@34118
   342
                           |>> curry (op =) "genuine")
blanchet@33192
   343
  in
blanchet@33552
   344
    if auto orelse blocking then go ()
wenzelm@33604
   345
    else (Toplevel.thread true (fn () => (go (); ())); (false, state))
blanchet@33192
   346
  end
blanchet@33192
   347
blanchet@35966
   348
fun nitpick_trans (params, i) =
blanchet@34969
   349
  Toplevel.keep (fn st =>
blanchet@35966
   350
      (pick_nits params false i (Toplevel.proof_position_of st)
blanchet@35966
   351
                 (Toplevel.proof_of st); ()))
blanchet@33192
   352
blanchet@33192
   353
fun string_for_raw_param (name, value) =
blanchet@33192
   354
  name ^ " = " ^ stringify_raw_param_value value
blanchet@33192
   355
blanchet@35966
   356
fun nitpick_params_trans params =
blanchet@33192
   357
  Toplevel.theory
blanchet@35966
   358
      (fold set_default_raw_param params
blanchet@33552
   359
       #> tap (fn thy => 
blanchet@33552
   360
                  writeln ("Default parameters for Nitpick:\n" ^
blanchet@33552
   361
                           (case rev (default_raw_params thy) of
blanchet@33552
   362
                              [] => "none"
blanchet@33552
   363
                            | params =>
blanchet@33552
   364
                              (map check_raw_param params;
blanchet@33552
   365
                               params |> map string_for_raw_param
blanchet@33552
   366
                                      |> sort_strings |> cat_lines)))))
blanchet@33192
   367
blanchet@35962
   368
val parse_nitpick_command =
wenzelm@36970
   369
  (parse_params -- Scan.optional Parse.nat 1) #>> nitpick_trans
blanchet@35962
   370
val parse_nitpick_params_command = parse_params #>> nitpick_params_trans
blanchet@33192
   371
wenzelm@36970
   372
val _ = Outer_Syntax.improper_command "nitpick"
blanchet@36390
   373
            "try to find a counterexample for a given subgoal using Nitpick"
wenzelm@36970
   374
            Keyword.diag parse_nitpick_command
wenzelm@36970
   375
val _ = Outer_Syntax.command "nitpick_params"
blanchet@33192
   376
            "set and display the default parameters for Nitpick"
wenzelm@36970
   377
            Keyword.thy_decl parse_nitpick_params_command
blanchet@33192
   378
blanchet@33552
   379
fun auto_nitpick state =
blanchet@34969
   380
  if not (!auto) then (false, state) else pick_nits [] true 1 0 state
blanchet@33552
   381
blanchet@33552
   382
val setup = Auto_Counterexample.register_tool ("nitpick", auto_nitpick)
blanchet@33552
   383
blanchet@33192
   384
end;