src/HOL/Tools/Nitpick/nitpick.ML
author blanchet
Thu, 22 Oct 2009 14:51:47 +0200
changeset 33192 08a39a957ed7
child 33224 f93390060bbe
permissions -rw-r--r--
added Nitpick's theory and ML files to Isabelle/HOL;
the examples and the documentation are on their way.
blanchet@33192
     1
(*  Title:      HOL/Nitpick/Tools/nitpick.ML
blanchet@33192
     2
    Author:     Jasmin Blanchette, TU Muenchen
blanchet@33192
     3
    Copyright   2008, 2009
blanchet@33192
     4
blanchet@33192
     5
Finite model generation for HOL formulas using Kodkod.
blanchet@33192
     6
*)
blanchet@33192
     7
blanchet@33192
     8
signature NITPICK =
blanchet@33192
     9
sig
blanchet@33192
    10
  type params = {
blanchet@33192
    11
    cards_assigns: (typ option * int list) list,
blanchet@33192
    12
    maxes_assigns: (styp option * int list) list,
blanchet@33192
    13
    iters_assigns: (styp option * int list) list,
blanchet@33192
    14
    bisim_depths: int list,
blanchet@33192
    15
    boxes: (typ option * bool option) list,
blanchet@33192
    16
    monos: (typ option * bool option) list,
blanchet@33192
    17
    wfs: (styp option * bool option) list,
blanchet@33192
    18
    sat_solver: string,
blanchet@33192
    19
    blocking: bool,
blanchet@33192
    20
    falsify: bool,
blanchet@33192
    21
    debug: bool,
blanchet@33192
    22
    verbose: bool,
blanchet@33192
    23
    overlord: bool,
blanchet@33192
    24
    user_axioms: bool option,
blanchet@33192
    25
    assms: bool,
blanchet@33192
    26
    coalesce_type_vars: bool,
blanchet@33192
    27
    destroy_constrs: bool,
blanchet@33192
    28
    specialize: bool,
blanchet@33192
    29
    skolemize: bool,
blanchet@33192
    30
    star_linear_preds: bool,
blanchet@33192
    31
    uncurry: bool,
blanchet@33192
    32
    fast_descrs: bool,
blanchet@33192
    33
    peephole_optim: bool,
blanchet@33192
    34
    timeout: Time.time option,
blanchet@33192
    35
    tac_timeout: Time.time option,
blanchet@33192
    36
    sym_break: int,
blanchet@33192
    37
    sharing_depth: int,
blanchet@33192
    38
    flatten_props: bool,
blanchet@33192
    39
    max_threads: int,
blanchet@33192
    40
    show_skolems: bool,
blanchet@33192
    41
    show_datatypes: bool,
blanchet@33192
    42
    show_consts: bool,
blanchet@33192
    43
    evals: term list,
blanchet@33192
    44
    formats: (term option * int list) list,
blanchet@33192
    45
    max_potential: int,
blanchet@33192
    46
    max_genuine: int,
blanchet@33192
    47
    check_potential: bool,
blanchet@33192
    48
    check_genuine: bool,
blanchet@33192
    49
    batch_size: int,
blanchet@33192
    50
    expect: string}
blanchet@33192
    51
blanchet@33192
    52
  val register_frac_type : string -> (string * string) list -> theory -> theory
blanchet@33192
    53
  val unregister_frac_type : string -> theory -> theory
blanchet@33192
    54
  val register_codatatype : typ -> string -> styp list -> theory -> theory
blanchet@33192
    55
  val unregister_codatatype : typ -> theory -> theory
blanchet@33192
    56
  val pick_nits_in_term :
blanchet@33192
    57
    Proof.state -> params -> bool -> term list -> term -> string * Proof.state
blanchet@33192
    58
  val pick_nits_in_subgoal :
blanchet@33192
    59
    Proof.state -> params -> bool -> int -> string * Proof.state
blanchet@33192
    60
end;
blanchet@33192
    61
blanchet@33192
    62
structure Nitpick : NITPICK =
blanchet@33192
    63
struct
blanchet@33192
    64
blanchet@33192
    65
open NitpickUtil
blanchet@33192
    66
open NitpickHOL
blanchet@33192
    67
open NitpickMono
blanchet@33192
    68
open NitpickScope
blanchet@33192
    69
open NitpickPeephole
blanchet@33192
    70
open NitpickRep
blanchet@33192
    71
open NitpickNut
blanchet@33192
    72
open NitpickKodkod
blanchet@33192
    73
open NitpickModel
blanchet@33192
    74
blanchet@33192
    75
type params = {
blanchet@33192
    76
  cards_assigns: (typ option * int list) list,
blanchet@33192
    77
  maxes_assigns: (styp option * int list) list,
blanchet@33192
    78
  iters_assigns: (styp option * int list) list,
blanchet@33192
    79
  bisim_depths: int list,
blanchet@33192
    80
  boxes: (typ option * bool option) list,
blanchet@33192
    81
  monos: (typ option * bool option) list,
blanchet@33192
    82
  wfs: (styp option * bool option) list,
blanchet@33192
    83
  sat_solver: string,
blanchet@33192
    84
  blocking: bool,
blanchet@33192
    85
  falsify: bool,
blanchet@33192
    86
  debug: bool,
blanchet@33192
    87
  verbose: bool,
blanchet@33192
    88
  overlord: bool,
blanchet@33192
    89
  user_axioms: bool option,
blanchet@33192
    90
  assms: bool,
blanchet@33192
    91
  coalesce_type_vars: bool,
blanchet@33192
    92
  destroy_constrs: bool,
blanchet@33192
    93
  specialize: bool,
blanchet@33192
    94
  skolemize: bool,
blanchet@33192
    95
  star_linear_preds: bool,
blanchet@33192
    96
  uncurry: bool,
blanchet@33192
    97
  fast_descrs: bool,
blanchet@33192
    98
  peephole_optim: bool,
blanchet@33192
    99
  timeout: Time.time option,
blanchet@33192
   100
  tac_timeout: Time.time option,
blanchet@33192
   101
  sym_break: int,
blanchet@33192
   102
  sharing_depth: int,
blanchet@33192
   103
  flatten_props: bool,
blanchet@33192
   104
  max_threads: int,
blanchet@33192
   105
  show_skolems: bool,
blanchet@33192
   106
  show_datatypes: bool,
blanchet@33192
   107
  show_consts: bool,
blanchet@33192
   108
  evals: term list,
blanchet@33192
   109
  formats: (term option * int list) list,
blanchet@33192
   110
  max_potential: int,
blanchet@33192
   111
  max_genuine: int,
blanchet@33192
   112
  check_potential: bool,
blanchet@33192
   113
  check_genuine: bool,
blanchet@33192
   114
  batch_size: int,
blanchet@33192
   115
  expect: string}
blanchet@33192
   116
blanchet@33192
   117
type problem_extension = {
blanchet@33192
   118
  free_names: nut list,
blanchet@33192
   119
  sel_names: nut list,
blanchet@33192
   120
  nonsel_names: nut list,
blanchet@33192
   121
  rel_table: nut NameTable.table,
blanchet@33192
   122
  liberal: bool,
blanchet@33192
   123
  scope: scope,
blanchet@33192
   124
  core: Kodkod.formula,
blanchet@33192
   125
  defs: Kodkod.formula list}
blanchet@33192
   126
blanchet@33192
   127
type rich_problem = Kodkod.problem * problem_extension
blanchet@33192
   128
