src/HOL/Tools/Nitpick/nitpick_isar.ML
author blanchet
Tue, 03 Aug 2010 14:49:02 +0200
changeset 38179 7207321df8af
parent 38127 9f9f696fc4e8
child 38180 7a88032f9265
permissions -rw-r--r--
make tracing monotonicity easier
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
33982
1ae222745c4a fixed paths in Nitpick's ML file headers
blanchet
parents: 33699
diff changeset
     1
(*  Title:      HOL/Tools/Nitpick/nitpick_isar.ML
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
     2
    Author:     Jasmin Blanchette, TU Muenchen
34982
7b8c366e34a2 added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
blanchet
parents: 34936
diff changeset
     3
    Copyright   2008, 2009, 2010
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
     4
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
     5
Adds the "nitpick" and "nitpick_params" commands to Isabelle/Isar's outer
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
     6
syntax.
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
     7
*)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
     8
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
     9
signature NITPICK_ISAR =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    10
sig
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    11
  type params = Nitpick.params
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    12
33561
ab01b72715ef introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents: 33556
diff changeset
    13
  val auto: bool Unsynchronized.ref
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    14
  val default_params : theory -> (string * string) list -> params
33561
ab01b72715ef introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents: 33556
diff changeset
    15
  val setup : theory -> theory
35866
513074557e06 move the Sledgehammer Isar commands together into one file;
blanchet
parents: 35665
diff changeset
    16
end;
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    17
33232
f93390060bbe internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
blanchet
parents: 33220
diff changeset
    18
structure Nitpick_Isar : NITPICK_ISAR =
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    19
struct
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    20
33232
f93390060bbe internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
blanchet
parents: 33220
diff changeset
    21
open Nitpick_Util
f93390060bbe internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
blanchet
parents: 33220
diff changeset
    22
open Nitpick_HOL
f93390060bbe internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
blanchet
parents: 33220
diff changeset
    23
open Nitpick_Rep
f93390060bbe internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
blanchet
parents: 33220
diff changeset
    24
open Nitpick_Nut
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    25
open Nitpick
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    26
33561
ab01b72715ef introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents: 33556
diff changeset
    27
val auto = Unsynchronized.ref false;
ab01b72715ef introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents: 33556
diff changeset
    28
33601
4608243edcfc plain add_preference, no setmp_CRITICAL required;
wenzelm
parents: 33599
diff changeset
    29
val _ =
4608243edcfc plain add_preference, no setmp_CRITICAL required;
wenzelm
parents: 33599
diff changeset
    30
  ProofGeneralPgip.add_preference Preferences.category_tracing
34982
7b8c366e34a2 added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
blanchet
parents: 34936
diff changeset
    31
      (Preferences.bool_pref auto "auto-nitpick"
7b8c366e34a2 added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
blanchet
parents: 34936
diff changeset
    32
           "Whether to run Nitpick automatically.")
