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