blanchet@33192
   129
(* Proof.context -> string -> term list -> Pretty.T list *)
blanchet@33192
   130
fun pretties_for_formulas _ _ [] = []
blanchet@33192
   131
  | pretties_for_formulas ctxt s ts =
blanchet@33192
   132
    [Pretty.str (s ^ plural_s_for_list ts ^ ":"),
blanchet@33192
   133
     Pretty.indent indent_size (Pretty.chunks
blanchet@33192
   134
         (map2 (fn j => fn t =>
blanchet@33192
   135
                   Pretty.block [t |> shorten_const_names_in_term
blanchet@33192
   136
                                   |> Syntax.pretty_term ctxt,
blanchet@33192
   137
                                 Pretty.str (if j = 1 then "." else ";")])
blanchet@33192
   138
               (length ts downto 1) ts))]
blanchet@33192
   139
blanchet@33192
   140
val max_liberal_delay_ms = 200
blanchet@33192
   141
val max_liberal_delay_percent = 2
blanchet@33192
   142
blanchet@33192
   143
(* Time.time option -> int *)
blanchet@33192
   144
fun liberal_delay_for_timeout NONE = max_liberal_delay_ms
blanchet@33192
   145
  | liberal_delay_for_timeout (SOME timeout) =
blanchet@33192
   146
    Int.max (0, Int.min (max_liberal_delay_ms,
blanchet@33192
   147
                         Time.toMilliseconds timeout
blanchet@33192
   148
                         * max_liberal_delay_percent div 100))
blanchet@33192
   149
blanchet@33192
   150
(* Time.time option -> bool *)
blanchet@33192
   151
fun passed_deadline NONE = false
blanchet@33192
   152
  | passed_deadline (SOME time) = Time.compare (Time.now (), time) <> LESS
blanchet@33192
   153
blanchet@33192
   154