33561
ab01b72715ef introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents: 33556
diff changeset
    33
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    34
type raw_param = string * string list
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    35
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    36
val default_default_params =
35964
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    37
  [("card", "1\<midarrow>8"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    38
   ("iter", "0,1,2,4,8,12,16,24"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    39
   ("bits", "1,2,3,4,6,8,10,12"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    40
   ("bisim_depth", "7"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    41
   ("box", "smart"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    42
   ("finitize", "smart"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    43
   ("mono", "smart"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    44
   ("std", "true"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    45
   ("wf", "smart"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    46
   ("sat_solver", "smart"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    47
   ("batch_size", "smart"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    48
   ("blocking", "true"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    49
   ("falsify", "true"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    50
   ("user_axioms", "smart"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    51
   ("assms", "true"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    52
   ("merge_type_vars", "false"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    53
   ("binary_ints", "smart"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    54
   ("destroy_constrs", "true"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    55
   ("specialize", "true"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    56
   ("star_linear_preds", "true"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    57
   ("fast_descrs", "true"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    58
   ("peephole_optim", "true"),
38127
9f9f696fc4e8 tweak datatype sym break code
blanchet
parents: 38124
diff changeset
    59
   ("datatype_sym_break", "5"),
9f9f696fc4e8 tweak datatype sym break code
blanchet
parents: 38124
diff changeset
    60
   ("kodkod_sym_break", "15"),
35964
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    61
   ("timeout", "30 s"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    62
   ("tac_timeout", "500 ms"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    63
   ("max_threads", "0"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    64
   ("debug", "false"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    65
   ("verbose", "false"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    66
   ("overlord", "false"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    67
   ("show_datatypes", "false"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    68
   ("show_consts", "false"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    69
   ("format", "1"),
37260
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 37213
diff changeset
    70
   ("atoms", ""),
35964
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    71
   ("max_potential", "1"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    72
   ("max_genuine", "1"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    73
   ("check_potential", "false"),
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    74
   ("check_genuine", "false")]
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    75
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    76
val negated_params =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    77
  [("dont_box", "box"),
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35280
diff changeset
    78
   ("dont_finitize", "finitize"),
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    79
   ("non_mono", "mono"),
34982
7b8c366e34a2 added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
blanchet
parents: 34936
diff changeset
    80
   ("non_std", "std"),
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    81
   ("non_wf", "wf"),
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    82
   ("non_blocking", "blocking"),
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    83
   ("satisfy", "falsify"),
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    84
   ("no_user_axioms", "user_axioms"),
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    85
   ("no_assms", "assms"),
33556
cba22e2999d5 renamed Nitpick option "coalesce_type_vars" to "merge_type_vars" (shorter) and cleaned up old hacks that are no longer necessary
blanchet
parents: 33232
diff changeset
    86
   ("dont_merge_type_vars", "merge_type_vars"),
34124
c4628a1dcf75 added support for binary nat/int representation to Nitpick
blanchet
parents: 34121
diff changeset
    87
   ("unary_ints", "binary_ints"),
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    88
   ("dont_destroy_constrs", "destroy_constrs"),
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    89
   ("dont_specialize", "specialize"),
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    90
   ("dont_star_linear_preds", "star_linear_preds"),
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    91
   ("full_descrs", "fast_descrs"),
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    92
   ("no_peephole_optim", "peephole_optim"),
35964
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
    93
   ("no_debug", "debug"),
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    94
   ("quiet", "verbose"),
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    95
   ("no_overlord", "overlord"),
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    96
   ("hide_datatypes", "show_datatypes"),
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    97
   ("hide_consts", "show_consts"),
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    98
   ("trust_potential", "check_potential"),
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    99
   ("trust_genuine", "check_genuine")]
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   100
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   101
fun is_known_raw_param s =
34936
c4f04bee79f3 some work on Nitpick's support for quotient types;
blanchet
parents: 34124
diff changeset
   102
  AList.defined (op =) default_default_params s orelse
c4f04bee79f3 some work on Nitpick's support for quotient types;
blanchet
parents: 34124
diff changeset
   103
  AList.defined (op =) negated_params s orelse
37260
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 37213
diff changeset
   104
  member (op =) ["max", "show_all", "eval", "expect"] s orelse
34936
c4f04bee79f3 some work on Nitpick's support for quotient types;
blanchet
parents: 34124
diff changeset
   105
  exists (fn p => String.isPrefix (p ^ " ") s)
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35280
diff changeset
   106
         ["card", "max", "iter", "box", "dont_box", "finitize", "dont_finitize",
37260
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 37213
diff changeset
   107
          "mono", "non_mono", "std", "non_std", "wf", "non_wf", "format",
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 37213
diff changeset
   108
          "atoms"]
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   109
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   110
fun check_raw_param (s, _) =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   111
  if is_known_raw_param s then ()
35964
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
   112
  else error ("Unknown parameter: " ^ quote s ^ ".")  
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   113
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   114
fun unnegate_param_name name =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   115
  case AList.lookup (op =) negated_params name of
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   116
    NONE => if String.isPrefix "dont_" name then SOME (unprefix "dont_" name)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   117
            else if String.isPrefix "non_" name then SOME (unprefix "non_" name)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   118
            else NONE
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   119
  | some_name => some_name
37169
f69efa106feb make Nitpick "show_all" option behave less surprisingly
blanchet
parents: 36960
diff changeset
   120
fun normalize_raw_param (name, value) =
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   121
  case unnegate_param_name name of
37169
f69efa106feb make Nitpick "show_all" option behave less surprisingly
blanchet
parents: 36960
diff changeset
   122
    SOME name' => [(name', case value of
f69efa106feb make Nitpick "show_all" option behave less surprisingly
blanchet
parents: 36960
diff changeset
   123
                             ["false"] => ["true"]
f69efa106feb make Nitpick "show_all" option behave less surprisingly
blanchet
parents: 36960
diff changeset
   124
                           | ["true"] => ["false"]
f69efa106feb make Nitpick "show_all" option behave less surprisingly
blanchet
parents: 36960
diff changeset
   125
                           | [] => ["false"]
f69efa106feb make Nitpick "show_all" option behave less surprisingly
blanchet
parents: 36960
diff changeset
   126
                           | _ => value)]
f69efa106feb make Nitpick "show_all" option behave less surprisingly
blanchet
parents: 36960
diff changeset
   127
  | NONE => if name = "show_all" then
f69efa106feb make Nitpick "show_all" option behave less surprisingly
blanchet
parents: 36960
diff changeset
   128
              [("show_datatypes", value), ("show_consts", value)]
f69efa106feb make Nitpick "show_all" option behave less surprisingly
blanchet
parents: 36960
diff changeset
   129
            else
f69efa106feb make Nitpick "show_all" option behave less surprisingly
blanchet
parents: 36960
diff changeset
   130
              [(name, value)]
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   131
33583
b5e0909cd5ea merged, and renamed local "TheoryData" to "Data" (following common Isabelle conventions)
blanchet
parents: 33522 33566
diff changeset
   132
structure Data = Theory_Data(
35964
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
   133
  type T = raw_param list
36391
8f81c060cf12 cosmetics
blanchet
parents: 36390
diff changeset
   134
  val empty = map (apsnd single) default_default_params
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   135
  val extend = I
36607
e5f7235f39c5 made sml/nj happy about Sledgehammer and Nitpick (cf. 6f11c9b1fb3e, 3c2438efe224)
krauss
parents: 36391
diff changeset
   136
  fun merge (x, y) = AList.merge (op =) (K true) (x, y))
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   137
37169
f69efa106feb make Nitpick "show_all" option behave less surprisingly
blanchet
parents: 36960
diff changeset
   138
val set_default_raw_param =
f69efa106feb make Nitpick "show_all" option behave less surprisingly
blanchet
parents: 36960
diff changeset
   139
  Data.map o fold (AList.update (op =)) o normalize_raw_param
35964
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
   140
val default_raw_params = Data.get
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   141
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   142
fun is_punctuation s = (s = "," orelse s = "-" orelse s = "\<midarrow>")
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   143
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   144
fun stringify_raw_param_value [] = ""
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   145
  | stringify_raw_param_value [s] = s
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   146
  | stringify_raw_param_value (s1 :: s2 :: ss) =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   147
    s1 ^ (if is_punctuation s1 orelse is_punctuation s2 then "" else " ") ^
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   148
    stringify_raw_param_value (s2 :: ss)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   149
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   150
fun maxed_int_from_string min_int s = Int.max (min_int, the (Int.fromString s))
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   151
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   152
fun extract_params ctxt auto default_params override_params =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   153
  let
37169
f69efa106feb make Nitpick "show_all" option behave less surprisingly
blanchet
parents: 36960
diff changeset
   154
    val override_params = maps normalize_raw_param override_params
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   155
    val raw_params = rev override_params @ rev default_params
37260
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 37213
diff changeset
   156
    val raw_lookup = AList.lookup (op =) raw_params
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 37213
diff changeset
   157
    val lookup = Option.map stringify_raw_param_value o raw_lookup
35964
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
   158
    val lookup_string = the_default "" o lookup
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
   159
    fun general_lookup_bool option default_value name =
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
   160
      case lookup name of
36380
1e8fcaccb3e8 stop referring to Sledgehammer_Util stuff all over Nitpick code; instead, redeclare any needed function in Nitpick_Util as synonym for the Sledgehammer_Util function of the same name
blanchet
parents: 35968
diff changeset
   161
        SOME s => parse_bool_option option name s
35964
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
   162
      | NONE => default_value
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
   163
    val lookup_bool = the o general_lookup_bool false (SOME false)
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
   164
    val lookup_bool_option = general_lookup_bool true NONE
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   165
    fun do_int name value =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   166
      case value of
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   167
        SOME s => (case Int.fromString s of
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   168
                     SOME i => i
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   169
                   | NONE => error ("Parameter " ^ quote name ^
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   170
                                    " must be assigned an integer value."))
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   171
      | NONE => 0
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   172
    fun lookup_int name = do_int name (lookup name)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   173
    fun lookup_int_option name =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   174
      case lookup name of
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   175
        SOME "smart" => NONE
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   176
      | value => SOME (do_int name value)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   177
    fun int_range_from_string name min_int s =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   178
      let
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   179
        val (k1, k2) =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   180
          (case space_explode "-" s of
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   181
             [s] => the_default (s, s) (first_field "\<midarrow>" s)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   182
           | ["", s2] => ("-" ^ s2, "-" ^ s2)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   183
           | [s1, s2] => (s1, s2)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   184
           | _ => raise Option)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   185
          |> pairself (maxed_int_from_string min_int)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   186
      in if k1 <= k2 then k1 upto k2 else k1 downto k2 end
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   187
      handle Option.Option =>
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   188
             error ("Parameter " ^ quote name ^
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   189
                    " must be assigned a sequence of integers.")
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   190
    fun int_seq_from_string name min_int s =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   191
      maps (int_range_from_string name min_int) (space_explode "," s)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   192
    fun lookup_int_seq name min_int =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   193
      case lookup name of
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   194
        SOME s => (case int_seq_from_string name min_int s of
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   195
                     [] => [min_int]
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   196
                   | value => value)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   197
      | NONE => [min_int]
37260
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 37213
diff changeset
   198
    fun lookup_assigns read prefix default convert =
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 37213
diff changeset
   199
      (NONE, convert (the_default default (lookup prefix)))
34982
7b8c366e34a2 added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
blanchet
parents: 34936
diff changeset
   200
      :: map (fn (name, value) =>
7b8c366e34a2 added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
blanchet
parents: 34936
diff changeset
   201
                 (SOME (read (String.extract (name, size prefix + 1, NONE))),
37260
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 37213
diff changeset
   202
                  convert (stringify_raw_param_value value)))
34982
7b8c366e34a2 added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
blanchet
parents: 34936
diff changeset
   203
             (filter (String.isPrefix (prefix ^ " ") o fst) raw_params)
37260
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 37213
diff changeset
   204
    fun lookup_ints_assigns read prefix min_int =
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 37213
diff changeset
   205
      lookup_assigns read prefix (signed_string_of_int min_int)
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 37213
diff changeset
   206
                     (int_seq_from_string prefix min_int)
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 37213
diff changeset
   207
    fun lookup_bool_assigns read prefix =
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 37213
diff changeset
   208
      lookup_assigns read prefix "" (the o parse_bool_option false prefix)
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   209
    fun lookup_bool_option_assigns read prefix =
37260
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 37213
diff changeset
   210
      lookup_assigns read prefix "" (parse_bool_option true prefix)
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 37213
diff changeset
   211
    fun lookup_strings_assigns read prefix =
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 37213
diff changeset
   212
      lookup_assigns read prefix "" (space_explode " ")
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   213
    fun lookup_time name =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   214
      case lookup name of
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   215
        NONE => NONE
36380
1e8fcaccb3e8 stop referring to Sledgehammer_Util stuff all over Nitpick code; instead, redeclare any needed function in Nitpick_Util as synonym for the Sledgehammer_Util function of the same name
blanchet
parents: 35968
diff changeset
   216
      | SOME s => parse_time_option name s
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   217
    val lookup_term_list =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   218
      AList.lookup (op =) raw_params #> these #> Syntax.read_terms ctxt
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   219
    val read_type_polymorphic =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   220
      Syntax.read_typ ctxt #> Logic.mk_type
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   221
      #> singleton (Variable.polymorphic ctxt) #> Logic.dest_type
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   222
    val read_term_polymorphic =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   223
      Syntax.read_term ctxt #> singleton (Variable.polymorphic ctxt)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   224
    val read_const_polymorphic = read_term_polymorphic #> dest_Const
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   225
    val cards_assigns = lookup_ints_assigns read_type_polymorphic "card" 1
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   226
    val maxes_assigns = lookup_ints_assigns read_const_polymorphic "max" ~1
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   227
    val iters_assigns = lookup_ints_assigns read_const_polymorphic "iter" 0
34124
c4628a1dcf75 added support for binary nat/int representation to Nitpick
blanchet
parents: 34121
diff changeset
   228
    val bitss = lookup_int_seq "bits" 1
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   229
    val bisim_depths = lookup_int_seq "bisim_depth" ~1
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35280
diff changeset
   230
    val boxes = lookup_bool_option_assigns read_type_polymorphic "box"
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35280
diff changeset
   231
    val finitizes = lookup_bool_option_assigns read_type_polymorphic "finitize"
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   232
    val monos = lookup_bool_option_assigns read_type_polymorphic "mono"
34982
7b8c366e34a2 added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
blanchet
parents: 34936
diff changeset
   233
    val stds = lookup_bool_assigns read_type_polymorphic "std"
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   234
    val wfs = lookup_bool_option_assigns read_const_polymorphic "wf"
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   235
    val sat_solver = lookup_string "sat_solver"
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   236
    val blocking = not auto andalso lookup_bool "blocking"
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   237
    val falsify = lookup_bool "falsify"
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   238
    val debug = not auto andalso lookup_bool "debug"
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   239
    val verbose = debug orelse (not auto andalso lookup_bool "verbose")
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   240
    val overlord = lookup_bool "overlord"
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   241
    val user_axioms = lookup_bool_option "user_axioms"
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   242
    val assms = lookup_bool "assms"
33556
cba22e2999d5 renamed Nitpick option "coalesce_type_vars" to "merge_type_vars" (shorter) and cleaned up old hacks that are no longer necessary
blanchet
parents: 33232
diff changeset
   243
    val merge_type_vars = lookup_bool "merge_type_vars"
34124
c4628a1dcf75 added support for binary nat/int representation to Nitpick
blanchet
parents: 34121
diff changeset
   244
    val binary_ints = lookup_bool_option "binary_ints"
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   245
    val destroy_constrs = lookup_bool "destroy_constrs"
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   246
    val specialize = lookup_bool "specialize"
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   247
    val star_linear_preds = lookup_bool "star_linear_preds"
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   248
    val fast_descrs = lookup_bool "fast_descrs"
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   249
    val peephole_optim = lookup_bool "peephole_optim"
38124
6538e25cf5dd started implementation of custom sym break
blanchet
parents: 37260
diff changeset
   250
    val datatype_sym_break = lookup_int "datatype_sym_break"
6538e25cf5dd started implementation of custom sym break
blanchet
parents: 37260
diff changeset
   251
    val kodkod_sym_break = lookup_int "kodkod_sym_break"
33561
ab01b72715ef introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents: 33556
diff changeset
   252
    val timeout = if auto then NONE else lookup_time "timeout"
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   253
    val tac_timeout = lookup_time "tac_timeout"
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   254
    val max_threads = Int.max (0, lookup_int "max_threads")
37169
f69efa106feb make Nitpick "show_all" option behave less surprisingly
blanchet
parents: 36960
diff changeset
   255
    val show_datatypes = debug orelse lookup_bool "show_datatypes"
f69efa106feb make Nitpick "show_all" option behave less surprisingly
blanchet
parents: 36960
diff changeset
   256
    val show_consts = debug orelse lookup_bool "show_consts"
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   257
    val formats = lookup_ints_assigns read_term_polymorphic "format" 0
37260
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 37213
diff changeset
   258
    val atomss = lookup_strings_assigns read_type_polymorphic "atoms"
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   259
    val evals = lookup_term_list "eval"
33561
ab01b72715ef introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents: 33556
diff changeset
   260
    val max_potential =
ab01b72715ef introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents: 33556
diff changeset
   261
      if auto then 0 else Int.max (0, lookup_int "max_potential")
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   262
    val max_genuine = Int.max (0, lookup_int "max_genuine")
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   263
    val check_potential = lookup_bool "check_potential"
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   264
    val check_genuine = lookup_bool "check_genuine"
36390
eee4ee6a5cbe remove "show_skolems" option and change style of record declarations
blanchet
parents: 36389
diff changeset
   265
    val batch_size =
eee4ee6a5cbe remove "show_skolems" option and change style of record declarations
blanchet
parents: 36389
diff changeset
   266
      case lookup_int_option "batch_size" of
eee4ee6a5cbe remove "show_skolems" option and change style of record declarations
blanchet
parents: 36389
diff changeset
   267
        SOME n => Int.max (1, n)
eee4ee6a5cbe remove "show_skolems" option and change style of record declarations
blanchet
parents: 36389
diff changeset
   268
      | NONE => if debug then 1 else 64
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   269
    val expect = lookup_string "expect"
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   270
  in
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   271
    {cards_assigns = cards_assigns, maxes_assigns = maxes_assigns,
34124
c4628a1dcf75 added support for binary nat/int representation to Nitpick
blanchet
parents: 34121
diff changeset
   272
     iters_assigns = iters_assigns, bitss = bitss, bisim_depths = bisim_depths,
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35280
diff changeset
   273
     boxes = boxes, finitizes = finitizes, monos = monos, stds = stds,
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35280
diff changeset
   274
     wfs = wfs, sat_solver = sat_solver, blocking = blocking, falsify = falsify,
34982
7b8c366e34a2 added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
blanchet
parents: 34936
diff changeset
   275
     debug = debug, verbose = verbose, overlord = overlord,
7b8c366e34a2 added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
blanchet
parents: 34936
diff changeset
   276
     user_axioms = user_axioms, assms = assms,
34124
c4628a1dcf75 added support for binary nat/int representation to Nitpick
blanchet
parents: 34121
diff changeset
   277
     merge_type_vars = merge_type_vars, binary_ints = binary_ints,
c4628a1dcf75 added support for binary nat/int representation to Nitpick
blanchet
parents: 34121
diff changeset
   278
     destroy_constrs = destroy_constrs, specialize = specialize,
36389
8228b3a4a2ba remove "skolemize" option from Nitpick, since Skolemization is always useful
blanchet
parents: 36388
diff changeset
   279
     star_linear_preds = star_linear_preds, fast_descrs = fast_descrs,
38124
6538e25cf5dd started implementation of custom sym break
blanchet
parents: 37260
diff changeset
   280
     peephole_optim = peephole_optim, datatype_sym_break = datatype_sym_break,
6538e25cf5dd started implementation of custom sym break
blanchet
parents: 37260
diff changeset
   281
     kodkod_sym_break = kodkod_sym_break, timeout = timeout,
36389
8228b3a4a2ba remove "skolemize" option from Nitpick, since Skolemization is always useful
blanchet
parents: 36388
diff changeset
   282
     tac_timeout = tac_timeout, max_threads = max_threads,
36390
eee4ee6a5cbe remove "show_skolems" option and change style of record declarations
blanchet
parents: 36389
diff changeset
   283
     show_datatypes = show_datatypes, show_consts = show_consts,
37260
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 37213
diff changeset
   284
     formats = formats, atomss = atomss, evals = evals,
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 37213
diff changeset
   285
     max_potential = max_potential, max_genuine = max_genuine,
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 37213
diff changeset
   286
     check_potential = check_potential, check_genuine = check_genuine,
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 37213
diff changeset
   287
     batch_size = batch_size, expect = expect}
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   288
  end
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   289
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   290
fun default_params thy =
36610
bafd82950e24 renamed ProofContext.init to ProofContext.init_global to emphasize that this is not the real thing;
wenzelm
parents: 36607
diff changeset
   291
  extract_params (ProofContext.init_global thy) false (default_raw_params thy)
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   292
  o map (apsnd single)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   293
36960
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36610
diff changeset
   294
val parse_key = Scan.repeat1 Parse.typ_group >> space_implode " "
35964
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
   295
val parse_value =
36960
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36610
diff changeset
   296
  Scan.repeat1 (Parse.minus >> single
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36610
diff changeset
   297
                || Scan.repeat1 (Scan.unless Parse.minus Parse.name)
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36610
diff changeset
   298
                || Parse.$$$ "," |-- Parse.number >> prefix "," >> single) >> flat
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36610
diff changeset
   299
val parse_param = parse_key -- Scan.optional (Parse.$$$ "=" |-- parse_value) []
35968
b7f98ff9c7d9 simplify Nitpick parameter parsing code a little bit + make compile
blanchet
parents: 35964
diff changeset
   300
val parse_params =
36960
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36610
diff changeset
   301
  Scan.optional (Parse.$$$ "[" |-- Parse.list parse_param --| Parse.$$$ "]") []
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   302
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   303
fun handle_exceptions ctxt f x =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   304
  f x
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   305
  handle ARG (loc, details) =>
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   306
         error ("Bad argument(s) to " ^ quote loc ^ ": " ^ details ^ ".")
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   307
       | BAD (loc, details) =>
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   308
         error ("Internal error (" ^ quote loc ^ "): " ^ details ^ ".")
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   309
       | NOT_SUPPORTED details =>
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   310
         (warning ("Unsupported case: " ^ details ^ "."); x)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   311
       | NUT (loc, us) =>
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   312
         error ("Invalid intermediate term" ^ plural_s_for_list us ^
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   313
                " (" ^ quote loc ^ "): " ^
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   314
                commas (map (string_for_nut ctxt) us) ^ ".")
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   315
       | REP (loc, Rs) =>
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   316
         error ("Invalid representation" ^ plural_s_for_list Rs ^
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   317
                " (" ^ quote loc ^ "): " ^ commas (map string_for_rep Rs) ^ ".")
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   318
       | TERM (loc, ts) =>
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   319
         error ("Invalid term" ^ plural_s_for_list ts ^
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   320
                " (" ^ quote loc ^ "): " ^
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   321
                commas (map (Syntax.string_of_term ctxt) ts) ^ ".")
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   322
       | TYPE (loc, Ts, ts) =>
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   323
         error ("Invalid type" ^ plural_s_for_list Ts ^
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   324
                (if null ts then
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   325
                   ""
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   326
                 else
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   327
                   " for term" ^ plural_s_for_list ts ^ " " ^
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   328
                   commas (map (quote o Syntax.string_of_term ctxt) ts)) ^
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   329
                " (" ^ quote loc ^ "): " ^
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   330
                commas (map (Syntax.string_of_typ ctxt) Ts) ^ ".")
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   331
       | Refute.REFUTE (loc, details) =>
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   332
         error ("Unhandled Refute error (" ^ quote loc ^ "): " ^ details ^ ".")
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   333
34982
7b8c366e34a2 added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
blanchet
parents: 34936
diff changeset
   334
fun pick_nits override_params auto i step state =
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   335
  let
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   336
    val thy = Proof.theory_of state
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   337
    val ctxt = Proof.context_of state
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   338
    val _ = List.app check_raw_param override_params
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   339
    val params as {blocking, debug, ...} =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   340
      extract_params ctxt auto (default_raw_params thy) override_params
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   341
    fun go () =
33561
ab01b72715ef introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents: 33556
diff changeset
   342
      (false, state)
ab01b72715ef introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents: 33556
diff changeset
   343
      |> (if auto then perhaps o try
ab01b72715ef introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents: 33556
diff changeset
   344
          else if debug then fn f => fn x => f x
ab01b72715ef introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents: 33556
diff changeset
   345
          else handle_exceptions ctxt)
34982
7b8c366e34a2 added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
blanchet
parents: 34936
diff changeset
   346
         (fn (_, state) => pick_nits_in_subgoal state params auto i step
34121
5e831d805118 get rid of polymorphic equality in Nitpick's code + a few minor cleanups
blanchet
parents: 33982
diff changeset
   347
                           |>> curry (op =) "genuine")
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   348
  in
33561
ab01b72715ef introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents: 33556
diff changeset
   349
    if auto orelse blocking then go ()
33604
d4220df6fde2 Toplevel.thread provides Isar-style exception output;
wenzelm
parents: 33601
diff changeset
   350
    else (Toplevel.thread true (fn () => (go (); ())); (false, state))
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   351
  end
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   352
35968
b7f98ff9c7d9 simplify Nitpick parameter parsing code a little bit + make compile
blanchet
parents: 35964
diff changeset
   353
fun nitpick_trans (params, i) =
34982
7b8c366e34a2 added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
blanchet
parents: 34936
diff changeset
   354
  Toplevel.keep (fn st =>
35968
b7f98ff9c7d9 simplify Nitpick parameter parsing code a little bit + make compile
blanchet
parents: 35964
diff changeset
   355
      (pick_nits params false i (Toplevel.proof_position_of st)
b7f98ff9c7d9 simplify Nitpick parameter parsing code a little bit + make compile
blanchet
parents: 35964
diff changeset
   356
                 (Toplevel.proof_of st); ()))
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   357
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   358
fun string_for_raw_param (name, value) =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   359
  name ^ " = " ^ stringify_raw_param_value value
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   360
35968
b7f98ff9c7d9 simplify Nitpick parameter parsing code a little bit + make compile
blanchet
parents: 35964
diff changeset
   361
fun nitpick_params_trans params =
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   362
  Toplevel.theory
35968
b7f98ff9c7d9 simplify Nitpick parameter parsing code a little bit + make compile
blanchet
parents: 35964
diff changeset
   363
      (fold set_default_raw_param params
33561
ab01b72715ef introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents: 33556
diff changeset
   364
       #> tap (fn thy => 
ab01b72715ef introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents: 33556
diff changeset
   365
                  writeln ("Default parameters for Nitpick:\n" ^
ab01b72715ef introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents: 33556
diff changeset
   366
                           (case rev (default_raw_params thy) of
ab01b72715ef introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents: 33556
diff changeset
   367
                              [] => "none"
ab01b72715ef introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents: 33556
diff changeset
   368
                            | params =>
ab01b72715ef introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents: 33556
diff changeset
   369
                              (map check_raw_param params;
ab01b72715ef introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents: 33556
diff changeset
   370
                               params |> map string_for_raw_param
ab01b72715ef introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents: 33556
diff changeset
   371
                                      |> sort_strings |> cat_lines)))))
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   372
35964
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
   373
val parse_nitpick_command =
36960
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36610
diff changeset
   374
  (parse_params -- Scan.optional Parse.nat 1) #>> nitpick_trans
35964
77f2cb359b49 leverage code now in Sledgehammer
blanchet
parents: 35866
diff changeset
   375
val parse_nitpick_params_command = parse_params #>> nitpick_params_trans
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   376
36960
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36610
diff changeset
   377
val _ = Outer_Syntax.improper_command "nitpick"
36390
eee4ee6a5cbe remove "show_skolems" option and change style of record declarations
blanchet
parents: 36389
diff changeset
   378
            "try to find a counterexample for a given subgoal using Nitpick"
36960
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36610
diff changeset
   379
            Keyword.diag parse_nitpick_command
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36610
diff changeset
   380
val _ = Outer_Syntax.command "nitpick_params"
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   381
            "set and display the default parameters for Nitpick"
36960
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36610
diff changeset
   382
            Keyword.thy_decl parse_nitpick_params_command
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   383
33561
ab01b72715ef introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents: 33556
diff changeset
   384
fun auto_nitpick state =
34982
7b8c366e34a2 added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
blanchet
parents: 34936
diff changeset
   385
  if not (!auto) then (false, state) else pick_nits [] true 1 0 state
33561
ab01b72715ef introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents: 33556
diff changeset
   386
ab01b72715ef introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents: 33556
diff changeset
   387
val setup = Auto_Counterexample.register_tool ("nitpick", auto_nitpick)
ab01b72715ef introduced Auto Nitpick in addition to Auto Quickcheck;
blanchet
parents: 33556
diff changeset
   388
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   389
end;