src/Tools/quickcheck.ML
author blanchet
Fri, 18 Dec 2009 14:02:58 +0100
changeset 34125 8650a073dd9b
parent 33574 b5e0909cd5ea
child 34935 2d5f2a9f7601
permissions -rw-r--r--
made Quickcheck take structured proof assumptions into account (like Refute and Nitpick) by default;
up to now, only Auto Quickcheck did -- the old behavior is available by passing "no_assms" as option
wenzelm@30826
     1
(*  Title:      Tools/quickcheck.ML
haftmann@28256
     2
    Author:     Stefan Berghofer, Florian Haftmann, TU Muenchen
haftmann@28256
     3
haftmann@28256
     4
Generic counterexample search engine.
haftmann@28256
     5
*)
haftmann@28256
     6
haftmann@28256
     7
signature QUICKCHECK =
haftmann@28256
     8
sig
wenzelm@32740
     9
  val auto: bool Unsynchronized.ref
wenzelm@30981
    10
  val test_term: Proof.context -> bool -> string option -> int -> int -> term ->
wenzelm@30981
    11
    (string * term) list option
wenzelm@30981
    12
  val add_generator: string * (Proof.context -> term -> int -> term list option) -> theory -> theory
blanchet@33552
    13
  val setup: theory -> theory
boehmes@32295
    14
  val quickcheck: (string * string) list -> int -> Proof.state -> (string * term) list option
haftmann@28256
    15
end;
haftmann@28256
    16
haftmann@28256
    17
structure Quickcheck : QUICKCHECK =
haftmann@28256
    18
struct
haftmann@28256
    19
wenzelm@30981
    20
(* preferences *)
wenzelm@30981
    21
wenzelm@32740
    22
val auto = Unsynchronized.ref false;
wenzelm@30981
    23
wenzelm@30981
    24
val _ =
wenzelm@30981
    25
  ProofGeneralPgip.add_preference Preferences.category_tracing
wenzelm@32966
    26
  (setmp_CRITICAL auto true (fn () =>
wenzelm@30981
    27
    Preferences.bool_pref auto
wenzelm@30981
    28
      "auto-quickcheck"
blanchet@33552
    29
      "Whether to run Quickcheck automatically.") ());
wenzelm@30981
    30
haftmann@30973
    31
haftmann@28315
    32
(* quickcheck configuration -- default parameters, test generators *)
haftmann@28315
    33
haftmann@28309
    34
datatype test_params = Test_Params of
blanchet@34125
    35
  { size: int, iterations: int, default_type: typ option, no_assms: bool };
haftmann@28309
    36
blanchet@34125
    37
fun dest_test_params (Test_Params { size, iterations, default_type, no_assms }) =
blanchet@34125
    38
  ((size, iterations), (default_type, no_assms));
blanchet@34125
    39
fun make_test_params ((size, iterations), (default_type, no_assms)) =
blanchet@34125
    40
  Test_Params { size = size, iterations = iterations, default_type = default_type,
blanchet@34125
    41
                no_assms = no_assms };
blanchet@34125
    42
fun map_test_params f (Test_Params { size, iterations, default_type, no_assms }) =
blanchet@34125
    43
  make_test_params (f ((size, iterations), (default_type, no_assms)));
blanchet@34125
    44
fun merge_test_params (Test_Params { size = size1, iterations = iterations1, default_type = default_type1,
blanchet@34125
    45
                                     no_assms = no_assms1 },
blanchet@34125
    46
  Test_Params { size = size2, iterations = iterations2, default_type = default_type2,
blanchet@34125
    47
                no_assms = no_assms2 }) =
haftmann@31599
    48
  make_test_params ((Int.max (size1, size2), Int.max (iterations1, iterations2)),
blanchet@34125
    49
    (case default_type1 of NONE => default_type2 | _ => default_type1, no_assms1 orelse no_assms2));
haftmann@28309
    50
wenzelm@33522
    51
structure Data = Theory_Data
wenzelm@33522
    52
(
haftmann@28309
    53
  type T = (string * (Proof.context -> term -> int -> term list option)) list
haftmann@28309
    54
    * test_params;
blanchet@34125
    55
  val empty = ([], Test_Params { size = 10, iterations = 100, default_type = NONE, no_assms = false });
haftmann@28256
    56
  val extend = I;
wenzelm@33522
    57
  fun merge ((generators1, params1), (generators2, params2)) : T =
wenzelm@33522
    58
    (AList.merge (op =) (K true) (generators1, generators2),
haftmann@28309
    59
      merge_test_params (params1, params2));
wenzelm@33522
    60
);
haftmann@28256
    61