(* ('a * bool option) list -> bool *)
blanchet@33192
   155
fun none_true asgns = forall (not_equal (SOME true) o snd) asgns
blanchet@33192
   156
blanchet@33192
   157
val weaselly_sorts =
blanchet@33192
   158
  [@{sort default}, @{sort zero}, @{sort one}, @{sort plus}, @{sort minus},
blanchet@33192
   159
   @{sort uminus}, @{sort times}, @{sort inverse}, @{sort abs}, @{sort sgn},
blanchet@33192
   160
   @{sort ord}, @{sort eq}, @{sort number}]
blanchet@33192
   161
(* theory -> typ -> bool *)
blanchet@33192
   162
fun is_tfree_with_weaselly_sort thy (TFree (_, S)) =
blanchet@33192
   163
    exists (curry (Sign.subsort thy) S) weaselly_sorts
blanchet@33192
   164
  | is_tfree_with_weaselly_sort _ _ = false
blanchet@33192
   165
(* theory term -> bool *)
blanchet@33192
   166
val has_weaselly_sorts =
blanchet@33192
   167
  exists_type o exists_subtype o is_tfree_with_weaselly_sort
blanchet@33192
   168
blanchet@33192
   169
(* Time.time -> Proof.state -> params -> bool -> term -> string * Proof.state *)
blanchet@33192
   170
fun pick_them_nits_in_term deadline state (params : params) auto orig_assm_ts
blanchet@33192
   171
                           orig_t =
blanchet@33192
   172
  let
blanchet@33192
   173
    val timer = Timer.startRealTimer ()
blanchet@33192
   174
    val thy = Proof.theory_of state
blanchet@33192
   175
    val ctxt = Proof.context_of state
blanchet@33192
   176
    val {cards_assigns, maxes_assigns, iters_assigns, bisim_depths, boxes,
blanchet@33192
   177
         monos, wfs, sat_solver, blocking, falsify, debug, verbose, overlord,
blanchet@33192
   178
         user_axioms, assms, coalesce_type_vars, destroy_constrs, specialize,
blanchet@33192
   179
         skolemize, star_linear_preds, uncurry, fast_descrs, peephole_optim,
blanchet@33192
   180
         tac_timeout, sym_break, sharing_depth, flatten_props, max_threads,
blanchet@33192
   181
         show_skolems, show_datatypes, show_consts, evals, formats,
blanchet@33192
   182
         max_potential, max_genuine, check_potential, check_genuine, batch_size,
blanchet@33192
   183
         ...} =
blanchet@33192
   184
      params
blanchet@33192
   185
    val state_ref = Unsynchronized.ref state
blanchet@33192
   186
    (* Pretty.T -> unit *)
blanchet@33192
   187
    val pprint =
blanchet@33192
   188
      if auto then
blanchet@33192
   189
        Unsynchronized.change state_ref o Proof.goal_message o K
blanchet@33192
   190
        o curry Pretty.blk 0 o cons (Pretty.str "") o single
blanchet@33192
   191
        o Pretty.mark Markup.hilite
blanchet@33192
   192
      else
blanchet@33192
   193
        priority o Pretty.string_of
blanchet@33192
   194
    (* (unit -> Pretty.T) -> unit *)
blanchet@33192
   195
    fun pprint_m f = () |> not auto ? pprint o f
blanchet@33192
   196
    fun pprint_v f = () |> verbose ? pprint o f
blanchet@33192
   197
    fun pprint_d f = () |> debug ? pprint o f
blanchet@33192
   198
    (* string -> unit *)
blanchet@33192
   199
    val print = pprint o curry Pretty.blk 0 o pstrs
blanchet@33192
   200
    (* (unit -> string) -> unit *)
blanchet@33192
   201
    fun print_m f = pprint_m (curry Pretty.blk 0 o pstrs o f)
blanchet@33192
   202
    fun print_v f = pprint_v (curry Pretty.blk 0 o pstrs o f)
blanchet@33192
   203
    fun print_d f = pprint_d (curry Pretty.blk 0 o pstrs o f)
blanchet@33192
   204
blanchet@33192
   205
    (* unit -> unit *)
blanchet@33192
   206
    fun check_deadline () =
blanchet@33192
   207
      if debug andalso passed_deadline deadline then raise TimeLimit.TimeOut
blanchet@33192
   208
      else ()
blanchet@33192
   209
    (* unit -> 'a *)
blanchet@33192
   210
    fun do_interrupted () =
blanchet@33192
   211
      if passed_deadline deadline then raise TimeLimit.TimeOut
blanchet@33192
   212
      else raise Interrupt
blanchet@33192
   213
blanchet@33192
   214
    val _ = print_m (K "Nitpicking...")
blanchet@33192
   215
    val neg_t = if falsify then Logic.mk_implies (orig_t, @{prop False})
blanchet@33192
   216
                else orig_t
blanchet@33192
   217
    val assms_t = if assms orelse auto then
blanchet@33192
   218
                    Logic.mk_conjunction_list (neg_t :: orig_assm_ts)
blanchet@33192
   219
                  else
blanchet@33192
   220
                    neg_t
blanchet@33192
   221
    val (assms_t, evals) =
blanchet@33192
   222
      assms_t :: evals
blanchet@33192
   223
      |> coalesce_type_vars ? coalesce_type_vars_in_terms
blanchet@33192
   224
      |> hd pairf tl
blanchet@33192
   225
    val original_max_potential = max_potential
blanchet@33192
   226
    val original_max_genuine = max_genuine
blanchet@33192
   227
(*
blanchet@33192
   228
    val _ = priority ("*** " ^ Syntax.string_of_term ctxt orig_t)
blanchet@33192
   229
    val _ = List.app (fn t => priority ("*** " ^ Syntax.string_of_term ctxt t))
blanchet@33192
   230
                     orig_assm_ts
blanchet@33192
   231
*)
blanchet@33192
   232
    val max_bisim_depth = fold Integer.max bisim_depths ~1
blanchet@33192
   233
    val case_names = case_const_names thy
blanchet@33192
   234
    val (defs, built_in_nondefs, user_nondefs) = all_axioms_of thy
blanchet@33192
   235
    val def_table = const_def_table ctxt defs
blanchet@33192
   236
    val nondef_table = const_nondef_table (built_in_nondefs @ user_nondefs)
blanchet@33192
   237
    val simp_table = Unsynchronized.ref (const_simp_table ctxt)
blanchet@33192
   238
    val psimp_table = const_psimp_table ctxt
blanchet@33192
   239
    val intro_table = inductive_intro_table ctxt def_table
blanchet@33192
   240
    val ground_thm_table = ground_theorem_table thy
blanchet@33192
   241
    val ersatz_table = ersatz_table thy
blanchet@33192
   242
    val (ext_ctxt as {skolems, special_funs, wf_cache, ...}) =
blanchet@33192
   243
      {thy = thy, ctxt = ctxt, max_bisim_depth = max_bisim_depth, boxes = boxes,
blanchet@33192
   244
       user_axioms = user_axioms, debug = debug, wfs = wfs,
blanchet@33192
   245
       destroy_constrs = destroy_constrs, specialize = specialize,
blanchet@33192
   246
       skolemize = skolemize, star_linear_preds = star_linear_preds,
blanchet@33192
   247
       uncurry = uncurry, fast_descrs = fast_descrs, tac_timeout = tac_timeout,
blanchet@33192
   248
       evals = evals, case_names = case_names, def_table = def_table,
blanchet@33192
   249
       nondef_table = nondef_table, user_nondefs = user_nondefs,
blanchet@33192
   250
       simp_table = simp_table, psimp_table = psimp_table,
blanchet@33192
   251
       intro_table = intro_table, ground_thm_table = ground_thm_table,
blanchet@33192
   252
       ersatz_table = ersatz_table, skolems = Unsynchronized.ref [],
blanchet@33192
   253
       special_funs = Unsynchronized.ref [],
blanchet@33192
   254
       unrolled_preds = Unsynchronized.ref [], wf_cache = Unsynchronized.ref []}
blanchet@33192
   255
    val frees = Term.add_frees assms_t []
blanchet@33192
   256
    val _ = null (Term.add_tvars assms_t [])
blanchet@33192
   257
            orelse raise NOT_SUPPORTED "schematic type variables"
blanchet@33192
   258
    val (((def_ts, nondef_ts), (got_all_mono_user_axioms, no_poly_user_axioms)),
blanchet@33192
   259
         core_t) = preprocess_term ext_ctxt assms_t
blanchet@33192
   260
    val got_all_user_axioms =
blanchet@33192
   261
      got_all_mono_user_axioms andalso no_poly_user_axioms
blanchet@33192
   262
blanchet@33192
   263
    (* styp * (bool * bool) -> unit *)
blanchet@33192
   264
    fun print_wf (x, (gfp, wf)) =
blanchet@33192
   265
      pprint (Pretty.blk (0,
blanchet@33192
   266
          pstrs ("The " ^ (if gfp then "co" else "") ^ "inductive predicate \"")
blanchet@33192
   267
          @ Syntax.pretty_term ctxt (Const x) ::
blanchet@33192
   268
          pstrs (if wf then
blanchet@33192
   269
                   "\" was proved well-founded. Nitpick can compute it \
blanchet@33192
   270
                   \efficiently."
blanchet@33192
   271
                 else
blanchet@33192
   272
                   "\" could not be proved well-founded. Nitpick might need to \
blanchet@33192
   273
                   \unroll it.")))
blanchet@33192
   274
    val _ = if verbose then List.app print_wf (!wf_cache) else ()
blanchet@33192
   275
    val _ =
blanchet@33192
   276
      pprint_d (fn () =>
blanchet@33192
   277
          Pretty.chunks
blanchet@33192
   278
              (pretties_for_formulas ctxt "Preprocessed formula" [core_t] @
blanchet@33192
   279
               pretties_for_formulas ctxt "Relevant definitional axiom" def_ts @
blanchet@33192
   280
               pretties_for_formulas ctxt "Relevant nondefinitional axiom"
blanchet@33192
   281
                                     nondef_ts))
blanchet@33192
   282
    val _ = List.app (ignore o Term.type_of) (core_t :: def_ts @ nondef_ts)
blanchet@33192
   283
            handle TYPE (_, Ts, ts) =>
blanchet@33192
   284
                   raise TYPE ("Nitpick.pick_them_nits_in_term", Ts, ts)
blanchet@33192
   285
blanchet@33192
   286
    val unique_scope = forall (equal 1 o length o snd) cards_assigns
blanchet@33192
   287
    (* typ -> bool *)
blanchet@33192
   288
    fun is_free_type_monotonic T =
blanchet@33192
   289
      unique_scope orelse
blanchet@33192
   290
      case triple_lookup (type_match thy) monos T of
blanchet@33192
   291
        SOME (SOME b) => b
blanchet@33192
   292
      | _ => formulas_monotonic ext_ctxt T def_ts nondef_ts core_t
blanchet@33192
   293
    fun is_datatype_monotonic T =
blanchet@33192
   294
      unique_scope orelse
blanchet@33192
   295
      case triple_lookup (type_match thy) monos T of
blanchet@33192
   296
        SOME (SOME b) => b
blanchet@33192
   297
      | _ =>
blanchet@33192
   298
        not (is_pure_typedef thy T) orelse is_univ_typedef thy T
blanchet@33192
   299
        orelse is_number_type thy T
blanchet@33192
   300
        orelse formulas_monotonic ext_ctxt T def_ts nondef_ts core_t
blanchet@33192
   301
    val Ts = ground_types_in_terms ext_ctxt (core_t :: def_ts @ nondef_ts)
blanchet@33192
   302
             |> sort TermOrd.typ_ord
blanchet@33192
   303
    val (all_dataTs, all_free_Ts) =
blanchet@33192
   304
      List.partition (is_integer_type orf is_datatype thy) Ts
blanchet@33192
   305
    val (mono_dataTs, nonmono_dataTs) =
blanchet@33192
   306
      List.partition is_datatype_monotonic all_dataTs
blanchet@33192
   307
    val (mono_free_Ts, nonmono_free_Ts) =
blanchet@33192
   308
      List.partition is_free_type_monotonic all_free_Ts
blanchet@33192
   309
blanchet@33192
   310
    val _ =
blanchet@33192
   311
      if not unique_scope andalso not (null mono_free_Ts) then
blanchet@33192
   312
        print_v (fn () =>
blanchet@33192
   313
                    let
blanchet@33192
   314
                      val ss = map (quote o string_for_type ctxt) mono_free_Ts
blanchet@33192
   315
                    in
blanchet@33192
   316
                      "The type" ^ plural_s_for_list ss ^ " " ^
blanchet@33192
   317
                      space_implode " " (serial_commas "and" ss) ^ " " ^
blanchet@33192
   318
                      (if none_true monos then
blanchet@33192
   319
                         "passed the monotonicity test"
blanchet@33192
   320
                       else
blanchet@33192
   321
                         (if length ss = 1 then "is" else "are") ^
blanchet@33192
   322
                         " considered monotonic") ^
blanchet@33192
   323
                      ". Nitpick might be able to skip some scopes."
blanchet@33192
   324
                    end)
blanchet@33192
   325
      else
blanchet@33192
   326
        ()
blanchet@33192
   327
    val mono_Ts = mono_dataTs @ mono_free_Ts
blanchet@33192
   328
    val nonmono_Ts = nonmono_dataTs @ nonmono_free_Ts
blanchet@33192
   329
blanchet@33192
   330
(*
blanchet@33192
   331
    val _ = priority "Monotonic datatypes:"
blanchet@33192
   332
    val _ = List.app (priority o string_for_type ctxt) mono_dataTs
blanchet@33192
   333
    val _ = priority "Nonmonotonic datatypes:"
blanchet@33192
   334
    val _ = List.app (priority o string_for_type ctxt) nonmono_dataTs
blanchet@33192
   335
    val _ = priority "Monotonic free types:"
blanchet@33192
   336
    val _ = List.app (priority o string_for_type ctxt) mono_free_Ts
blanchet@33192
   337
    val _ = priority "Nonmonotonic free types:"
blanchet@33192
   338
    val _ = List.app (priority o string_for_type ctxt) nonmono_free_Ts
blanchet@33192
   339
*)
blanchet@33192
   340
blanchet@33192
   341
    val core_u = nut_from_term thy fast_descrs (!special_funs) Eq core_t
blanchet@33192
   342
    val def_us = map (nut_from_term thy fast_descrs (!special_funs) DefEq)
blanchet@33192
   343
                     def_ts
blanchet@33192
   344
    val nondef_us = map (nut_from_term thy fast_descrs (!special_funs) Eq)
blanchet@33192
   345
                        nondef_ts
blanchet@33192
   346
    val (free_names, const_names) =
blanchet@33192
   347
      fold add_free_and_const_names (core_u :: def_us @ nondef_us) ([], [])
blanchet@33192
   348
    val nonsel_names = filter_out (is_sel o nickname_of) const_names
blanchet@33192
   349
    val would_be_genuine = got_all_user_axioms andalso none_true wfs
blanchet@33192
   350
(*
blanchet@33192
   351
    val _ = List.app (priority o string_for_nut ctxt)
blanchet@33192
   352
                     (core_u :: def_us @ nondef_us)
blanchet@33192
   353
*)
blanchet@33192
   354
    val need_incremental = Int.max (max_potential, max_genuine) >= 2
blanchet@33192
   355
    val effective_sat_solver =
blanchet@33192
   356
      if sat_solver <> "smart" then
blanchet@33192
   357
        if need_incremental andalso
blanchet@33192
   358
           not (sat_solver mem KodkodSAT.configured_sat_solvers true) then
blanchet@33192
   359
          (print_m (K ("An incremental SAT solver is required: \"SAT4J\" will \
blanchet@33192
   360
                       \be used instead of " ^ quote sat_solver ^ "."));
blanchet@33192
   361
           "SAT4J")
blanchet@33192
   362
        else
blanchet@33192
   363
          sat_solver
blanchet@33192
   364
      else
blanchet@33192
   365
        KodkodSAT.smart_sat_solver_name need_incremental
blanchet@33192
   366
    val _ =
blanchet@33192
   367
      if sat_solver = "smart" then
blanchet@33192
   368
        print_v (fn () => "Using SAT solver " ^ quote effective_sat_solver ^
blanchet@33192
   369
                          ". The following" ^
blanchet@33192
   370
                          (if need_incremental then " incremental " else " ") ^
blanchet@33192
   371
                          "solvers are configured: " ^
blanchet@33192
   372
                          commas (map quote (KodkodSAT.configured_sat_solvers
blanchet@33192
   373
                                                       need_incremental)) ^ ".")
blanchet@33192
   374
      else
blanchet@33192
   375
        ()
blanchet@33192
   376
blanchet@33192
   377
    val too_big_scopes = Unsynchronized.ref []
blanchet@33192
   378
blanchet@33192
   379
    (* bool -> scope -> rich_problem option *)
blanchet@33192
   380
    fun problem_for_scope liberal
blanchet@33192
   381
            (scope as {card_assigns, bisim_depth, datatypes, ofs, ...}) =
blanchet@33192
   382
      let
blanchet@33192
   383
        val _ = not (exists (fn other => scope_less_eq other scope)
blanchet@33192
   384
                            (!too_big_scopes))
blanchet@33192
   385
                orelse raise LIMIT ("Nitpick.pick_them_nits_in_term.\
blanchet@33192
   386
                                    \problem_for_scope", "too big scope")
blanchet@33192
   387
(*
blanchet@33192
   388
        val _ = priority "Offsets:"
blanchet@33192
   389
        val _ = List.app (fn (T, j0) =>
blanchet@33192
   390
                             priority (string_for_type ctxt T ^ " = " ^
blanchet@33192
   391
                                       string_of_int j0))
blanchet@33192
   392
                         (Typtab.dest ofs)
blanchet@33192
   393
*)
blanchet@33192
   394
        val all_precise = forall (is_precise_type datatypes) Ts
blanchet@33192
   395
        (* nut list -> rep NameTable.table -> nut list * rep NameTable.table *)
blanchet@33192
   396
        val repify_consts = choose_reps_for_consts scope all_precise
blanchet@33192
   397
        val main_j0 = offset_of_type ofs bool_T
blanchet@33192
   398
        val (nat_card, nat_j0) = spec_of_type scope nat_T
blanchet@33192
   399
        val (int_card, int_j0) = spec_of_type scope int_T
blanchet@33192
   400
        val _ = forall (equal main_j0) [nat_j0, int_j0]
blanchet@33192
   401
                orelse raise BAD ("Nitpick.pick_them_nits_in_term.\
blanchet@33192
   402
                                  \problem_for_scope", "bad offsets")
blanchet@33192
   403
        val kk = kodkod_constrs peephole_optim nat_card int_card main_j0
blanchet@33192
   404
        val (free_names, rep_table) =
blanchet@33192
   405
          choose_reps_for_free_vars scope free_names NameTable.empty
blanchet@33192
   406
        val (sel_names, rep_table) = choose_reps_for_all_sels scope rep_table
blanchet@33192
   407
        val (nonsel_names, rep_table) = repify_consts nonsel_names rep_table
blanchet@33192
   408
        val min_highest_arity =
blanchet@33192
   409
          NameTable.fold (curry Int.max o arity_of_rep o snd) rep_table 1
blanchet@33192
   410
        val min_univ_card =
blanchet@33192
   411
          NameTable.fold (curry Int.max o min_univ_card_of_rep o snd) rep_table
blanchet@33192
   412
                         (univ_card nat_card int_card main_j0 [] Kodkod.True)
blanchet@33192
   413
        val _ = check_arity min_univ_card min_highest_arity
blanchet@33192
   414
blanchet@33192
   415
        val core_u = choose_reps_in_nut scope liberal rep_table false core_u
blanchet@33192
   416
        val def_us = map (choose_reps_in_nut scope liberal rep_table true)
blanchet@33192
   417
                         def_us
blanchet@33192
   418
        val nondef_us = map (choose_reps_in_nut scope liberal rep_table false)
blanchet@33192
   419
                            nondef_us
blanchet@33192
   420
(*
blanchet@33192
   421
        val _ = List.app (priority o string_for_nut ctxt)
blanchet@33192
   422
                         (free_names @ sel_names @ nonsel_names @
blanchet@33192
   423
                          core_u :: def_us @ nondef_us)
blanchet@33192
   424
*)
blanchet@33192
   425
        val (free_rels, pool, rel_table) =
blanchet@33192
   426
          rename_free_vars free_names initial_pool NameTable.empty
blanchet@33192
   427
        val (sel_rels, pool, rel_table) =
blanchet@33192
   428
          rename_free_vars sel_names pool rel_table
blanchet@33192
   429
        val (other_rels, pool, rel_table) =
blanchet@33192
   430
          rename_free_vars nonsel_names pool rel_table
blanchet@33192
   431
        val core_u = rename_vars_in_nut pool rel_table core_u
blanchet@33192
   432
        val def_us = map (rename_vars_in_nut pool rel_table) def_us
blanchet@33192
   433
        val nondef_us = map (rename_vars_in_nut pool rel_table) nondef_us
blanchet@33192
   434
        (* nut -> Kodkod.formula *)
blanchet@33192
   435
        val to_f = kodkod_formula_from_nut ofs liberal kk
blanchet@33192
   436
        val core_f = to_f core_u
blanchet@33192
   437
        val def_fs = map to_f def_us
blanchet@33192
   438
        val nondef_fs = map to_f nondef_us
blanchet@33192
   439
        val formula = fold (fold s_and) [def_fs, nondef_fs] core_f
blanchet@33192
   440
        val comment = (if liberal then "liberal" else "conservative") ^ "\n" ^
blanchet@33192
   441
                      PrintMode.setmp [] multiline_string_for_scope scope
blanchet@33192
   442
        val kodkod_sat_solver = KodkodSAT.sat_solver_spec effective_sat_solver
blanchet@33192
   443
                                |> snd
blanchet@33192
   444
        val delay = if liberal then
blanchet@33192
   445
                      Option.map (fn time => Time.- (time, Time.now ()))
blanchet@33192
   446
                                 deadline
blanchet@33192
   447
                      |> liberal_delay_for_timeout
blanchet@33192
   448
                    else
blanchet@33192
   449
                      0
blanchet@33192
   450
        val settings = [("solver", commas (map quote kodkod_sat_solver)),
blanchet@33192
   451
                        ("skolem_depth", "-1"),
blanchet@33192
   452
                        ("bit_width", "16"),
blanchet@33192
   453
                        ("symmetry_breaking", signed_string_of_int sym_break),
blanchet@33192
   454
                        ("sharing", signed_string_of_int sharing_depth),
blanchet@33192
   455
                        ("flatten", Bool.toString flatten_props),
blanchet@33192
   456
                        ("delay", signed_string_of_int delay)]
blanchet@33192
   457
        val plain_rels = free_rels @ other_rels
blanchet@33192
   458
        val plain_bounds = map (bound_for_plain_rel ctxt debug) plain_rels
blanchet@33192
   459
        val plain_axioms = map (declarative_axiom_for_plain_rel kk) plain_rels
blanchet@33192
   460
        val sel_bounds = map (bound_for_sel_rel ctxt debug datatypes) sel_rels
blanchet@33192
   461
        val dtype_axioms = declarative_axioms_for_datatypes ext_ctxt ofs kk
blanchet@33192
   462
                                                            rel_table datatypes
blanchet@33192
   463
        val declarative_axioms = plain_axioms @ dtype_axioms
blanchet@33192
   464
        val univ_card = univ_card nat_card int_card main_j0
blanchet@33192
   465
                                  (plain_bounds @ sel_bounds) formula
blanchet@33192
   466
        val built_in_bounds = bounds_for_built_in_rels_in_formula debug
blanchet@33192
   467
                                  univ_card nat_card int_card main_j0 formula
blanchet@33192
   468
        val bounds = built_in_bounds @ plain_bounds @ sel_bounds
blanchet@33192
   469
                     |> not debug ? merge_bounds
blanchet@33192
   470
        val highest_arity =
blanchet@33192
   471
          fold Integer.max (map (fst o fst) (maps fst bounds)) 0
blanchet@33192
   472
        val formula = fold_rev s_and declarative_axioms formula
blanchet@33192
   473
        val _ = if formula = Kodkod.False then ()
blanchet@33192
   474
                else check_arity univ_card highest_arity
blanchet@33192
   475
      in
blanchet@33192
   476
        SOME ({comment = comment, settings = settings, univ_card = univ_card,
blanchet@33192
   477
               tuple_assigns = [], bounds = bounds,
blanchet@33192
   478
               int_bounds = sequential_int_bounds univ_card,
blanchet@33192
   479
               expr_assigns = [], formula = formula},
blanchet@33192
   480
              {free_names = free_names, sel_names = sel_names,
blanchet@33192
   481
               nonsel_names = nonsel_names, rel_table = rel_table,
blanchet@33192
   482
               liberal = liberal, scope = scope, core = core_f,
blanchet@33192
   483
               defs = nondef_fs @ def_fs @ declarative_axioms})
blanchet@33192
   484
      end
blanchet@33192
   485
      handle LIMIT (loc, msg) =>
blanchet@33192
   486
             if loc = "NitpickKodkod.check_arity"
blanchet@33192
   487
                andalso not (Typtab.is_empty ofs) then
blanchet@33192
   488
               problem_for_scope liberal
blanchet@33192
   489
                   {ext_ctxt = ext_ctxt, card_assigns = card_assigns,
blanchet@33192
   490
                    bisim_depth = bisim_depth, datatypes = datatypes,
blanchet@33192
   491
                    ofs = Typtab.empty}
blanchet@33192
   492
             else if loc = "Nitpick.pick_them_nits_in_term.\
blanchet@33192
   493
                           \problem_for_scope" then
blanchet@33192
   494
               NONE
blanchet@33192
   495
             else
blanchet@33192
   496
               (Unsynchronized.change too_big_scopes (cons scope);
blanchet@33192
   497
                print_v (fn () => ("Limit reached: " ^ msg ^
blanchet@33192
   498
                                   ". Dropping " ^ (if liberal then "potential"
blanchet@33192
   499
                                                    else "genuine") ^
blanchet@33192
   500
                                   " component of scope."));
blanchet@33192
   501
                NONE)
blanchet@33192
   502
blanchet@33192
   503
    (* int -> (''a * int list list) list -> ''a -> Kodkod.tuple_set *)
blanchet@33192
   504
    fun tuple_set_for_rel univ_card =
blanchet@33192
   505
      Kodkod.TupleSet o map (kk_tuple debug univ_card) o the
blanchet@33192
   506
      oo AList.lookup (op =)
blanchet@33192
   507
blanchet@33192
   508
    val word_model = if falsify then "counterexample" else "model"
blanchet@33192
   509
blanchet@33192
   510
    val scopes = Unsynchronized.ref []
blanchet@33192
   511
    val generated_scopes = Unsynchronized.ref []
blanchet@33192
   512
    val generated_problems = Unsynchronized.ref []
blanchet@33192
   513
    val checked_problems = Unsynchronized.ref (SOME [])
blanchet@33192
   514
    val met_potential = Unsynchronized.ref 0
blanchet@33192
   515
blanchet@33192
   516
    (* rich_problem list -> int list -> unit *)
blanchet@33192
   517
    fun update_checked_problems problems =
blanchet@33192
   518
      List.app (Unsynchronized.change checked_problems o Option.map o cons
blanchet@33192
   519
                o nth problems)
blanchet@33192
   520
blanchet@33192
   521
    (* bool -> Kodkod.raw_bound list -> problem_extension -> bool option *)
blanchet@33192
   522
    fun print_and_check_model genuine bounds
blanchet@33192
   523
            ({free_names, sel_names, nonsel_names, rel_table, scope, ...}
blanchet@33192
   524
             : problem_extension) =
blanchet@33192
   525
      let
blanchet@33192
   526
        val (reconstructed_model, codatatypes_ok) =
blanchet@33192
   527
          reconstruct_hol_model {show_skolems = show_skolems,
blanchet@33192
   528
                                 show_datatypes = show_datatypes,
blanchet@33192
   529
                                 show_consts = show_consts}
blanchet@33192
   530
              scope formats frees free_names sel_names nonsel_names rel_table
blanchet@33192
   531
              bounds
blanchet@33192
   532
        val would_be_genuine = would_be_genuine andalso codatatypes_ok
blanchet@33192
   533
      in
blanchet@33192
   534
        pprint (Pretty.chunks
blanchet@33192
   535
            [Pretty.blk (0,
blanchet@33192
   536
                 (pstrs ("Nitpick found a" ^
blanchet@33192
   537
                         (if not genuine then " potential "
blanchet@33192
   538
                          else if would_be_genuine then " "
blanchet@33192
   539
                          else " likely genuine ") ^ word_model) @
blanchet@33192
   540
                  (case pretties_for_scope scope verbose of
blanchet@33192
   541
                     [] => []
blanchet@33192
   542
                   | pretties => pstrs " for " @ pretties) @
blanchet@33192
   543
                  [Pretty.str ":\n"])),
blanchet@33192
   544
             Pretty.indent indent_size reconstructed_model]);
blanchet@33192
   545
        if genuine then
blanchet@33192
   546
          (if check_genuine then
blanchet@33192
   547
             (case prove_hol_model scope tac_timeout free_names sel_names
blanchet@33192
   548
                                   rel_table bounds assms_t of
blanchet@33192
   549
                SOME true => print ("Confirmation by \"auto\": The above " ^
blanchet@33192
   550
                                    word_model ^ " is really genuine.")
blanchet@33192
   551
              | SOME false =>
blanchet@33192
   552
                if would_be_genuine then
blanchet@33192
   553
                  error ("A supposedly genuine " ^ word_model ^ " was shown to\
blanchet@33192
   554
                         \be spurious by \"auto\".\nThis should never happen.\n\
blanchet@33192
   555
                         \Please send a bug report to blanchet\
blanchet@33192
   556
                         \te@in.tum.de.")
blanchet@33192
   557
                else
blanchet@33192
   558
                  print ("Refutation by \"auto\": The above " ^ word_model ^
blanchet@33192
   559
                         " is spurious.")
blanchet@33192
   560
              | NONE => print "No confirmation by \"auto\".")
blanchet@33192
   561
           else
blanchet@33192
   562
             ();
blanchet@33192
   563
           if has_weaselly_sorts thy orig_t then
blanchet@33192
   564
             print "Hint: Maybe you forgot a type constraint?"
blanchet@33192
   565
           else
blanchet@33192
   566
             ();
blanchet@33192
   567
           if not would_be_genuine then
blanchet@33192
   568
             if no_poly_user_axioms then
blanchet@33192
   569
               let
blanchet@33192
   570
                 val options =
blanchet@33192
   571
                   [] |> not got_all_mono_user_axioms
blanchet@33192
   572
                         ? cons ("user_axioms", "\"true\"")
blanchet@33192
   573
                      |> not (none_true wfs)
blanchet@33192
   574
                         ? cons ("wf", "\"smart\" or \"false\"")
blanchet@33192
   575
                      |> not codatatypes_ok
blanchet@33192
   576
                         ? cons ("bisim_depth", "a nonnegative value")
blanchet@33192
   577
                 val ss =
blanchet@33192
   578
                   map (fn (name, value) => quote name ^ " set to " ^ value)
blanchet@33192
   579
                       options
blanchet@33192
   580
               in
blanchet@33192
   581
                 print ("Try again with " ^
blanchet@33192
   582
                        space_implode " " (serial_commas "and" ss) ^
blanchet@33192
   583
                        " to confirm that the " ^ word_model ^ " is genuine.")
blanchet@33192
   584
               end
blanchet@33192
   585
             else
blanchet@33192
   586
               print ("Nitpick is unable to guarantee the authenticity of \
blanchet@33192
   587
                      \the " ^ word_model ^ " in the presence of polymorphic \
blanchet@33192
   588
                      \axioms.")
blanchet@33192
   589
           else
blanchet@33192
   590
             ();
blanchet@33192
   591
           NONE)
blanchet@33192
   592
        else
blanchet@33192
   593
          if not genuine then
blanchet@33192
   594
            (Unsynchronized.inc met_potential;
blanchet@33192
   595
             if check_potential then
blanchet@33192
   596
               let
blanchet@33192
   597
                 val status = prove_hol_model scope tac_timeout free_names
blanchet@33192
   598
                                              sel_names rel_table bounds assms_t
blanchet@33192
   599
               in
blanchet@33192
   600
                 (case status of
blanchet@33192
   601
                    SOME true => print ("Confirmation by \"auto\": The above " ^
blanchet@33192
   602
                                        word_model ^ " is genuine.")
blanchet@33192
   603
                  | SOME false => print ("Refutation by \"auto\": The above " ^
blanchet@33192
   604
                                         word_model ^ " is spurious.")
blanchet@33192
   605
                  | NONE => print "No confirmation by \"auto\".");
blanchet@33192
   606
                 status
blanchet@33192
   607
               end
blanchet@33192
   608
             else
blanchet@33192
   609
               NONE)
blanchet@33192
   610
          else
blanchet@33192
   611
            NONE
blanchet@33192
   612
      end
blanchet@33192
   613
    (* int -> int -> int -> bool -> rich_problem list -> int * int * int *)
blanchet@33192
   614
    fun solve_any_problem max_potential max_genuine donno first_time problems =
blanchet@33192
   615
      let
blanchet@33192
   616
        val max_potential = Int.max (0, max_potential)
blanchet@33192
   617
        val max_genuine = Int.max (0, max_genuine)
blanchet@33192
   618
        (* bool -> int * Kodkod.raw_bound list -> bool option *)
blanchet@33192
   619
        fun print_and_check genuine (j, bounds) =
blanchet@33192
   620
          print_and_check_model genuine bounds (snd (nth problems j))
blanchet@33192
   621
        val max_solutions = max_potential + max_genuine
blanchet@33192
   622
                            |> not need_incremental ? curry Int.min 1
blanchet@33192
   623
      in
blanchet@33192
   624
        if max_solutions <= 0 then
blanchet@33192
   625
          (0, 0, donno)
blanchet@33192
   626
        else
blanchet@33192
   627
          case Kodkod.solve_any_problem overlord deadline max_threads
blanchet@33192
   628
                                        max_solutions (map fst problems) of
blanchet@33192
   629
            Kodkod.Normal ([], unsat_js) =>
blanchet@33192
   630
            (update_checked_problems problems unsat_js;
blanchet@33192
   631
             (max_potential, max_genuine, donno))
blanchet@33192
   632
          | Kodkod.Normal (sat_ps, unsat_js) =>
blanchet@33192
   633
            let
blanchet@33192
   634
              val (lib_ps, con_ps) =
blanchet@33192
   635
                List.partition (#liberal o snd o nth problems o fst) sat_ps
blanchet@33192
   636
            in
blanchet@33192
   637
              update_checked_problems problems (unsat_js @ map fst lib_ps);
blanchet@33192
   638
              if null con_ps then
blanchet@33192
   639
                let
blanchet@33192
   640
                  val num_genuine = Library.take (max_potential, lib_ps)
blanchet@33192
   641
                                    |> map (print_and_check false)
blanchet@33192
   642
                                    |> filter (equal (SOME true)) |> length
blanchet@33192
   643
                  val max_genuine = max_genuine - num_genuine
blanchet@33192
   644
                  val max_potential = max_potential
blanchet@33192
   645
                                      - (length lib_ps - num_genuine)
blanchet@33192
   646
                in
blanchet@33192
   647
                  if max_genuine <= 0 then
blanchet@33192
   648
                    (0, 0, donno)
blanchet@33192
   649
                  else
blanchet@33192
   650
                    let
blanchet@33192
   651
                      (* "co_js" is the list of conservative problems whose
blanchet@33192
   652
                         liberal pendants couldn't be satisfied and hence that
blanchet@33192
   653
                         most probably can't be satisfied themselves. *)
blanchet@33192
   654
                      val co_js =
blanchet@33192
   655
                        map (fn j => j - 1) unsat_js
blanchet@33192
   656
                        |> filter (fn j =>
blanchet@33192
   657
                                      j >= 0 andalso
blanchet@33192
   658
                                      scopes_equivalent
blanchet@33192
   659
                                          (#scope (snd (nth problems j)))
blanchet@33192
   660
                                          (#scope (snd (nth problems (j + 1)))))
blanchet@33192
   661
                      val bye_js = sort_distinct int_ord (map fst sat_ps @
blanchet@33192
   662
                                                          unsat_js @ co_js)
blanchet@33192
   663
                      val problems =
blanchet@33192
   664
                        problems |> filter_out_indices bye_js
blanchet@33192
   665
                                 |> max_potential <= 0
blanchet@33192
   666
                                    ? filter_out (#liberal o snd)
blanchet@33192
   667
                    in
blanchet@33192
   668
                      solve_any_problem max_potential max_genuine donno false
blanchet@33192
   669
                                        problems
blanchet@33192
   670
                    end
blanchet@33192
   671
                end
blanchet@33192
   672
              else
blanchet@33192
   673
                let
blanchet@33192
   674
                  val _ = Library.take (max_genuine, con_ps)
blanchet@33192
   675
                          |> List.app (ignore o print_and_check true)
blanchet@33192
   676
                  val max_genuine = max_genuine - length con_ps
blanchet@33192
   677
                in
blanchet@33192
   678
                  if max_genuine <= 0 orelse not first_time then
blanchet@33192
   679
                    (0, max_genuine, donno)
blanchet@33192
   680
                  else
blanchet@33192
   681
                    let
blanchet@33192
   682
                      val bye_js = sort_distinct int_ord
blanchet@33192
   683
                                                 (map fst sat_ps @ unsat_js)
blanchet@33192
   684
                      val problems =
blanchet@33192
   685
                        problems |> filter_out_indices bye_js
blanchet@33192
   686
                                 |> filter_out (#liberal o snd)
blanchet@33192
   687
                    in solve_any_problem 0 max_genuine donno false problems end
blanchet@33192
   688
                end
blanchet@33192
   689
            end
blanchet@33192
   690
          | Kodkod.TimedOut unsat_js =>
blanchet@33192
   691
            (update_checked_problems problems unsat_js; raise TimeLimit.TimeOut)
blanchet@33192
   692
          | Kodkod.Interrupted NONE =>
blanchet@33192
   693
            (checked_problems := NONE; do_interrupted ())
blanchet@33192
   694
          | Kodkod.Interrupted (SOME unsat_js) =>
blanchet@33192
   695
            (update_checked_problems problems unsat_js; do_interrupted ())
blanchet@33192
   696
          | Kodkod.Error (s, unsat_js) =>
blanchet@33192
   697
            (update_checked_problems problems unsat_js;
blanchet@33192
   698
             print_v (K ("Kodkod error: " ^ s ^ "."));
blanchet@33192
   699
             (max_potential, max_genuine, donno + 1))
blanchet@33192
   700
      end
blanchet@33192
   701
blanchet@33192
   702
    (* int -> int -> scope list -> int * int * int -> int * int * int *)
blanchet@33192
   703
    fun run_batch j n scopes (max_potential, max_genuine, donno) =
blanchet@33192
   704
      let
blanchet@33192
   705
        val _ =
blanchet@33192
   706
          if null scopes then
blanchet@33192
   707
            print_m (K "The scope specification is inconsistent.")
blanchet@33192
   708
          else if verbose then
blanchet@33192
   709
            pprint (Pretty.chunks
blanchet@33192
   710
                [Pretty.blk (0,
blanchet@33192
   711
                     pstrs ((if n > 1 then
blanchet@33192
   712
                               "Batch " ^ string_of_int (j + 1) ^ " of " ^
blanchet@33192
   713
                               signed_string_of_int n ^ ": "
blanchet@33192
   714
                             else
blanchet@33192
   715
                               "") ^
blanchet@33192
   716
                            "Trying " ^ string_of_int (length scopes) ^
blanchet@33192
   717
                            " scope" ^ plural_s_for_list scopes ^ ":")),
blanchet@33192
   718
                 Pretty.indent indent_size
blanchet@33192
   719
                     (Pretty.chunks (map2
blanchet@33192
   720
                          (fn j => fn scope =>
blanchet@33192
   721
                              Pretty.block (
blanchet@33192
   722
                                  (case pretties_for_scope scope true of
blanchet@33192
   723
                                     [] => [Pretty.str "Empty"]
blanchet@33192
   724
                                   | pretties => pretties) @
blanchet@33192
   725
                                  [Pretty.str (if j = 1 then "." else ";")]))
blanchet@33192
   726
                          (length scopes downto 1) scopes))])
blanchet@33192
   727
          else
blanchet@33192
   728
            ()
blanchet@33192
   729
        (* scope * bool -> rich_problem list * bool
blanchet@33192
   730
           -> rich_problem list * bool *)
blanchet@33192
   731
        fun add_problem_for_scope (scope as {datatypes, ...}, liberal)
blanchet@33192
   732
                                  (problems, donno) =
blanchet@33192
   733
          (check_deadline ();
blanchet@33192
   734
           case problem_for_scope liberal scope of
blanchet@33192
   735
             SOME problem =>
blanchet@33192
   736
             (problems
blanchet@33192
   737
              |> (null problems orelse
blanchet@33192
   738
                  not (Kodkod.problems_equivalent (fst problem)
blanchet@33192
   739
                                                  (fst (hd problems))))
blanchet@33192
   740
                  ? cons problem, donno)
blanchet@33192
   741
           | NONE => (problems, donno + 1))
blanchet@33192
   742
        val (problems, donno) =
blanchet@33192
   743
          fold add_problem_for_scope
blanchet@33192
   744
               (map_product pair scopes
blanchet@33192
   745
                    ((if max_genuine > 0 then [false] else []) @
blanchet@33192
   746
                     (if max_potential > 0 then [true] else [])))
blanchet@33192
   747
               ([], donno)
blanchet@33192
   748
        val _ = Unsynchronized.change generated_problems (append problems)
blanchet@33192
   749
        val _ = Unsynchronized.change generated_scopes (append scopes)
blanchet@33192
   750
      in
blanchet@33192
   751
        solve_any_problem max_potential max_genuine donno true (rev problems)
blanchet@33192
   752
      end
blanchet@33192
   753
blanchet@33192
   754
    (* rich_problem list -> scope -> int *)
blanchet@33192
   755
    fun scope_count (problems : rich_problem list) scope =
blanchet@33192
   756
      length (filter (scopes_equivalent scope o #scope o snd) problems)
blanchet@33192
   757
    (* string -> string *)
blanchet@33192
   758
    fun excipit did_so_and_so =
blanchet@33192
   759
      let
blanchet@33192
   760
        (* rich_problem list -> rich_problem list *)
blanchet@33192
   761
        val do_filter =
blanchet@33192
   762
          if !met_potential = max_potential then filter_out (#liberal o snd)
blanchet@33192
   763
          else I
blanchet@33192
   764
        val total = length (!scopes)
blanchet@33192
   765
        val unsat =
blanchet@33192
   766
          fold (fn scope =>
blanchet@33192
   767
                   case scope_count (do_filter (!generated_problems)) scope of
blanchet@33192
   768
                     0 => I
blanchet@33192
   769
                   | n =>
blanchet@33192
   770
                     if scope_count (do_filter (these (!checked_problems)))
blanchet@33192
   771
                                    scope = n then
blanchet@33192
   772
                       Integer.add 1
blanchet@33192
   773
                     else
blanchet@33192
   774
                       I) (!generated_scopes) 0
blanchet@33192
   775
      in
blanchet@33192
   776
        "Nitpick " ^ did_so_and_so ^
blanchet@33192
   777
        (if is_some (!checked_problems) andalso total > 0 then
blanchet@33192
   778
           " after checking " ^
blanchet@33192
   779
           string_of_int (Int.min (total - 1, unsat)) ^ " of " ^
blanchet@33192
   780
           string_of_int total ^ " scope" ^ plural_s total
blanchet@33192
   781
         else
blanchet@33192
   782
           "") ^ "."
blanchet@33192
   783
      end
blanchet@33192
   784
blanchet@33192
   785
    (* int -> int -> scope list -> int * int * int -> Kodkod.outcome *)
blanchet@33192
   786
    fun run_batches _ _ [] (max_potential, max_genuine, donno) =
blanchet@33192
   787
        if donno > 0 andalso max_genuine > 0 then
blanchet@33192
   788
          (print_m (fn () => excipit "ran out of resources"); "unknown")
blanchet@33192
   789
        else if max_genuine = original_max_genuine then
blanchet@33192
   790
          if max_potential = original_max_potential then
blanchet@33192
   791
            (print_m (K ("Nitpick found no " ^ word_model ^ ".")); "none")
blanchet@33192
   792
          else
blanchet@33192
   793
            (print_m (K ("Nitpick could not find " ^
blanchet@33192
   794
                         (if max_genuine = 1 then "a better " ^ word_model ^ "."
blanchet@33192
   795
                          else "any better " ^ word_model ^ "s.")));
blanchet@33192
   796
             "potential")
blanchet@33192
   797
        else
blanchet@33192
   798
          if would_be_genuine then "genuine" else "likely_genuine"
blanchet@33192
   799
      | run_batches j n (batch :: batches) z =
blanchet@33192
   800
        let val (z as (_, max_genuine, _)) = run_batch j n batch z in
blanchet@33192
   801
          run_batches (j + 1) n (if max_genuine > 0 then batches else []) z
blanchet@33192
   802
        end
blanchet@33192
   803
blanchet@33192
   804
    val _ = scopes := all_scopes ext_ctxt sym_break cards_assigns maxes_assigns
blanchet@33192
   805
                                 iters_assigns bisim_depths mono_Ts nonmono_Ts
blanchet@33192
   806
    val batches = batch_list batch_size (!scopes)
blanchet@33192
   807
    val outcome_code =
blanchet@33192
   808
      (run_batches 0 (length batches) batches (max_potential, max_genuine, 0)
blanchet@33192
   809
       handle Exn.Interrupt => do_interrupted ())
blanchet@33192
   810
      handle TimeLimit.TimeOut =>
blanchet@33192
   811
             (print_m (fn () => excipit "ran out of time");
blanchet@33192
   812
              if !met_potential > 0 then "potential" else "unknown")
blanchet@33192
   813
           | Exn.Interrupt => if auto orelse debug then raise Interrupt
blanchet@33192
   814
                              else error (excipit "was interrupted")
blanchet@33192
   815
    val _ = print_v (fn () => "Total time: " ^
blanchet@33192
   816
                              signed_string_of_int (Time.toMilliseconds
blanchet@33192
   817
                                    (Timer.checkRealTimer timer)) ^ " ms.")
blanchet@33192
   818
  in (outcome_code, !state_ref) end
blanchet@33192
   819
  handle Exn.Interrupt =>
blanchet@33192
   820
         if auto orelse #debug params then
blanchet@33192
   821
           raise Interrupt
blanchet@33192
   822
         else
blanchet@33192
   823
           if passed_deadline deadline then
blanchet@33192
   824
             (priority "Nitpick ran out of time."; ("unknown", state))
blanchet@33192
   825
           else
blanchet@33192
   826
             error "Nitpick was interrupted."
blanchet@33192
   827
blanchet@33192
   828
(* Proof.state -> params -> bool -> term -> string * Proof.state *)
blanchet@33192
   829
fun pick_nits_in_term state (params as {debug, timeout, expect, ...})
blanchet@33192
   830
                      auto orig_assm_ts orig_t =
blanchet@33192
   831
  let
blanchet@33192
   832
    val deadline = Option.map (curry Time.+ (Time.now ())) timeout
blanchet@33192
   833
    val outcome as (outcome_code, _) =
blanchet@33192
   834
      time_limit (if debug then NONE else timeout)
blanchet@33192
   835
          (pick_them_nits_in_term deadline state params auto orig_assm_ts)
blanchet@33192
   836
          orig_t
blanchet@33192
   837
  in
blanchet@33192
   838
    if expect = "" orelse outcome_code = expect then outcome
blanchet@33192
   839
    else error ("Unexpected outcome: " ^ quote outcome_code ^ ".")
blanchet@33192
   840
  end
blanchet@33192
   841
blanchet@33192
   842
(* Proof.state -> params -> thm -> int -> string * Proof.state *)
blanchet@33192
   843
fun pick_nits_in_subgoal state params auto subgoal =
blanchet@33192
   844
  let
blanchet@33192
   845
    val ctxt = Proof.context_of state
blanchet@33192
   846
    val t = state |> Proof.get_goal |> snd |> snd |> prop_of
blanchet@33192
   847
  in
blanchet@33192
   848
    if Logic.count_prems t = 0 then
blanchet@33192
   849
      (priority "No subgoal!"; ("none", state))
blanchet@33192
   850
    else
blanchet@33192
   851
      let
blanchet@33192
   852
        val assms = map term_of (Assumption.all_assms_of ctxt)
blanchet@33192
   853
        val (t, frees) = Logic.goal_params t subgoal
blanchet@33192
   854
      in pick_nits_in_term state params auto assms (subst_bounds (frees, t)) end
blanchet@33192
   855
  end
blanchet@33192
   856
blanchet@33192
   857
end;