src/HOL/Tools/Nitpick/nitpick.ML
author wenzelm
Mon, 31 May 2010 21:06:57 +0200
changeset 37216 3165bc303f66
parent 37211 efcad7594872
child 37272 4a7fe945412d
permissions -rw-r--r--
modernized some structure names, keeping a few legacy aliases;
blanchet@33982
     1
(*  Title:      HOL/Tools/Nitpick/nitpick.ML
blanchet@33192
     2
    Author:     Jasmin Blanchette, TU Muenchen
blanchet@34969
     3
    Copyright   2008, 2009, 2010
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@33705
    10
  type styp = Nitpick_Util.styp
blanchet@35711
    11
  type term_postprocessor = Nitpick_Model.term_postprocessor
blanchet@36390
    12
  type params =
blanchet@36390
    13
    {cards_assigns: (typ option * int list) list,
blanchet@36390
    14
     maxes_assigns: (styp option * int list) list,
blanchet@36390
    15
     iters_assigns: (styp option * int list) list,
blanchet@36390
    16
     bitss: int list,
blanchet@36390
    17
     bisim_depths: int list,
blanchet@36390
    18
     boxes: (typ option * bool option) list,
blanchet@36390
    19
     finitizes: (typ option * bool option) list,
blanchet@36390
    20
     monos: (typ option * bool option) list,
blanchet@36390
    21
     stds: (typ option * bool) list,
blanchet@36390
    22
     wfs: (styp option * bool option) list,
blanchet@36390
    23
     sat_solver: string,
blanchet@36390
    24
     blocking: bool,
blanchet@36390
    25
     falsify: bool,
blanchet@36390
    26
     debug: bool,
blanchet@36390
    27
     verbose: bool,
blanchet@36390
    28
     overlord: bool,
blanchet@36390
    29
     user_axioms: bool option,
blanchet@36390
    30
     assms: bool,
blanchet@36390
    31
     merge_type_vars: bool,
blanchet@36390
    32
     binary_ints: bool option,
blanchet@36390
    33
     destroy_constrs: bool,
blanchet@36390
    34
     specialize: bool,
blanchet@36390
    35
     star_linear_preds: bool,
blanchet@36390
    36
     fast_descrs: bool,
blanchet@36390
    37
     peephole_optim: bool,
blanchet@36390
    38
     timeout: Time.time option,
blanchet@36390
    39
     tac_timeout: Time.time option,
blanchet@36390
    40
     max_threads: int,
blanchet@36390
    41
     show_datatypes: bool,
blanchet@36390
    42
     show_consts: bool,
blanchet@36390
    43
     evals: term list,
blanchet@36390
    44
     formats: (term option * int list) list,
blanchet@36390
    45
     max_potential: int,
blanchet@36390
    46
     max_genuine: int,
blanchet@36390
    47
     check_potential: bool,
blanchet@36390
    48
     check_genuine: bool,
blanchet@36390
    49
     batch_size: int,
blanchet@36390
    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@35711
    56
  val register_term_postprocessor :
blanchet@35711
    57
    typ -> term_postprocessor -> theory -> theory
blanchet@35711
    58
  val unregister_term_postprocessor : typ -> theory -> theory
blanchet@33192
    59
  val pick_nits_in_term :
blanchet@35335
    60
    Proof.state -> params -> bool -> int -> int -> int -> (term * term) list
blanchet@35335
    61
    -> term list -> term -> string * Proof.state
blanchet@33192
    62
  val pick_nits_in_subgoal :
blanchet@34969
    63
    Proof.state -> params -> bool -> int -> int -> string * Proof.state
blanchet@33192
    64
end;
blanchet@33192
    65
blanchet@33192
    66
structure Nitpick : NITPICK =
blanchet@33192
    67
struct
blanchet@33192
    68
blanchet@33224
    69
open Nitpick_Util
blanchet@33224
    70
open Nitpick_HOL
blanchet@35067
    71
open Nitpick_Preproc
blanchet@33224
    72
open Nitpick_Mono
blanchet@33224
    73
open Nitpick_Scope
blanchet@33224
    74
open Nitpick_Peephole
blanchet@33224
    75
open Nitpick_Rep
blanchet@33224
    76
open Nitpick_Nut
blanchet@33224
    77
open Nitpick_Kodkod
blanchet@33224
    78
open Nitpick_Model
blanchet@33192
    79
blanchet@34123
    80
structure KK = Kodkod
blanchet@34123
    81
blanchet@36390
    82
type params =
blanchet@36390
    83
  {cards_assigns: (typ option * int list) list,
blanchet@36390
    84
   maxes_assigns: (styp option * int list) list,
blanchet@36390
    85
   iters_assigns: (styp option * int list) list,
blanchet@36390
    86
   bitss: int list,
blanchet@36390
    87
   bisim_depths: int list,
blanchet@36390
    88
   boxes: (typ option * bool option) list,
blanchet@36390
    89
   finitizes: (typ option * bool option) list,
blanchet@36390
    90
   monos: (typ option * bool option) list,
blanchet@36390
    91
   stds: (typ option * bool) list,
blanchet@36390
    92
   wfs: (styp option * bool option) list,
blanchet@36390
    93
   sat_solver: string,
blanchet@36390
    94
   blocking: bool,
blanchet@36390
    95
   falsify: bool,
blanchet@36390
    96
   debug: bool,
blanchet@36390
    97
   verbose: bool,
blanchet@36390
    98
   overlord: bool,
blanchet@36390
    99
   user_axioms: bool option,
blanchet@36390
   100
   assms: bool,
blanchet@36390
   101
   merge_type_vars: bool,
blanchet@36390
   102
   binary_ints: bool option,
blanchet@36390
   103
   destroy_constrs: bool,
blanchet@36390
   104
   specialize: bool,
blanchet@36390
   105
   star_linear_preds: bool,
blanchet@36390
   106
   fast_descrs: bool,
blanchet@36390
   107
   peephole_optim: bool,
blanchet@36390
   108
   timeout: Time.time option,
blanchet@36390
   109
   tac_timeout: Time.time option,
blanchet@36390
   110
   max_threads: int,
blanchet@36390
   111
   show_datatypes: bool,
blanchet@36390
   112
   show_consts: bool,
blanchet@36390
   113
   evals: term list,
blanchet@36390
   114
   formats: (term option * int list) list,
blanchet@36390
   115
   max_potential: int,
blanchet@36390
   116
   max_genuine: int,
blanchet@36390
   117
   check_potential: bool,
blanchet@36390
   118
   check_genuine: bool,
blanchet@36390
   119
   batch_size: int,
blanchet@36390
   120
   expect: string}
blanchet@33192
   121
blanchet@36390
   122
type problem_extension =
blanchet@36390
   123
  {free_names: nut list,
blanchet@36390
   124
   sel_names: nut list,
blanchet@36390
   125
   nonsel_names: nut list,
blanchet@36390
   126
   rel_table: nut NameTable.table,
blanchet@36390
   127
   unsound: bool,
blanchet@36390
   128
   scope: scope}
blanchet@36390
   129
 
blanchet@34123
   130
type rich_problem = KK.problem * problem_extension
blanchet@33192
   131
blanchet@33192
   132
fun pretties_for_formulas _ _ [] = []
blanchet@33192
   133
  | pretties_for_formulas ctxt s ts =
blanchet@33192
   134
    [Pretty.str (s ^ plural_s_for_list ts ^ ":"),
blanchet@33192
   135
     Pretty.indent indent_size (Pretty.chunks
blanchet@33192
   136
         (map2 (fn j => fn t =>
blanchet@34118
   137
                   Pretty.block [t |> shorten_names_in_term
blanchet@33192
   138
                                   |> Syntax.pretty_term ctxt,
blanchet@33192
   139
                                 Pretty.str (if j = 1 then "." else ";")])
blanchet@33192
   140
               (length ts downto 1) ts))]
blanchet@33192
   141
blanchet@35696
   142
fun install_java_message () =
blanchet@35696
   143
  "Nitpick requires a Java 1.5 virtual machine called \"java\"."
blanchet@33559
   144
fun install_kodkodi_message () =
blanchet@33559
   145
  "Nitpick requires the external Java program Kodkodi. To install it, download \
blanchet@33559
   146
  \the package from Isabelle's web page and add the \"kodkodi-x.y.z\" \
blanchet@33559
   147
  \directory's full path to \"" ^
blanchet@33559
   148
  Path.implode (Path.expand (Path.appends
blanchet@33559
   149
      (Path.variable "ISABELLE_HOME_USER" ::
blanchet@36266
   150
       map Path.basic ["etc", "components"]))) ^ "\" on a line of its own."
blanchet@33559
   151
blanchet@35185
   152
val max_unsound_delay_ms = 200
blanchet@35185
   153
val max_unsound_delay_percent = 2
blanchet@33192
   154
blanchet@35185
   155
fun unsound_delay_for_timeout NONE = max_unsound_delay_ms
blanchet@35185
   156
  | unsound_delay_for_timeout (SOME timeout) =
blanchet@35185
   157
    Int.max (0, Int.min (max_unsound_delay_ms,
blanchet@33192
   158
                         Time.toMilliseconds timeout
blanchet@35185
   159
                         * max_unsound_delay_percent div 100))
blanchet@33192
   160
blanchet@33192
   161
fun passed_deadline NONE = false
blanchet@33192
   162
  | passed_deadline (SOME time) = Time.compare (Time.now (), time) <> LESS
blanchet@33192
   163
blanchet@34120
   164
fun none_true assigns = forall (not_equal (SOME true) o snd) assigns
blanchet@33192
   165
blanchet@34038
   166
val syntactic_sorts =
blanchet@34038
   167
  @{sort "{default,zero,one,plus,minus,uminus,times,inverse,abs,sgn,ord,eq}"} @
blanchet@34038
   168
  @{sort number}
blanchet@34038
   169
fun has_tfree_syntactic_sort (TFree (_, S as _ :: _)) =
blanchet@34038
   170
    subset (op =) (S, syntactic_sorts)
blanchet@34038
   171
  | has_tfree_syntactic_sort _ = false
blanchet@34038
   172
val has_syntactic_sorts = exists_type (exists_subtype has_tfree_syntactic_sort)
blanchet@33192
   173
blanchet@33559
   174
fun plazy f = Pretty.blk (0, pstrs (f ()))
blanchet@33559
   175
blanchet@34969
   176
fun pick_them_nits_in_term deadline state (params : params) auto i n step
blanchet@35335
   177
                           subst orig_assm_ts orig_t =
blanchet@33192
   178
  let
blanchet@33192
   179
    val timer = Timer.startRealTimer ()
blanchet@34922
   180
    val thy = Proof.theory_of state
blanchet@34922
   181
    val ctxt = Proof.context_of state
blanchet@35386
   182
(* FIXME: reintroduce code before new release:
blanchet@35386
   183
wenzelm@37216
   184
    val nitpick_thy = Thy_Info.get_theory "Nitpick"
blanchet@34923
   185
    val _ = Theory.subthy (nitpick_thy, thy) orelse
blanchet@34923
   186
            error "You must import the theory \"Nitpick\" to use Nitpick"
blanchet@34969
   187
*)
blanchet@34121
   188
    val {cards_assigns, maxes_assigns, iters_assigns, bitss, bisim_depths,
blanchet@35665
   189
         boxes, finitizes, monos, stds, wfs, sat_solver, falsify, debug,
blanchet@35665
   190
         verbose, overlord, user_axioms, assms, merge_type_vars, binary_ints,
blanchet@36389
   191
         destroy_constrs, specialize, star_linear_preds, fast_descrs,
blanchet@36390
   192
         peephole_optim, tac_timeout, max_threads, show_datatypes, show_consts,
blanchet@36390
   193
         evals, formats, max_potential, max_genuine, check_potential,
blanchet@36390
   194
         check_genuine, batch_size, ...} = params
blanchet@33192
   195
    val state_ref = Unsynchronized.ref state
blanchet@33192
   196
    val pprint =
blanchet@33192
   197
      if auto then
blanchet@33192
   198
        Unsynchronized.change state_ref o Proof.goal_message o K
blanchet@33552
   199
        o Pretty.chunks o cons (Pretty.str "") o single
blanchet@33192
   200
        o Pretty.mark Markup.hilite
blanchet@33192
   201
      else
blanchet@36128
   202
        (fn s => (priority s; if debug then tracing s else ()))
blanchet@36128
   203
        o Pretty.string_of
blanchet@33192
   204
    fun pprint_m f = () |> not auto ? pprint o f
blanchet@33192
   205
    fun pprint_v f = () |> verbose ? pprint o f
blanchet@33192
   206
    fun pprint_d f = () |> debug ? pprint o f
blanchet@33192
   207
    val print = pprint o curry Pretty.blk 0 o pstrs
blanchet@36128
   208
    val print_g = pprint o Pretty.str
blanchet@33559
   209
    val print_m = pprint_m o K o plazy
blanchet@33559
   210
    val print_v = pprint_v o K o plazy
blanchet@33192
   211
blanchet@33192
   212
    fun check_deadline () =
blanchet@33192
   213
      if debug andalso passed_deadline deadline then raise TimeLimit.TimeOut
blanchet@33192
   214
      else ()
blanchet@33192
   215
    fun do_interrupted () =
blanchet@33192
   216
      if passed_deadline deadline then raise TimeLimit.TimeOut
blanchet@33192
   217
      else raise Interrupt
blanchet@33192
   218
blanchet@35335
   219
    val orig_assm_ts = if assms orelse auto then orig_assm_ts else []
blanchet@34969
   220
    val _ =
blanchet@34969
   221
      if step = 0 then
blanchet@34969
   222
        print_m (fn () => "Nitpicking formula...")
blanchet@34969
   223
      else
blanchet@34969
   224
        pprint_m (fn () => Pretty.chunks (
blanchet@34969
   225
            pretties_for_formulas ctxt ("Nitpicking " ^
blanchet@34969
   226
                (if i <> 1 orelse n <> 1 then
blanchet@34969
   227
                   "subgoal " ^ string_of_int i ^ " of " ^ string_of_int n
blanchet@34969
   228
                 else
blanchet@35181
   229
                   "goal")) [Logic.list_implies (orig_assm_ts, orig_t)]))
blanchet@33192
   230
    val neg_t = if falsify then Logic.mk_implies (orig_t, @{prop False})
blanchet@33192
   231
                else orig_t
blanchet@35335
   232
    val assms_t = Logic.mk_conjunction_list (neg_t :: orig_assm_ts)
blanchet@33192
   233
    val (assms_t, evals) =
blanchet@33705
   234
      assms_t :: evals |> merge_type_vars ? merge_type_vars_in_terms
blanchet@33705
   235
                       |> pairf hd tl
blanchet@33192
   236
    val original_max_potential = max_potential
blanchet@33192
   237
    val original_max_genuine = max_genuine
blanchet@33192
   238
(*
blanchet@36128
   239
    val _ = print_g ("*** " ^ Syntax.string_of_term ctxt orig_t)
blanchet@36128
   240
    val _ = List.app (fn t => print_g ("*** " ^ Syntax.string_of_term ctxt t))
blanchet@33192
   241
                     orig_assm_ts
blanchet@33192
   242
*)
blanchet@33192
   243
    val max_bisim_depth = fold Integer.max bisim_depths ~1
blanchet@35220
   244
    val case_names = case_const_names thy stds
blanchet@35335
   245
    val (defs, built_in_nondefs, user_nondefs) = all_axioms_of thy subst
blanchet@35335
   246
    val def_table = const_def_table ctxt subst defs
blanchet@33192
   247
    val nondef_table = const_nondef_table (built_in_nondefs @ user_nondefs)
blanchet@35335
   248
    val simp_table = Unsynchronized.ref (const_simp_table ctxt subst)
blanchet@35335
   249
    val psimp_table = const_psimp_table ctxt subst
blanchet@35807
   250
    val choice_spec_table = const_choice_spec_table ctxt subst
blanchet@35807
   251
    val user_nondefs =
blanchet@35807
   252
      user_nondefs |> filter_out (is_choice_spec_axiom thy choice_spec_table)
blanchet@35335
   253
    val intro_table = inductive_intro_table ctxt subst def_table
blanchet@33192
   254
    val ground_thm_table = ground_theorem_table thy
blanchet@33192
   255
    val ersatz_table = ersatz_table thy
blanchet@35067
   256
    val (hol_ctxt as {wf_cache, ...}) =
blanchet@33192
   257
      {thy = thy, ctxt = ctxt, max_bisim_depth = max_bisim_depth, boxes = boxes,
blanchet@34969
   258
       stds = stds, wfs = wfs, user_axioms = user_axioms, debug = debug,
blanchet@34121
   259
       binary_ints = binary_ints, destroy_constrs = destroy_constrs,
blanchet@36389
   260
       specialize = specialize, star_linear_preds = star_linear_preds,
blanchet@36389
   261
       fast_descrs = fast_descrs, tac_timeout = tac_timeout, evals = evals,
blanchet@36389
   262
       case_names = case_names, def_table = def_table,
blanchet@36389
   263
       nondef_table = nondef_table, user_nondefs = user_nondefs,
blanchet@36389
   264
       simp_table = simp_table, psimp_table = psimp_table,
blanchet@36389
   265
       choice_spec_table = choice_spec_table, intro_table = intro_table,
blanchet@36389
   266
       ground_thm_table = ground_thm_table, ersatz_table = ersatz_table,
blanchet@36389
   267
       skolems = Unsynchronized.ref [], special_funs = Unsynchronized.ref [],
blanchet@33571
   268
       unrolled_preds = Unsynchronized.ref [], wf_cache = Unsynchronized.ref [],
blanchet@33571
   269
       constr_cache = Unsynchronized.ref []}
blanchet@33192
   270
    val frees = Term.add_frees assms_t []
blanchet@34923
   271
    val _ = null (Term.add_tvars assms_t []) orelse
blanchet@34923
   272
            raise NOT_SUPPORTED "schematic type variables"
blanchet@35386
   273
    val (nondef_ts, def_ts, got_all_mono_user_axioms, no_poly_user_axioms,
blanchet@35665
   274
         binarize) = preprocess_term hol_ctxt finitizes monos assms_t
blanchet@33192
   275
    val got_all_user_axioms =
blanchet@33192
   276
      got_all_mono_user_axioms andalso no_poly_user_axioms
blanchet@33192
   277
blanchet@33192
   278
    fun print_wf (x, (gfp, wf)) =
blanchet@33192
   279
      pprint (Pretty.blk (0,
blanchet@33192
   280
          pstrs ("The " ^ (if gfp then "co" else "") ^ "inductive predicate \"")
blanchet@33192
   281
          @ Syntax.pretty_term ctxt (Const x) ::
blanchet@33192
   282
          pstrs (if wf then
blanchet@33192
   283
                   "\" was proved well-founded. Nitpick can compute it \
blanchet@33192
   284
                   \efficiently."
blanchet@33192
   285
                 else
blanchet@33192
   286
                   "\" could not be proved well-founded. Nitpick might need to \
blanchet@33192
   287
                   \unroll it.")))
blanchet@33192
   288
    val _ = if verbose then List.app print_wf (!wf_cache) else ()
blanchet@33192
   289
    val _ =
blanchet@35386
   290
      pprint_d (fn () => Pretty.chunks
blanchet@35386
   291
          (pretties_for_formulas ctxt "Preprocessed formula" [hd nondef_ts] @
blanchet@35386
   292
           pretties_for_formulas ctxt "Relevant definitional axiom" def_ts @
blanchet@35386
   293
           pretties_for_formulas ctxt "Relevant nondefinitional axiom"
blanchet@35386
   294
                                 (tl nondef_ts)))
blanchet@35386
   295
    val _ = List.app (ignore o Term.type_of) (nondef_ts @ def_ts)
blanchet@33192
   296
            handle TYPE (_, Ts, ts) =>
blanchet@33192
   297
                   raise TYPE ("Nitpick.pick_them_nits_in_term", Ts, ts)
blanchet@33192
   298
blanchet@35386
   299
    val nondef_us = map (nut_from_term hol_ctxt Eq) nondef_ts
blanchet@35067
   300
    val def_us = map (nut_from_term hol_ctxt DefEq) def_ts
blanchet@33549
   301
    val (free_names, const_names) =
blanchet@35386
   302
      fold add_free_and_const_names (nondef_us @ def_us) ([], [])
blanchet@33549
   303
    val (sel_names, nonsel_names) =
blanchet@33549
   304
      List.partition (is_sel o nickname_of) const_names
blanchet@35665
   305
    val sound_finitizes =
blanchet@35665
   306
      none_true (filter_out (fn (SOME (Type (@{type_name fun}, _)), _) => true
blanchet@35665
   307
                          | _ => false) finitizes)
blanchet@34969
   308
    val standard = forall snd stds
blanchet@33549
   309
(*
blanchet@36128
   310
    val _ = List.app (print_g o string_for_nut ctxt) (nondef_us @ def_us)
blanchet@33549
   311
*)
blanchet@33549
   312
blanchet@34118
   313
    val unique_scope = forall (curry (op =) 1 o length o snd) cards_assigns
blanchet@35385
   314
    fun monotonicity_message Ts extra =
blanchet@35385
   315
      let val ss = map (quote o string_for_type ctxt) Ts in
blanchet@35385
   316
        "The type" ^ plural_s_for_list ss ^ " " ^
blanchet@36380
   317
        space_implode " " (serial_commas "and" ss) ^ " " ^
blanchet@35385
   318
        (if none_true monos then
blanchet@35385
   319
           "passed the monotonicity test"
blanchet@35385
   320
         else
blanchet@35385
   321
           (if length ss = 1 then "is" else "are") ^ " considered monotonic") ^
blanchet@35385
   322
        ". " ^ extra
blanchet@35385
   323
      end
blanchet@35665
   324
    fun is_type_fundamentally_monotonic T =
blanchet@35220
   325
      (is_datatype thy stds T andalso not (is_quot_type thy T) andalso
blanchet@34925
   326
       (not (is_pure_typedef thy T) orelse is_univ_typedef thy T)) orelse
blanchet@35072
   327
      is_number_type thy T orelse is_bit_type T
blanchet@35385
   328
    fun is_type_actually_monotonic T =
blanchet@35386
   329
      formulas_monotonic hol_ctxt binarize T (nondef_ts, def_ts)
blanchet@35665
   330
    fun is_type_kind_of_monotonic T =
blanchet@35665
   331
      case triple_lookup (type_match thy) monos T of
blanchet@35665
   332
        SOME (SOME false) => false
blanchet@35665
   333
      | _ => is_type_actually_monotonic T
blanchet@34923
   334
    fun is_type_monotonic T =
blanchet@33192
   335
      unique_scope orelse
blanchet@33192
   336
      case triple_lookup (type_match thy) monos T of
blanchet@33192
   337
        SOME (SOME b) => b
blanchet@35665
   338
      | _ => is_type_fundamentally_monotonic T orelse
blanchet@35665
   339
             is_type_actually_monotonic T
blanchet@35665
   340
    fun is_shallow_datatype_finitizable (T as Type (@{type_name fin_fun}, _)) =
blanchet@35665
   341
        is_type_kind_of_monotonic T
blanchet@35665
   342
      | is_shallow_datatype_finitizable (T as Type (@{type_name fun_box}, _)) =
blanchet@35665
   343
        is_type_kind_of_monotonic T
blanchet@35665
   344
      | is_shallow_datatype_finitizable T =
blanchet@35665
   345
        case triple_lookup (type_match thy) finitizes T of
blanchet@35665
   346
          SOME (SOME b) => b
blanchet@35665
   347
        | _ => is_type_kind_of_monotonic T
blanchet@35385
   348
    fun is_datatype_deep T =
blanchet@35385
   349
      not standard orelse T = nat_T orelse is_word_type T orelse
blanchet@35385
   350
      exists (curry (op =) T o domain_type o type_of) sel_names
blanchet@35386
   351
    val all_Ts = ground_types_in_terms hol_ctxt binarize (nondef_ts @ def_ts)
wenzelm@35408
   352
                 |> sort Term_Ord.typ_ord
blanchet@34923
   353
    val _ = if verbose andalso binary_ints = SOME true andalso
blanchet@34969
   354
               exists (member (op =) [nat_T, int_T]) all_Ts then
blanchet@34121
   355
              print_v (K "The option \"binary_ints\" will be ignored because \
blanchet@34123
   356
                         \of the presence of rationals, reals, \"Suc\", \
blanchet@35386
   357
                         \\"gcd\", or \"lcm\" in the problem or because of the \
blanchet@35386
   358
                         \\"non_std\" option.")
blanchet@34121
   359
            else
blanchet@34121
   360
              ()
blanchet@34969
   361
    val (mono_Ts, nonmono_Ts) = List.partition is_type_monotonic all_Ts
blanchet@33192
   362
    val _ =
blanchet@34923
   363
      if verbose andalso not unique_scope then
blanchet@35665
   364
        case filter_out is_type_fundamentally_monotonic mono_Ts of
blanchet@34923
   365
          [] => ()
blanchet@34923
   366
        | interesting_mono_Ts =>
blanchet@35385
   367
          print_v (K (monotonicity_message interesting_mono_Ts
blanchet@35385
   368
                         "Nitpick might be able to skip some scopes."))
blanchet@33192
   369
      else
blanchet@33192
   370
        ()
blanchet@35385
   371
    val (deep_dataTs, shallow_dataTs) =
blanchet@35385
   372
      all_Ts |> filter (is_datatype thy stds) |> List.partition is_datatype_deep
blanchet@35385
   373
    val finitizable_dataTs =
blanchet@35385
   374
      shallow_dataTs |> filter_out (is_finite_type hol_ctxt)
blanchet@35665
   375
                     |> filter is_shallow_datatype_finitizable
blanchet@35385
   376
    val _ =
blanchet@35385
   377
      if verbose andalso not (null finitizable_dataTs) then
blanchet@35385
   378
        print_v (K (monotonicity_message finitizable_dataTs
blanchet@35385
   379
                        "Nitpick can use a more precise finite encoding."))
blanchet@35385
   380
      else
blanchet@35385
   381
        ()
blanchet@35183
   382
    (* This detection code is an ugly hack. Fortunately, it is used only to
blanchet@35183
   383
       provide a hint to the user. *)
blanchet@35183
   384
    fun is_struct_induct_step (name, (Rule_Cases.Case {fixes, assumes, ...}, _)) =
blanchet@35183
   385
      not (null fixes) andalso
blanchet@35183
   386
      exists (String.isSuffix ".hyps" o fst) assumes andalso
blanchet@35183
   387
      exists (exists (curry (op =) name o shortest_name o fst)
blanchet@35183
   388
              o datatype_constrs hol_ctxt) deep_dataTs
blanchet@35183
   389
    val likely_in_struct_induct_step =
blanchet@35183
   390
      exists is_struct_induct_step (ProofContext.cases_of ctxt)
blanchet@35183
   391
    val _ = if standard andalso likely_in_struct_induct_step then
blanchet@34969
   392
              pprint_m (fn () => Pretty.blk (0,
blanchet@34969
   393
                  pstrs "Hint: To check that the induction hypothesis is \
blanchet@35177
   394
                        \general enough, try this command: " @
blanchet@34969
   395
                  [Pretty.mark Markup.sendback (Pretty.blk (0,
blanchet@35183
   396
                       pstrs ("nitpick [non_std, show_all]")))] @ pstrs "."))
blanchet@34969
   397
            else
blanchet@34969
   398
              ()
blanchet@33192
   399
(*
blanchet@36128
   400
    val _ = print_g "Monotonic types:"
blanchet@36128
   401
    val _ = List.app (print_g o string_for_type ctxt) mono_Ts
blanchet@36128
   402
    val _ = print_g "Nonmonotonic types:"
blanchet@36128
   403
    val _ = List.app (print_g o string_for_type ctxt) nonmono_Ts
blanchet@33192
   404
*)
blanchet@33192
   405
blanchet@36384
   406
    val incremental = Int.max (max_potential, max_genuine) >= 2
blanchet@36384
   407
    val actual_sat_solver =
blanchet@33192
   408
      if sat_solver <> "smart" then
blanchet@36384
   409
        if incremental andalso
blanchet@34923
   410
           not (member (op =) (Kodkod_SAT.configured_sat_solvers true)
blanchet@35333
   411
                       sat_solver) then
blanchet@33192
   412
          (print_m (K ("An incremental SAT solver is required: \"SAT4J\" will \
blanchet@33192
   413
                       \be used instead of " ^ quote sat_solver ^ "."));
blanchet@33192
   414
           "SAT4J")
blanchet@33192
   415
        else
blanchet@33192
   416
          sat_solver
blanchet@33192
   417
      else
blanchet@36384
   418
        Kodkod_SAT.smart_sat_solver_name incremental
blanchet@33192
   419
    val _ =
blanchet@33192
   420
      if sat_solver = "smart" then
blanchet@36384
   421
        print_v (fn () =>
blanchet@36384
   422
            "Using SAT solver " ^ quote actual_sat_solver ^ ". The following" ^
blanchet@36384
   423
            (if incremental then " incremental " else " ") ^
blanchet@36384
   424
            "solvers are configured: " ^
blanchet@36384
   425
            commas_quote (Kodkod_SAT.configured_sat_solvers incremental) ^ ".")
blanchet@33192
   426
      else
blanchet@33192
   427
        ()
blanchet@33192
   428
blanchet@33192
   429
    val too_big_scopes = Unsynchronized.ref []
blanchet@33192
   430
blanchet@35185
   431
    fun problem_for_scope unsound
blanchet@34121
   432
            (scope as {card_assigns, bits, bisim_depth, datatypes, ofs, ...}) =
blanchet@33192
   433
      let
blanchet@33192
   434
        val _ = not (exists (fn other => scope_less_eq other scope)
blanchet@34923
   435
                            (!too_big_scopes)) orelse
blanchet@34923
   436
                raise TOO_LARGE ("Nitpick.pick_them_nits_in_term.\
blanchet@34923
   437
                                 \problem_for_scope", "too large scope")
blanchet@33192
   438
(*
blanchet@36128
   439
        val _ = print_g "Offsets:"
blanchet@33192
   440
        val _ = List.app (fn (T, j0) =>
blanchet@36128
   441
                             print_g (string_for_type ctxt T ^ " = " ^
blanchet@36128
   442
                                    string_of_int j0))
blanchet@33192
   443
                         (Typtab.dest ofs)
blanchet@33192
   444
*)
blanchet@35385
   445
        val all_exact = forall (is_exact_type datatypes true) all_Ts
blanchet@34120
   446
        val repify_consts = choose_reps_for_consts scope all_exact
blanchet@33192
   447
        val main_j0 = offset_of_type ofs bool_T
blanchet@33192
   448
        val (nat_card, nat_j0) = spec_of_type scope nat_T
blanchet@33192
   449
        val (int_card, int_j0) = spec_of_type scope int_T
blanchet@34923
   450
        val _ = (nat_j0 = main_j0 andalso int_j0 = main_j0) orelse
blanchet@34923
   451
                raise BAD ("Nitpick.pick_them_nits_in_term.problem_for_scope",
blanchet@34923
   452
                           "bad offsets")
blanchet@33192
   453
        val kk = kodkod_constrs peephole_optim nat_card int_card main_j0
blanchet@33192
   454
        val (free_names, rep_table) =
blanchet@33192
   455
          choose_reps_for_free_vars scope free_names NameTable.empty
blanchet@33192
   456
        val (sel_names, rep_table) = choose_reps_for_all_sels scope rep_table
blanchet@33192
   457
        val (nonsel_names, rep_table) = repify_consts nonsel_names rep_table
blanchet@33192
   458
        val min_highest_arity =
blanchet@36384
   459
          NameTable.fold (Integer.max o arity_of_rep o snd) rep_table 1
blanchet@33192
   460
        val min_univ_card =
blanchet@36384
   461
          NameTable.fold (Integer.max o min_univ_card_of_rep o snd) rep_table
blanchet@34123
   462
                         (univ_card nat_card int_card main_j0 [] KK.True)
blanchet@33192
   463
        val _ = check_arity min_univ_card min_highest_arity
blanchet@33192
   464
blanchet@35185
   465
        val def_us = map (choose_reps_in_nut scope unsound rep_table true)
blanchet@33192
   466
                         def_us
blanchet@35185
   467
        val nondef_us = map (choose_reps_in_nut scope unsound rep_table false)
blanchet@33192
   468
                            nondef_us
blanchet@33745
   469
(*
blanchet@36128
   470
        val _ = List.app (print_g o string_for_nut ctxt)
blanchet@33192
   471
                         (free_names @ sel_names @ nonsel_names @
blanchet@35386
   472
                          nondef_us @ def_us)
blanchet@33745
   473
*)
blanchet@33192
   474
        val (free_rels, pool, rel_table) =
blanchet@33192
   475
          rename_free_vars free_names initial_pool NameTable.empty
blanchet@33192
   476
        val (sel_rels, pool, rel_table) =
blanchet@33192
   477
          rename_free_vars sel_names pool rel_table
blanchet@33192
   478
        val (other_rels, pool, rel_table) =
blanchet@33192
   479
          rename_free_vars nonsel_names pool rel_table
blanchet@35386
   480
        val nondef_us = map (rename_vars_in_nut pool rel_table) nondef_us
blanchet@33192
   481
        val def_us = map (rename_vars_in_nut pool rel_table) def_us
blanchet@35386
   482
        val nondef_fs = map (kodkod_formula_from_nut ofs kk) nondef_us
blanchet@35280
   483
        val def_fs = map (kodkod_formula_from_nut ofs kk) def_us
blanchet@35386
   484
        val formula = fold (fold s_and) [def_fs, nondef_fs] KK.True
blanchet@35185
   485
        val comment = (if unsound then "unsound" else "sound") ^ "\n" ^
wenzelm@37154
   486
                      Print_Mode.setmp [] multiline_string_for_scope scope
blanchet@34985
   487
        val kodkod_sat_solver =
blanchet@36384
   488
          Kodkod_SAT.sat_solver_spec actual_sat_solver |> snd
blanchet@34121
   489
        val bit_width = if bits = 0 then 16 else bits + 1
blanchet@36384
   490
        val delay =
blanchet@36384
   491
          if unsound then
blanchet@36384
   492
            Option.map (fn time => Time.- (time, Time.now ())) deadline
blanchet@36384
   493
            |> unsound_delay_for_timeout
blanchet@36384
   494
          else
blanchet@36384
   495
            0
blanchet@36384
   496
        val settings = [("solver", commas_quote kodkod_sat_solver),
blanchet@33192
   497
                        ("skolem_depth", "-1"),
blanchet@34121
   498
                        ("bit_width", string_of_int bit_width),
blanchet@36386
   499
                        ("symmetry_breaking", "20"),
blanchet@36386
   500
                        ("sharing", "3"),
blanchet@36386
   501
                        ("flatten", "false"),
blanchet@33192
   502
                        ("delay", signed_string_of_int delay)]
blanchet@33192
   503
        val plain_rels = free_rels @ other_rels
blanchet@33192
   504
        val plain_bounds = map (bound_for_plain_rel ctxt debug) plain_rels
blanchet@33192
   505
        val plain_axioms = map (declarative_axiom_for_plain_rel kk) plain_rels
blanchet@33192
   506
        val sel_bounds = map (bound_for_sel_rel ctxt debug datatypes) sel_rels
blanchet@35190
   507
        val dtype_axioms =
blanchet@35190
   508
          declarative_axioms_for_datatypes hol_ctxt binarize bits ofs kk
blanchet@35190
   509
                                           rel_table datatypes
blanchet@33192
   510
        val declarative_axioms = plain_axioms @ dtype_axioms
blanchet@35220
   511
        val univ_card = Int.max (univ_card nat_card int_card main_j0
blanchet@35220
   512
                                     (plain_bounds @ sel_bounds) formula,
blanchet@35220
   513
                                 main_j0 |> bits > 0 ? Integer.add (bits + 1))
blanchet@33192
   514
        val built_in_bounds = bounds_for_built_in_rels_in_formula debug
blanchet@33192
   515
                                  univ_card nat_card int_card main_j0 formula
blanchet@33192
   516
        val bounds = built_in_bounds @ plain_bounds @ sel_bounds
blanchet@33192
   517
                     |> not debug ? merge_bounds
blanchet@33192
   518
        val highest_arity =
blanchet@33192
   519
          fold Integer.max (map (fst o fst) (maps fst bounds)) 0
blanchet@33192
   520
        val formula = fold_rev s_and declarative_axioms formula
blanchet@34121
   521
        val _ = if bits = 0 then () else check_bits bits formula
blanchet@34123
   522
        val _ = if formula = KK.False then ()
blanchet@33192
   523
                else check_arity univ_card highest_arity
blanchet@33192
   524
      in
blanchet@33192
   525
        SOME ({comment = comment, settings = settings, univ_card = univ_card,
blanchet@33192
   526
               tuple_assigns = [], bounds = bounds,
blanchet@35280
   527
               int_bounds = if bits = 0 then sequential_int_bounds univ_card
blanchet@35280
   528
                            else pow_of_two_int_bounds bits main_j0,
blanchet@33192
   529
               expr_assigns = [], formula = formula},
blanchet@33192
   530
              {free_names = free_names, sel_names = sel_names,
blanchet@33192
   531
               nonsel_names = nonsel_names, rel_table = rel_table,
blanchet@35386
   532
               unsound = unsound, scope = scope})
blanchet@33192
   533
      end
blanchet@34121
   534
      handle TOO_LARGE (loc, msg) =>
blanchet@34923
   535
             if loc = "Nitpick_Kodkod.check_arity" andalso
blanchet@34923
   536
                not (Typtab.is_empty ofs) then
blanchet@35185
   537
               problem_for_scope unsound
blanchet@35190
   538
                   {hol_ctxt = hol_ctxt, binarize = binarize,
blanchet@35190
   539
                    card_assigns = card_assigns, bits = bits,
blanchet@35190
   540
                    bisim_depth = bisim_depth, datatypes = datatypes,
blanchet@35190
   541
                    ofs = Typtab.empty}
blanchet@33192
   542
             else if loc = "Nitpick.pick_them_nits_in_term.\
blanchet@33192
   543
                           \problem_for_scope" then
blanchet@33192
   544
               NONE
blanchet@33192
   545
             else
blanchet@33192
   546
               (Unsynchronized.change too_big_scopes (cons scope);
blanchet@33192
   547
                print_v (fn () => ("Limit reached: " ^ msg ^
blanchet@35185
   548
                                   ". Skipping " ^ (if unsound then "potential"
blanchet@33192
   549
                                                    else "genuine") ^
blanchet@33192
   550
                                   " component of scope."));
blanchet@33192
   551
                NONE)
blanchet@35280
   552
           | TOO_SMALL (_, msg) =>
blanchet@34121
   553
             (print_v (fn () => ("Limit reached: " ^ msg ^
blanchet@35185
   554
                                 ". Skipping " ^ (if unsound then "potential"
blanchet@34121
   555
                                                  else "genuine") ^
blanchet@34121
   556
                                 " component of scope."));
blanchet@34121
   557
              NONE)
blanchet@33192
   558
blanchet@34969
   559
    val das_wort_model =
blanchet@34969
   560
      (if falsify then "counterexample" else "model")
blanchet@34969
   561
      |> not standard ? prefix "nonstandard "
blanchet@33192
   562
blanchet@33192
   563
    val scopes = Unsynchronized.ref []
blanchet@33192
   564
    val generated_scopes = Unsynchronized.ref []
blanchet@35185
   565
    val generated_problems = Unsynchronized.ref ([] : rich_problem list)
blanchet@33192
   566
    val checked_problems = Unsynchronized.ref (SOME [])
blanchet@33192
   567
    val met_potential = Unsynchronized.ref 0
blanchet@33192
   568
blanchet@33192
   569
    fun update_checked_problems problems =
blanchet@33192
   570
      List.app (Unsynchronized.change checked_problems o Option.map o cons
blanchet@33192
   571
                o nth problems)
blanchet@35333
   572
    fun show_kodkod_warning "" = ()
blanchet@35334
   573
      | show_kodkod_warning s = print_m (fn () => "Kodkod warning: " ^ s ^ ".")
blanchet@33192
   574
blanchet@33192
   575
    fun print_and_check_model genuine bounds
blanchet@33192
   576
            ({free_names, sel_names, nonsel_names, rel_table, scope, ...}
blanchet@33192
   577
             : problem_extension) =
blanchet@33192
   578
      let
blanchet@33192
   579
        val (reconstructed_model, codatatypes_ok) =
blanchet@36390
   580
          reconstruct_hol_model {show_datatypes = show_datatypes,
blanchet@33192
   581
                                 show_consts = show_consts}
blanchet@33192
   582
              scope formats frees free_names sel_names nonsel_names rel_table
blanchet@33192
   583
              bounds
blanchet@35666
   584
        val genuine_means_genuine =
blanchet@35666
   585
          got_all_user_axioms andalso none_true wfs andalso
blanchet@35666
   586
          sound_finitizes andalso codatatypes_ok
blanchet@33192
   587
      in
blanchet@35666
   588
        (pprint (Pretty.chunks
blanchet@35666
   589
             [Pretty.blk (0,
blanchet@35666
   590
                  (pstrs ("Nitpick found a" ^
blanchet@35666
   591
                          (if not genuine then " potential "
blanchet@35666
   592
                           else if genuine_means_genuine then " "
blanchet@35666
   593
                           else " quasi genuine ") ^ das_wort_model) @
blanchet@35666
   594
                   (case pretties_for_scope scope verbose of
blanchet@35666
   595
                      [] => []
blanchet@35666
   596
                    | pretties => pstrs " for " @ pretties) @
blanchet@35666
   597
                   [Pretty.str ":\n"])),
blanchet@35666
   598
              Pretty.indent indent_size reconstructed_model]);
blanchet@35666
   599
         if genuine then
blanchet@35666
   600
           (if check_genuine andalso standard then
blanchet@35666
   601
              case prove_hol_model scope tac_timeout free_names sel_names
blanchet@33192
   602
                                   rel_table bounds assms_t of
blanchet@35666
   603
                SOME true =>
blanchet@35666
   604
                print ("Confirmation by \"auto\": The above " ^
blanchet@35666
   605
                       das_wort_model ^ " is really genuine.")
blanchet@33192
   606
              | SOME false =>
blanchet@34969
   607
                if genuine_means_genuine then
blanchet@34969
   608
                  error ("A supposedly genuine " ^ das_wort_model ^ " was \
blanchet@34969
   609
                         \shown to be spurious by \"auto\".\nThis should never \
blanchet@34969
   610
                         \happen.\nPlease send a bug report to blanchet\
blanchet@33192
   611
                         \te@in.tum.de.")
blanchet@35666
   612
                 else
blanchet@35666
   613
                   print ("Refutation by \"auto\": The above " ^
blanchet@35666
   614
                          das_wort_model ^ " is spurious.")
blanchet@35666
   615
               | NONE => print "No confirmation by \"auto\"."
blanchet@35666
   616
            else
blanchet@35666
   617
              ();
blanchet@35666
   618
            if not standard andalso likely_in_struct_induct_step then
blanchet@35666
   619
              print "The existence of a nonstandard model suggests that the \
blanchet@36126
   620
                    \induction hypothesis is not general enough or may even be \
blanchet@36126
   621
                    \wrong. See the Nitpick manual's \"Inductive Properties\" \
blanchet@36126
   622
                    \section for details (\"isabelle doc nitpick\")."
blanchet@35666
   623
            else
blanchet@35666
   624
              ();
blanchet@35666
   625
            if has_syntactic_sorts orig_t then
blanchet@35666
   626
              print "Hint: Maybe you forgot a type constraint?"
blanchet@35666
   627
            else
blanchet@35666
   628
              ();
blanchet@35666
   629
            if not genuine_means_genuine then
blanchet@35666
   630
              if no_poly_user_axioms then
blanchet@35666
   631
                let
blanchet@35666
   632
                  val options =
blanchet@35666
   633
                    [] |> not got_all_mono_user_axioms
blanchet@35666
   634
                          ? cons ("user_axioms", "\"true\"")
blanchet@35666
   635
                       |> not (none_true wfs)
blanchet@35666
   636
                          ? cons ("wf", "\"smart\" or \"false\"")
blanchet@35666
   637
                       |> not sound_finitizes
blanchet@35666
   638
                          ? cons ("finitize", "\"smart\" or \"false\"")
blanchet@35666
   639
                       |> not codatatypes_ok
blanchet@35666
   640
                          ? cons ("bisim_depth", "a nonnegative value")
blanchet@35666
   641
                  val ss =
blanchet@35666
   642
                    map (fn (name, value) => quote name ^ " set to " ^ value)
blanchet@35666
   643
                        options
blanchet@35666
   644
                in
blanchet@35666
   645
                  print ("Try again with " ^
blanchet@36380
   646
                         space_implode " " (serial_commas "and" ss) ^
blanchet@35666
   647
                         " to confirm that the " ^ das_wort_model ^
blanchet@35666
   648
                         " is genuine.")
blanchet@35666
   649
                end
blanchet@35666
   650
              else
blanchet@35666
   651
                print ("Nitpick is unable to guarantee the authenticity of \
blanchet@35666
   652
                       \the " ^ das_wort_model ^ " in the presence of \
blanchet@35666
   653
                       \polymorphic axioms.")
blanchet@35666
   654
            else
blanchet@35666
   655
              ();
blanchet@35666
   656
            NONE)
blanchet@35666
   657
         else
blanchet@35666
   658
           if not genuine then
blanchet@35666
   659
             (Unsynchronized.inc met_potential;
blanchet@35666
   660
              if check_potential then
blanchet@35666
   661
                let
blanchet@35666
   662
                  val status = prove_hol_model scope tac_timeout free_names
blanchet@35666
   663
                                              sel_names rel_table bounds assms_t
blanchet@35666
   664
                in
blanchet@35666
   665
                  (case status of
blanchet@35666
   666
                     SOME true => print ("Confirmation by \"auto\": The \
blanchet@35666
   667
                                         \above " ^ das_wort_model ^
blanchet@35666
   668
                                         " is genuine.")
blanchet@35666
   669
                   | SOME false => print ("Refutation by \"auto\": The above " ^
blanchet@35666
   670
                                          das_wort_model ^ " is spurious.")
blanchet@35666
   671
                   | NONE => print "No confirmation by \"auto\".");
blanchet@35666
   672
                  status
blanchet@35666
   673
                end
blanchet@35666
   674
              else
blanchet@35666
   675
                NONE)
blanchet@33192
   676
           else
blanchet@35666
   677
             NONE)
blanchet@35666
   678
        |> pair genuine_means_genuine
blanchet@33192
   679
      end
blanchet@35666
   680
    fun solve_any_problem (found_really_genuine, max_potential, max_genuine,
blanchet@35666
   681
                           donno) first_time problems =
blanchet@33192
   682
      let
blanchet@33192
   683
        val max_potential = Int.max (0, max_potential)
blanchet@33192
   684
        val max_genuine = Int.max (0, max_genuine)
blanchet@33192
   685
        fun print_and_check genuine (j, bounds) =
blanchet@33192
   686
          print_and_check_model genuine bounds (snd (nth problems j))
blanchet@33192
   687
        val max_solutions = max_potential + max_genuine
blanchet@36384
   688
                            |> not incremental ? Integer.min 1
blanchet@33192
   689
      in
blanchet@33192
   690
        if max_solutions <= 0 then
blanchet@35666
   691
          (found_really_genuine, 0, 0, donno)
blanchet@33192
   692
        else
blanchet@34123
   693
          case KK.solve_any_problem overlord deadline max_threads max_solutions
blanchet@34123
   694
                                    (map fst problems) of
blanchet@35696
   695
            KK.JavaNotInstalled =>
blanchet@35696
   696
            (print_m install_java_message;
blanchet@35696
   697
             (found_really_genuine, max_potential, max_genuine, donno + 1))
blanchet@35696
   698
          | KK.KodkodiNotInstalled =>
blanchet@33559
   699
            (print_m install_kodkodi_message;
blanchet@35666
   700
             (found_really_genuine, max_potential, max_genuine, donno + 1))
blanchet@35333
   701
          | KK.Normal ([], unsat_js, s) =>
blanchet@35333
   702
            (update_checked_problems problems unsat_js; show_kodkod_warning s;
blanchet@35666
   703
             (found_really_genuine, max_potential, max_genuine, donno))
blanchet@35333
   704
          | KK.Normal (sat_ps, unsat_js, s) =>
blanchet@33192
   705
            let
blanchet@33192
   706
              val (lib_ps, con_ps) =
blanchet@35185
   707
                List.partition (#unsound o snd o nth problems o fst) sat_ps
blanchet@33192
   708
            in
blanchet@33192
   709
              update_checked_problems problems (unsat_js @ map fst lib_ps);
blanchet@35333
   710
              show_kodkod_warning s;
blanchet@33192
   711
              if null con_ps then
blanchet@33192
   712
                let
blanchet@35666
   713
                  val genuine_codes =
blanchet@35666
   714
                    lib_ps |> take max_potential
blanchet@35666
   715
                           |> map (print_and_check false)
blanchet@35666
   716
                           |> filter (curry (op =) (SOME true) o snd)
blanchet@35666
   717
                  val found_really_genuine =
blanchet@35666
   718
                    found_really_genuine orelse exists fst genuine_codes
blanchet@35666
   719
                  val num_genuine = length genuine_codes
blanchet@33192
   720
                  val max_genuine = max_genuine - num_genuine
blanchet@33192
   721
                  val max_potential = max_potential
blanchet@33192
   722
                                      - (length lib_ps - num_genuine)
blanchet@33192
   723
                in
blanchet@33192
   724
                  if max_genuine <= 0 then
blanchet@35666
   725
                    (found_really_genuine, 0, 0, donno)
blanchet@33192
   726
                  else
blanchet@33192
   727
                    let
blanchet@35185
   728
                      (* "co_js" is the list of sound problems whose unsound
blanchet@35185
   729
                         pendants couldn't be satisfied and hence that most
blanchet@35185
   730
                         probably can't be satisfied themselves. *)
blanchet@33192
   731
                      val co_js =
blanchet@33192
   732
                        map (fn j => j - 1) unsat_js
blanchet@33192
   733
                        |> filter (fn j =>
blanchet@33192
   734
                                      j >= 0 andalso
blanchet@33192
   735
                                      scopes_equivalent
blanchet@35814
   736
                                          (#scope (snd (nth problems j)),
blanchet@35814
   737
                                           #scope (snd (nth problems (j + 1)))))
blanchet@33192
   738
                      val bye_js = sort_distinct int_ord (map fst sat_ps @
blanchet@33192
   739
                                                          unsat_js @ co_js)
blanchet@33192
   740
                      val problems =
blanchet@33192
   741
                        problems |> filter_out_indices bye_js
blanchet@33192
   742
                                 |> max_potential <= 0
blanchet@35185
   743
                                    ? filter_out (#unsound o snd)
blanchet@33192
   744
                    in
blanchet@35666
   745
                      solve_any_problem (found_really_genuine, max_potential,
blanchet@35666
   746
                                         max_genuine, donno) false problems
blanchet@33192
   747
                    end
blanchet@33192
   748
                end
blanchet@33192
   749
              else
blanchet@33192
   750
                let
blanchet@35666
   751
                  val genuine_codes =
blanchet@35666
   752
                    con_ps |> take max_genuine
blanchet@35666
   753
                           |> map (print_and_check true)
blanchet@35666
   754
                  val max_genuine = max_genuine - length genuine_codes
blanchet@35666
   755
                  val found_really_genuine =
blanchet@35666
   756
                    found_really_genuine orelse exists fst genuine_codes
blanchet@33192
   757
                in
blanchet@33192
   758
                  if max_genuine <= 0 orelse not first_time then
blanchet@35666
   759
                    (found_really_genuine, 0, max_genuine, donno)
blanchet@33192
   760
                  else
blanchet@33192
   761
                    let
blanchet@33192
   762
                      val bye_js = sort_distinct int_ord
blanchet@33192
   763
                                                 (map fst sat_ps @ unsat_js)
blanchet@33192
   764
                      val problems =
blanchet@33192
   765
                        problems |> filter_out_indices bye_js
blanchet@35185
   766
                                 |> filter_out (#unsound o snd)
blanchet@35666
   767
                    in
blanchet@35666
   768
                      solve_any_problem (found_really_genuine, 0, max_genuine,
blanchet@35666
   769
                                         donno) false problems
blanchet@35666
   770
                    end
blanchet@33192
   771
                end
blanchet@33192
   772
            end
blanchet@34123
   773
          | KK.TimedOut unsat_js =>
blanchet@33192
   774
            (update_checked_problems problems unsat_js; raise TimeLimit.TimeOut)
blanchet@34123
   775
          | KK.Interrupted NONE => (checked_problems := NONE; do_interrupted ())
blanchet@34123
   776
          | KK.Interrupted (SOME unsat_js) =>
blanchet@33192
   777
            (update_checked_problems problems unsat_js; do_interrupted ())
blanchet@34123
   778
          | KK.Error (s, unsat_js) =>
blanchet@33192
   779
            (update_checked_problems problems unsat_js;
blanchet@33192
   780
             print_v (K ("Kodkod error: " ^ s ^ "."));
blanchet@35666
   781
             (found_really_genuine, max_potential, max_genuine, donno + 1))
blanchet@33192
   782
      end
blanchet@33192
   783
blanchet@35666
   784
    fun run_batch j n scopes (found_really_genuine, max_potential, max_genuine,
blanchet@35666
   785
                              donno) =
blanchet@33192
   786
      let
blanchet@33192
   787
        val _ =
blanchet@33192
   788
          if null scopes then
blanchet@33192
   789
            print_m (K "The scope specification is inconsistent.")
blanchet@33192
   790
          else if verbose then
blanchet@33192
   791
            pprint (Pretty.chunks
blanchet@33192
   792
                [Pretty.blk (0,
blanchet@33192
   793
                     pstrs ((if n > 1 then
blanchet@33192
   794
                               "Batch " ^ string_of_int (j + 1) ^ " of " ^
blanchet@33192
   795
                               signed_string_of_int n ^ ": "
blanchet@33192
   796
                             else
blanchet@33192
   797
                               "") ^
blanchet@33192
   798
                            "Trying " ^ string_of_int (length scopes) ^
blanchet@33192
   799
                            " scope" ^ plural_s_for_list scopes ^ ":")),
blanchet@33192
   800
                 Pretty.indent indent_size
blanchet@33192
   801
                     (Pretty.chunks (map2
blanchet@33192
   802
                          (fn j => fn scope =>
blanchet@33192
   803
                              Pretty.block (
blanchet@33192
   804
                                  (case pretties_for_scope scope true of
blanchet@33192
   805
                                     [] => [Pretty.str "Empty"]
blanchet@33192
   806
                                   | pretties => pretties) @
blanchet@33192
   807
                                  [Pretty.str (if j = 1 then "." else ";")]))
blanchet@33192
   808
                          (length scopes downto 1) scopes))])
blanchet@33192
   809
          else
blanchet@33192
   810
            ()
blanchet@35280
   811
        fun add_problem_for_scope (scope, unsound) (problems, donno) =
blanchet@33192
   812
          (check_deadline ();
blanchet@35185
   813
           case problem_for_scope unsound scope of
blanchet@33192
   814
             SOME problem =>
blanchet@33192
   815
             (problems
blanchet@33192
   816
              |> (null problems orelse
blanchet@35814
   817
                  not (KK.problems_equivalent (fst problem, fst (hd problems))))
blanchet@33192
   818
                  ? cons problem, donno)
blanchet@33192
   819
           | NONE => (problems, donno + 1))
blanchet@33192
   820
        val (problems, donno) =
blanchet@33192
   821
          fold add_problem_for_scope
blanchet@33192
   822
               (map_product pair scopes
blanchet@33192
   823
                    ((if max_genuine > 0 then [false] else []) @
blanchet@33192
   824
                     (if max_potential > 0 then [true] else [])))
blanchet@33192
   825
               ([], donno)
blanchet@33192
   826
        val _ = Unsynchronized.change generated_problems (append problems)
blanchet@33192
   827
        val _ = Unsynchronized.change generated_scopes (append scopes)
blanchet@35185
   828
        val _ =
blanchet@35185
   829
          if j + 1 = n then
blanchet@35185
   830
            let
blanchet@35185
   831
              val (unsound_problems, sound_problems) =
blanchet@35185
   832
                List.partition (#unsound o snd) (!generated_problems)
blanchet@35185
   833
            in
blanchet@35185
   834
              if not (null sound_problems) andalso
blanchet@35185
   835
                 forall (KK.is_problem_trivially_false o fst)
blanchet@35185
   836
                        sound_problems then
blanchet@35185
   837
                print_m (fn () =>
blanchet@35220
   838
                    "Warning: The conjecture either trivially holds for the \
blanchet@35384
   839
                    \given scopes or lies outside Nitpick's supported \
blanchet@35384
   840
                    \fragment." ^
blanchet@35185
   841
                    (if exists (not o KK.is_problem_trivially_false o fst)
blanchet@35185
   842
                               unsound_problems then
blanchet@36905
   843
                       " Only potential " ^ das_wort_model ^ "s may be found."
blanchet@35185
   844
                     else
blanchet@35185
   845
                       ""))
blanchet@35185
   846
              else
blanchet@35185
   847
                ()
blanchet@35185
   848
            end
blanchet@35185
   849
          else
blanchet@35185
   850
            ()
blanchet@33192
   851
      in
blanchet@35666
   852
        solve_any_problem (found_really_genuine, max_potential, max_genuine,
blanchet@35666
   853
                           donno) true (rev problems)
blanchet@33192
   854
      end
blanchet@33192
   855
blanchet@33192
   856
    fun scope_count (problems : rich_problem list) scope =
blanchet@35814
   857
      length (filter (curry scopes_equivalent scope o #scope o snd) problems)
blanchet@33192
   858
    fun excipit did_so_and_so =
blanchet@33192
   859
      let
blanchet@33192
   860
        val do_filter =
blanchet@35185
   861
          if !met_potential = max_potential then filter_out (#unsound o snd)
blanchet@33192
   862
          else I
blanchet@33192
   863
        val total = length (!scopes)
blanchet@33192
   864
        val unsat =
blanchet@33192
   865
          fold (fn scope =>
blanchet@33192
   866
                   case scope_count (do_filter (!generated_problems)) scope of
blanchet@33192
   867
                     0 => I
blanchet@33192
   868
                   | n =>
blanchet@33547
   869
                     scope_count (do_filter (these (!checked_problems)))
blanchet@33547
   870
                                 scope = n
blanchet@33547
   871
                     ? Integer.add 1) (!generated_scopes) 0
blanchet@33192
   872
      in
blanchet@33192
   873
        "Nitpick " ^ did_so_and_so ^
blanchet@33192
   874
        (if is_some (!checked_problems) andalso total > 0 then
blanchet@35696
   875
           " " ^ string_of_int (Int.min (total - 1, unsat)) ^ " of " ^
blanchet@33192
   876
           string_of_int total ^ " scope" ^ plural_s total
blanchet@33192
   877
         else
blanchet@33192
   878
           "") ^ "."
blanchet@33192
   879
      end
blanchet@33192
   880
blanchet@35666
   881
    fun run_batches _ _ []
blanchet@35666
   882
                    (found_really_genuine, max_potential, max_genuine, donno) =
blanchet@33192
   883
        if donno > 0 andalso max_genuine > 0 then
blanchet@35696
   884
          (print_m (fn () => excipit "checked"); "unknown")
blanchet@33192
   885
        else if max_genuine = original_max_genuine then
blanchet@33192
   886
          if max_potential = original_max_potential then
blanchet@34969
   887
            (print_m (fn () =>
blanchet@34969
   888
                 "Nitpick found no " ^ das_wort_model ^ "." ^
blanchet@35183
   889
                 (if not standard andalso likely_in_struct_induct_step then
blanchet@34969
   890
                    " This suggests that the induction hypothesis might be \
blanchet@34969
   891
                    \general enough to prove this subgoal."
blanchet@34969
   892
                  else
blanchet@34969
   893
                    "")); "none")
blanchet@33192
   894
          else
blanchet@34969
   895
            (print_m (fn () =>
blanchet@34969
   896
                 "Nitpick could not find a" ^
blanchet@34969
   897
                 (if max_genuine = 1 then " better " ^ das_wort_model ^ "."
blanchet@34969
   898
                  else "ny better " ^ das_wort_model ^ "s.")); "potential")
blanchet@35666
   899
        else if found_really_genuine then
blanchet@35666
   900
          "genuine"
blanchet@33192
   901
        else
blanchet@35666
   902
          "quasi_genuine"
blanchet@33192
   903
      | run_batches j n (batch :: batches) z =
blanchet@35666
   904
        let val (z as (_, _, max_genuine, _)) = run_batch j n batch z in
blanchet@33192
   905
          run_batches (j + 1) n (if max_genuine > 0 then batches else []) z
blanchet@33192
   906
        end
blanchet@33192
   907
blanchet@33571
   908
    val (skipped, the_scopes) =
blanchet@36386
   909
      all_scopes hol_ctxt binarize cards_assigns maxes_assigns iters_assigns
blanchet@36386
   910
                 bitss bisim_depths mono_Ts nonmono_Ts deep_dataTs
blanchet@35385
   911
                 finitizable_dataTs
blanchet@33571
   912
    val _ = if skipped > 0 then
blanchet@34121
   913
              print_m (fn () => "Too many scopes. Skipping " ^
blanchet@33571
   914
                                string_of_int skipped ^ " scope" ^
blanchet@33571
   915
                                plural_s skipped ^
blanchet@33571
   916
                                ". (Consider using \"mono\" or \
blanchet@33571
   917
                                \\"merge_type_vars\" to prevent this.)")
blanchet@33571
   918
            else
blanchet@33571
   919
              ()
blanchet@33571
   920
    val _ = scopes := the_scopes
blanchet@33571
   921
blanchet@33192
   922
    val batches = batch_list batch_size (!scopes)
blanchet@33192
   923
    val outcome_code =
blanchet@35666
   924
      (run_batches 0 (length batches) batches
blanchet@35666
   925
                   (false, max_potential, max_genuine, 0)
blanchet@33192
   926
       handle Exn.Interrupt => do_interrupted ())
blanchet@33192
   927
      handle TimeLimit.TimeOut =>
blanchet@35696
   928
             (print_m (fn () => excipit "ran out of time after checking");
blanchet@33192
   929
              if !met_potential > 0 then "potential" else "unknown")
blanchet@35696
   930
           | Exn.Interrupt =>
blanchet@35696
   931
             if auto orelse debug then raise Interrupt
blanchet@35696
   932
             else error (excipit "was interrupted after checking")
blanchet@33192
   933
    val _ = print_v (fn () => "Total time: " ^
blanchet@33192
   934
                              signed_string_of_int (Time.toMilliseconds
blanchet@33192
   935
                                    (Timer.checkRealTimer timer)) ^ " ms.")
blanchet@33192
   936
  in (outcome_code, !state_ref) end
blanchet@33192
   937
  handle Exn.Interrupt =>
blanchet@33192
   938
         if auto orelse #debug params then
blanchet@33192
   939
           raise Interrupt
blanchet@33192
   940
         else
blanchet@33192
   941
           if passed_deadline deadline then
blanchet@33192
   942
             (priority "Nitpick ran out of time."; ("unknown", state))
blanchet@33192
   943
           else
blanchet@33192
   944
             error "Nitpick was interrupted."
blanchet@33192
   945
blanchet@34969
   946
fun pick_nits_in_term state (params as {debug, timeout, expect, ...}) auto i n
blanchet@35335
   947
                      step subst orig_assm_ts orig_t =
blanchet@37211
   948
  let
blanchet@37211
   949
    val warning_m = if auto then K () else warning
blanchet@37211
   950
    val unknown_outcome = ("unknown", state)
blanchet@37211
   951
  in
blanchet@37211
   952
    if getenv "KODKODI" = "" then
blanchet@37211
   953
      (warning_m (Pretty.string_of (plazy install_kodkodi_message));
blanchet@37211
   954
       unknown_outcome)
blanchet@37211
   955
    else
blanchet@37211
   956
      let
blanchet@37211
   957
        val deadline = Option.map (curry Time.+ (Time.now ())) timeout
blanchet@37211
   958
        val outcome as (outcome_code, _) =
blanchet@37211
   959
          time_limit (if debug then NONE else timeout)
blanchet@37211
   960
              (pick_them_nits_in_term deadline state params auto i n step subst
blanchet@37211
   961
                                      orig_assm_ts) orig_t
blanchet@37211
   962
          handle TOO_LARGE (_, details) =>
blanchet@37211
   963
                 (warning ("Limit reached: " ^ details ^ "."); unknown_outcome)
blanchet@37211
   964
               | TOO_SMALL (_, details) =>
blanchet@37211
   965
                 (warning ("Limit reached: " ^ details ^ "."); unknown_outcome)
blanchet@37211
   966
               | Kodkod.SYNTAX (_, details) =>
blanchet@37211
   967
                 (warning ("Ill-formed Kodkodi output: " ^ details ^ ".");
blanchet@37211
   968
                  unknown_outcome)
blanchet@37211
   969
      in
blanchet@37211
   970
        if expect = "" orelse outcome_code = expect then outcome
blanchet@37211
   971
        else error ("Unexpected outcome: " ^ quote outcome_code ^ ".")
blanchet@37211
   972
      end
blanchet@37211
   973
  end
blanchet@33192
   974
blanchet@35335
   975
fun is_fixed_equation fixes
blanchet@35335
   976
                      (Const (@{const_name "=="}, _) $ Free (s, _) $ Const _) =
blanchet@35335
   977
    member (op =) fixes s
blanchet@35335
   978
  | is_fixed_equation _ _ = false
blanchet@35335
   979
fun extract_fixed_frees ctxt (assms, t) =
blanchet@35335
   980
  let
blanchet@35335
   981
    val fixes = Variable.fixes_of ctxt |> map snd
blanchet@35335
   982
    val (subst, other_assms) =
blanchet@35335
   983
      List.partition (is_fixed_equation fixes) assms
blanchet@35335
   984
      |>> map Logic.dest_equals
blanchet@35335
   985
  in (subst, other_assms, subst_atomic subst t) end
blanchet@35335
   986
blanchet@34969
   987
fun pick_nits_in_subgoal state params auto i step =
blanchet@33192
   988
  let
blanchet@33192
   989
    val ctxt = Proof.context_of state
wenzelm@33292
   990
    val t = state |> Proof.raw_goal |> #goal |> prop_of
blanchet@33192
   991
  in
blanchet@34969
   992
    case Logic.count_prems t of
blanchet@34969
   993
      0 => (priority "No subgoal!"; ("none", state))
blanchet@34969
   994
    | n =>
blanchet@33192
   995
      let
blanchet@36406
   996
        val t = Logic.goal_params t i |> fst
blanchet@33192
   997
        val assms = map term_of (Assumption.all_assms_of ctxt)
blanchet@35335
   998
        val (subst, assms, t) = extract_fixed_frees ctxt (assms, t)
blanchet@35335
   999
      in pick_nits_in_term state params auto i n step subst assms t end
blanchet@33192
  1000
  end
blanchet@33192
  1001
blanchet@33192
  1002
end;