haftmann@28309
    62
val add_generator = Data.map o apfst o AList.update (op =);
haftmann@28256
    63
haftmann@28315
    64
haftmann@28315
    65
(* generating tests *)
haftmann@28315
    66
haftmann@28309
    67
fun mk_tester_select name ctxt =
haftmann@28309
    68
  case AList.lookup (op =) ((fst o Data.get o ProofContext.theory_of) ctxt) name
haftmann@28309
    69
   of NONE => error ("No such quickcheck generator: " ^ name)
haftmann@28309
    70
    | SOME generator => generator ctxt;
haftmann@28256
    71
haftmann@28309
    72
fun mk_testers ctxt t =
haftmann@28309
    73
  (map snd o fst o Data.get o ProofContext.theory_of) ctxt
haftmann@28309
    74
  |> map_filter (fn generator => try (generator ctxt) t);
haftmann@28256
    75
haftmann@28309
    76
fun mk_testers_strict ctxt t =
haftmann@28309
    77
  let
haftmann@28309
    78
    val generators = ((map snd o fst o Data.get o ProofContext.theory_of) ctxt)
haftmann@28309
    79
    val testers = map (fn generator => Exn.capture (generator ctxt) t) generators;
haftmann@28309
    80
  in if forall (is_none o Exn.get_result) testers
haftmann@28309
    81
    then [(Exn.release o snd o split_last) testers]
haftmann@28309
    82
    else map_filter Exn.get_result testers
haftmann@28309
    83
  end;
haftmann@28309
    84
haftmann@28315
    85
haftmann@28315
    86
(* testing propositions *)
haftmann@28315
    87
haftmann@28309
    88
fun prep_test_term t =
haftmann@28309
    89
  let
wenzelm@29266
    90
    val _ = (null (Term.add_tvars t []) andalso null (Term.add_tfrees t [])) orelse
haftmann@28309
    91
      error "Term to be tested contains type variables";
wenzelm@29266
    92
    val _ = null (Term.add_vars t []) orelse
haftmann@28309
    93
      error "Term to be tested contains schematic variables";
haftmann@31138
    94
    val frees = Term.add_frees t [];
haftmann@28309
    95
  in (map fst frees, list_abs_free (frees, t)) end
haftmann@28309
    96
haftmann@28315
    97
fun test_term ctxt quiet generator_name size i t =
haftmann@28309
    98
  let
