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