haftmann@28309
    99
    val (names, t') = prep_test_term t;
haftmann@28309
   100
    val testers = case generator_name
haftmann@28309
   101
     of NONE => if quiet then mk_testers ctxt t' else mk_testers_strict ctxt t'
haftmann@28309
   102
      | SOME name => [mk_tester_select name ctxt t'];
haftmann@28309
   103
    fun iterate f 0 = NONE
haftmann@31153
   104
      | iterate f j = case f () handle Match => (if quiet then ()
haftmann@28309
   105
             else warning "Exception Match raised during quickcheck"; NONE)
haftmann@31153
   106
          of NONE => iterate f (j - 1) | SOME q => SOME q;
haftmann@28309
   107
    fun with_testers k [] = NONE
haftmann@28309
   108
      | with_testers k (tester :: testers) =
haftmann@31153
   109
          case iterate (fn () => tester (k - 1)) i
haftmann@28309
   110
           of NONE => with_testers k testers
haftmann@28309
   111
            | SOME q => SOME q;
haftmann@28309
   112
    fun with_size k = if k > size then NONE
haftmann@28309
   113
      else (if quiet then () else priority ("Test data size: " ^ string_of_int k);
haftmann@28309
   114
        case with_testers k testers
haftmann@28309
   115
         of NONE => with_size (k + 1) | SOME q => SOME q);
haftmann@28309
   116
  in case with_size 1
haftmann@28309
   117
   of NONE => NONE
haftmann@28309
   118
    | SOME ts => SOME (names ~~ ts)
haftmann@28309
   119
  end;
haftmann@28309
   120
haftmann@28309
   121
fun monomorphic_term thy insts default_T = 
haftmann@28309
   122
  let
haftmann@28309
   123
    fun subst (T as TFree (v, S)) =
haftmann@28309
   124
          let
haftmann@28309
   125
            val T' = AList.lookup (op =) insts v
haftmann@28309
   126
              |> the_default (the_default T default_T)
haftmann@28315
   127
          in if Sign.of_sort thy (T, S) then T'
haftmann@28309
   128
            else error ("Type " ^ Syntax.string_of_typ_global thy T ^
haftmann@28309
   129
              " to be substituted for variable " ^
haftmann@28309
   130
              Syntax.string_of_typ_global thy T ^ "\ndoes not have sort " ^
haftmann@28309
   131
              Syntax.string_of_sort_global thy S)
haftmann@28309
   132
          end
haftmann@28309
   133
      | subst T = T;
haftmann@28309
   134
  in (map_types o map_atyps) subst end;
haftmann@28309
   135
blanchet@34125
   136
fun test_goal quiet generator_name size iterations default_T no_assms insts i assms state =
haftmann@28309
   137
  let
haftmann@28309
   138
    val ctxt = Proof.context_of state;
haftmann@28309
   139
    val thy = Proof.theory_of state;
haftmann@28309
   140
    fun strip (Const ("all", _) $ Abs (_, _, t)) = strip t
haftmann@28309
   141
      | strip t = t;
wenzelm@33291
   142
    val {goal = st, ...} = Proof.raw_goal state;
haftmann@28309
   143
    val (gi, frees) = Logic.goal_params (prop_of st) i;
blanchet@34125
   144
    val gi' = Logic.list_implies (if no_assms then [] else assms,
blanchet@34125
   145
                                  subst_bounds (frees, strip gi))
haftmann@28309
   146
      |> monomorphic_term thy insts default_T
haftmann@28309
   147
      |> ObjectLogic.atomize_term thy;
haftmann@28315
   148
  in test_term ctxt quiet generator_name size iterations gi' end;
haftmann@28315
   149
haftmann@28315
   150
fun pretty_counterex ctxt NONE = Pretty.str "No counterexamples found."
haftmann@28315
   151
  | pretty_counterex ctxt (SOME cex) =
haftmann@28315
   152
      Pretty.chunks (Pretty.str "Counterexample found:\n" ::
haftmann@28315
   153
        map (fn (s, t) =>
haftmann@28315
   154
          Pretty.block [Pretty.str (s ^ " ="), Pretty.brk 1, Syntax.pretty_term ctxt t]) cex);
haftmann@28315
   155
haftmann@28315
   156
haftmann@28315
   157
(* automatic testing *)
haftmann@28309
   158
blanchet@33552
   159
fun auto_quickcheck state =
blanchet@33552
   160
  if not (!auto) then
blanchet@33552
   161
    (false, state)
blanchet@33552
   162
  else
blanchet@33552
   163
    let
blanchet@33552
   164
      val ctxt = Proof.context_of state;
blanchet@33552
   165
      val assms = map term_of (Assumption.all_assms_of ctxt);
blanchet@34125
   166
      val Test_Params { size, iterations, default_type, no_assms } =
blanchet@33552
   167
        (snd o Data.get o Proof.theory_of) state;
blanchet@33552
   168
      val res =
blanchet@34125
   169
        try (test_goal true NONE size iterations default_type no_assms [] 1 assms) state;
blanchet@33552
   170
    in
blanchet@33552
   171
      case res of
blanchet@33552
   172
        NONE => (false, state)
blanchet@33552
   173
      | SOME NONE => (false, state)
blanchet@33552
   174
      | SOME cex => (true, Proof.goal_message (K (Pretty.chunks [Pretty.str "",
blanchet@33552
   175
          Pretty.mark Markup.hilite (pretty_counterex ctxt cex)])) state)
blanchet@33552
   176
    end
blanchet@33552
   177
blanchet@33552
   178
val setup = Auto_Counterexample.register_tool ("quickcheck", auto_quickcheck)
haftmann@28309
   179
haftmann@28309
   180
wenzelm@30981
   181
(* Isar commands *)
haftmann@28315
   182
haftmann@28336
   183
fun read_nat s = case (Library.read_int o Symbol.explode) s
haftmann@28336
   184
 of (k, []) => if k >= 0 then k
haftmann@28336
   185
      else error ("Not a natural number: " ^ s)
haftmann@28336
   186
  | (_, _ :: _) => error ("Not a natural number: " ^ s);
blanchet@34125
   187
fun read_bool "false" = false
blanchet@34125
   188
  | read_bool "true" = true
blanchet@34125
   189
  | read_bool s = error ("Not a Boolean value: " ^ s)
haftmann@28315
   190
haftmann@28336
   191
fun parse_test_param ctxt ("size", arg) =
haftmann@28336
   192
      (apfst o apfst o K) (read_nat arg)
haftmann@28336
   193
  | parse_test_param ctxt ("iterations", arg) =
haftmann@28336
   194
      (apfst o apsnd o K) (read_nat arg)
haftmann@28336
   195
  | parse_test_param ctxt ("default_type", arg) =
blanchet@34125
   196
      (apsnd o apfst o K o SOME) (ProofContext.read_typ ctxt arg)
blanchet@34125
   197
  | parse_test_param ctxt ("no_assms", arg) =
blanchet@34125
   198
      (apsnd o apsnd o K) (read_bool arg)
haftmann@28336
   199
  | parse_test_param ctxt (name, _) =
blanchet@34125
   200
      error ("Unknown test parameter: " ^ name);
haftmann@28315
   201
haftmann@28336
   202
fun parse_test_param_inst ctxt ("generator", arg) =
haftmann@28336
   203
      (apsnd o apfst o K o SOME) arg
haftmann@28336
   204
  | parse_test_param_inst ctxt (name, arg) =
haftmann@28336
   205
      case try (ProofContext.read_typ ctxt) name
haftmann@28336
   206
       of SOME (TFree (v, _)) => (apsnd o apsnd o AList.update (op =))
haftmann@28336
   207
              (v, ProofContext.read_typ ctxt arg)
haftmann@28336
   208
        | _ => (apfst o parse_test_param ctxt) (name, arg);
haftmann@28315
   209
haftmann@28336
   210
fun quickcheck_params_cmd args thy =
haftmann@28315
   211
  let
haftmann@28315
   212
    val ctxt = ProofContext.init thy;
haftmann@28336
   213
    val f = fold (parse_test_param ctxt) args;
haftmann@28315
   214
  in
haftmann@28315
   215
    thy
haftmann@28336
   216
    |> (Data.map o apsnd o map_test_params) f
haftmann@28315
   217
  end;
haftmann@28315
   218
boehmes@32295
   219
fun quickcheck args i state =
haftmann@28315
   220
  let
boehmes@32295
   221
    val thy = Proof.theory_of state;
boehmes@32295
   222
    val ctxt = Proof.context_of state;
blanchet@34125
   223
    val assms = map term_of (Assumption.all_assms_of ctxt);
haftmann@28315
   224
    val default_params = (dest_test_params o snd o Data.get) thy;
haftmann@28336
   225
    val f = fold (parse_test_param_inst ctxt) args;
blanchet@34125
   226
    val (((size, iterations), (default_type, no_assms)), (generator_name, insts)) =
haftmann@28336
   227
      f (default_params, (NONE, []));
boehmes@32295
   228
  in
blanchet@34125
   229
    test_goal false generator_name size iterations default_type no_assms insts i assms state
boehmes@32295
   230
  end;
boehmes@32295
   231
boehmes@32295
   232
fun quickcheck_cmd args i state =
boehmes@32295
   233
  quickcheck args i (Toplevel.proof_of state)
boehmes@32295
   234
  |> Pretty.writeln o pretty_counterex (Toplevel.context_of state);
haftmann@28309
   235
haftmann@28309
   236
local structure P = OuterParse and K = OuterKeyword in
haftmann@28309
   237
blanchet@34125
   238
val parse_arg = P.name -- (Scan.optional (P.$$$ "=" |-- P.name) "true")
blanchet@34125
   239
haftmann@28336
   240
val parse_args = P.$$$ "[" |-- P.list1 parse_arg --| P.$$$ "]"
haftmann@28336
   241
  || Scan.succeed [];
haftmann@28336
   242
haftmann@28315
   243
val _ = OuterSyntax.command "quickcheck_params" "set parameters for random testing" K.thy_decl
haftmann@28336
   244
  (parse_args >> (fn args => Toplevel.theory (quickcheck_params_cmd args)));
haftmann@28309
   245
haftmann@28315
   246
val _ = OuterSyntax.improper_command "quickcheck" "try to find counterexample for subgoal" K.diag
haftmann@28336
   247
  (parse_args -- Scan.optional P.nat 1
haftmann@28336
   248
    >> (fn (args, i) => Toplevel.no_timing o Toplevel.keep (quickcheck_cmd args i)));
haftmann@28309
   249
haftmann@28309
   250
end; (*local*)
haftmann@28309
   251
haftmann@28309
   252
end;
haftmann@28256
   253
haftmann@28315
   254
haftmann@28315
   255
val auto_quickcheck = Quickcheck.auto;