src/HOL/Mutabelle/mutabelle_extra.ML
author wenzelm
Mon, 03 May 2010 14:25:56 +0200
changeset 36610 bafd82950e24
parent 36255 f8b3381e1437
child 36692 54b64d4ad524
permissions -rw-r--r--
renamed ProofContext.init to ProofContext.init_global to emphasize that this is not the real thing;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
34965
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
     1
(*
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
     2
    Title:      HOL/Mutabelle/mutabelle_extra.ML
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
     3
    Author:     Stefan Berghofer, Jasmin Blanchette, Lukas Bulwahn, TU Muenchen
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
     4
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
     5
    Invokation of Counterexample generators
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
     6
*)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
     7
signature MUTABELLE_EXTRA =
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
     8
sig
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
     9
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    10
val take_random : int -> 'a list -> 'a list
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    11
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    12
datatype outcome = GenuineCex | PotentialCex | NoCex | Donno | Timeout | Error
35324
c9f428269b38 adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
bulwahn
parents: 35092
diff changeset
    13
type timing = (string * int) list
34965
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    14
35380
6ac5b81a763d adopting Mutabelle to quickcheck reporting; improving quickcheck reporting
bulwahn
parents: 35325
diff changeset
    15
type mtd = string * (theory -> term -> outcome * (timing * (int * Quickcheck.report list) list option))
35324
c9f428269b38 adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
bulwahn
parents: 35092
diff changeset
    16
35380
6ac5b81a763d adopting Mutabelle to quickcheck reporting; improving quickcheck reporting
bulwahn
parents: 35325
diff changeset
    17
type mutant_subentry = term * (string * (outcome * (timing * Quickcheck.report option))) list
34965
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    18
type detailed_entry = string * bool * term * mutant_subentry list
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    19
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    20
type subentry = string * int * int * int * int * int * int
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    21
type entry = string * bool * subentry list
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    22
type report = entry list
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    23
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    24
val quickcheck_mtd : string -> mtd
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    25
(*
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    26
val refute_mtd : mtd
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    27
val nitpick_mtd : mtd
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    28
*)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    29
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    30
val freezeT : term -> term
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    31
val thms_of : bool -> theory -> thm list
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    32
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    33
val string_for_report : report -> string
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    34
val write_report : string -> report -> unit
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    35
val mutate_theorems_and_write_report :
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    36
  theory -> mtd list -> thm list -> string -> unit
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    37
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    38
val random_seed : real Unsynchronized.ref
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    39
end;
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    40
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    41
structure MutabelleExtra : MUTABELLE_EXTRA =
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    42
struct
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    43
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    44
(* Own seed; can't rely on the Isabelle one to stay the same *)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    45
val random_seed = Unsynchronized.ref 1.0;
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    46
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    47
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    48
(* mutation options *)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    49
val max_mutants = 4
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    50
val num_mutations = 1
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    51
(* soundness check: *)
36255
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
    52
(*val max_mutants = 1
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
    53
val num_mutations = 0*)
34965
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    54
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    55
(* quickcheck options *)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    56
(*val quickcheck_generator = "SML"*)
35537
59dd6be5834c adding depth to predicate compile quickcheck for mutabelle tests; removing obsolete references in predicate compile quickcheck
bulwahn
parents: 35380
diff changeset
    57
val iterations = 10
34965
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    58
val size = 5
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    59
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    60
exception RANDOM;
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    61
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    62
fun rmod x y = x - y * Real.realFloor (x / y);
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    63
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    64
local
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    65
  val a = 16807.0;
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    66
  val m = 2147483647.0;
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    67
in
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    68
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    69
fun random () = CRITICAL (fn () =>
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    70
  let val r = rmod (a * ! random_seed) m
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    71
  in (random_seed := r; r) end);
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    72
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    73
end;
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    74
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    75
fun random_range l h =
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    76
  if h < l orelse l < 0 then raise RANDOM
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    77
  else l + Real.floor (rmod (random ()) (real (h - l + 1)));
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    78
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    79
datatype outcome = GenuineCex | PotentialCex | NoCex | Donno | Timeout | Error
35324
c9f428269b38 adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
bulwahn
parents: 35092
diff changeset
    80
type timing = (string * int) list
34965
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    81
35380
6ac5b81a763d adopting Mutabelle to quickcheck reporting; improving quickcheck reporting
bulwahn
parents: 35325
diff changeset
    82
type mtd = string * (theory -> term -> outcome * (timing * (int * Quickcheck.report list) list option))
35324
c9f428269b38 adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
bulwahn
parents: 35092
diff changeset
    83
35380
6ac5b81a763d adopting Mutabelle to quickcheck reporting; improving quickcheck reporting
bulwahn
parents: 35325
diff changeset
    84
type mutant_subentry = term * (string * (outcome * (timing * Quickcheck.report option))) list
34965
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    85
type detailed_entry = string * bool * term * mutant_subentry list
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    86
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    87
type subentry = string * int * int * int * int * int * int
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    88
type entry = string * bool * subentry list
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    89
type report = entry list
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    90
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    91
fun inst_type insts (Type (s, Ts)) = Type (s, map (inst_type insts) Ts)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    92
  | inst_type insts T = the_default HOLogic.intT (AList.lookup op = insts T)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    93
35625
9c818cab0dd0 modernized structure Object_Logic;
wenzelm
parents: 35537
diff changeset
    94
fun preprocess thy insts t = Object_Logic.atomize_term thy
34965
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    95
 (map_types (inst_type insts) (Mutabelle.freeze t));
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    96
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    97
fun invoke_quickcheck quickcheck_generator thy t =
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    98
  TimeLimit.timeLimit (Time.fromSeconds (! Auto_Counterexample.time_limit))
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
    99
      (fn _ =>
36610
bafd82950e24 renamed ProofContext.init to ProofContext.init_global to emphasize that this is not the real thing;
wenzelm
parents: 36255
diff changeset
   100
          case Quickcheck.gen_test_term (ProofContext.init_global thy) true true (SOME quickcheck_generator)
34965
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   101
                                    size iterations (preprocess thy [] t) of
35380
6ac5b81a763d adopting Mutabelle to quickcheck reporting; improving quickcheck reporting
bulwahn
parents: 35325
diff changeset
   102
            (NONE, (time_report, report)) => (NoCex, (time_report, report))
6ac5b81a763d adopting Mutabelle to quickcheck reporting; improving quickcheck reporting
bulwahn
parents: 35325
diff changeset
   103
          | (SOME _, (time_report, report)) => (GenuineCex, (time_report, report))) ()
6ac5b81a763d adopting Mutabelle to quickcheck reporting; improving quickcheck reporting
bulwahn
parents: 35325
diff changeset
   104
  handle TimeLimit.TimeOut => (Timeout, ([("timelimit", !Auto_Counterexample.time_limit)], NONE))
34965
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   105
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   106
fun quickcheck_mtd quickcheck_generator =
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   107
  ("quickcheck_" ^ quickcheck_generator, invoke_quickcheck quickcheck_generator)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   108
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   109
  (*
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   110
fun invoke_refute thy t =
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   111
  let
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   112
    val res = MyRefute.refute_term thy [] t
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   113
    val _ = priority ("Refute: " ^ res)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   114
  in
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   115
    case res of
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   116
      "genuine" => GenuineCex
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   117
    | "likely_genuine" => GenuineCex
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   118
    | "potential" => PotentialCex
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   119
    | "none" => NoCex
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   120
    | "unknown" => Donno
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   121
    | _ => Error
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   122
  end
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   123
  handle MyRefute.REFUTE (loc, details) =>
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   124
         (error ("Unhandled Refute error (" ^ quote loc ^ "): " ^ details ^
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   125
                   "."))
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   126
val refute_mtd = ("refute", invoke_refute)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   127
*)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   128
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   129
(*
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   130
open Nitpick_Util
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   131
open Nitpick_Rep
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   132
open Nitpick_Nut
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   133
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   134
fun invoke_nitpick thy t =
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   135
  let
36610
bafd82950e24 renamed ProofContext.init to ProofContext.init_global to emphasize that this is not the real thing;
wenzelm
parents: 36255
diff changeset
   136
    val ctxt = ProofContext.init_global thy
34965
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   137
    val state = Proof.init ctxt
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   138
  in
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   139
    let
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   140
      val (res, _) = Nitpick.pick_nits_in_term state (Nitpick_Isar.default_params thy []) false [] t
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   141
      val _ = priority ("Nitpick: " ^ res)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   142
    in
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   143
      case res of
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   144
        "genuine" => GenuineCex
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   145
      | "likely_genuine" => GenuineCex
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   146
      | "potential" => PotentialCex
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   147
      | "none" => NoCex
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   148
      | "unknown" => Donno
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   149
      | _ => Error
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   150
    end
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   151
    handle ARG (loc, details) =>
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   152
           (error ("Bad argument(s) to " ^ quote loc ^ ": " ^ details ^ "."))
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   153
         | BAD (loc, details) =>
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   154
           (error ("Internal error (" ^ quote loc ^ "): " ^ details ^ "."))
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   155
         | LIMIT (_, details) =>
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   156
           (warning ("Limit reached: " ^ details ^ "."); Donno)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   157
         | NOT_SUPPORTED details =>
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   158
           (warning ("Unsupported case: " ^ details ^ "."); Donno)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   159
         | NUT (loc, us) =>
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   160
           (error ("Invalid nut" ^ plural_s_for_list us ^
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   161
                   " (" ^ quote loc ^ "): " ^
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   162
                  commas (map (string_for_nut ctxt) us) ^ "."))
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   163
         | REP (loc, Rs) =>
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   164
           (error ("Invalid representation" ^ plural_s_for_list Rs ^
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   165
                   " (" ^ quote loc ^ "): " ^
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   166
                   commas (map string_for_rep Rs) ^ "."))
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   167
         | TERM (loc, ts) =>
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   168
           (error ("Invalid term" ^ plural_s_for_list ts ^
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   169
                   " (" ^ quote loc ^ "): " ^
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   170
                   commas (map (Syntax.string_of_term ctxt) ts) ^ "."))
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   171
         | TYPE (loc, Ts, ts) =>
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   172
           (error ("Invalid type" ^ plural_s_for_list Ts ^
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   173
                   (if null ts then
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   174
                      ""
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   175
                    else
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   176
                      " for term" ^ plural_s_for_list ts ^ " " ^
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   177
                      commas (map (quote o Syntax.string_of_term ctxt) ts)) ^
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   178
                   " (" ^ quote loc ^ "): " ^
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   179
                   commas (map (Syntax.string_of_typ ctxt) Ts) ^ "."))
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   180
         | Kodkod.SYNTAX (_, details) =>
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   181
           (warning ("Ill-formed Kodkodi output: " ^ details ^ "."); Error)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   182
         | Refute.REFUTE (loc, details) =>
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   183
           (error ("Unhandled Refute error (" ^ quote loc ^ "): " ^ details ^
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   184
                   "."))
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   185
         | Exn.Interrupt => raise Exn.Interrupt
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   186
         | _ => (priority ("Unknown error in Nitpick"); Error)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   187
  end
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   188
val nitpick_mtd = ("nitpick", invoke_nitpick)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   189
*)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   190
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   191
val comms = [@{const_name "op ="}, @{const_name "op |"}, @{const_name "op &"}]
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   192
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   193
val forbidden =
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   194
 [(* (@{const_name "power"}, "'a"), *)
35325
4123977b469d adding ROOT.ML to HOL-Mutabelle session; uncommenting HOL.induct constants in Mutabelle session
bulwahn
parents: 35324
diff changeset
   195
  (*(@{const_name induct_equal}, "'a"),
4123977b469d adding ROOT.ML to HOL-Mutabelle session; uncommenting HOL.induct constants in Mutabelle session
bulwahn
parents: 35324
diff changeset
   196
  (@{const_name induct_implies}, "'a"),
4123977b469d adding ROOT.ML to HOL-Mutabelle session; uncommenting HOL.induct constants in Mutabelle session
bulwahn
parents: 35324
diff changeset
   197
  (@{const_name induct_conj}, "'a"),*)
34965
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   198
  (@{const_name "undefined"}, "'a"),
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   199
  (@{const_name "default"}, "'a"),
36255
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   200
  (@{const_name "dummy_pattern"}, "'a::{}"),
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   201
  (@{const_name "HOL.simp_implies"}, "prop => prop => prop"),
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   202
  (@{const_name "bot_fun_inst.bot_fun"}, "'a"),
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   203
  (@{const_name "top_fun_inst.top_fun"}, "'a"),
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   204
  (@{const_name "Pure.term"}, "'a"),
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   205
  (@{const_name "top_class.top"}, "'a"),
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   206
  (@{const_name "eq_class.eq"}, "'a"),
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   207
  (@{const_name "Quotient.Quot_True"}, "'a")(*,
34965
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   208
  (@{const_name "uminus"}, "'a"),
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   209
  (@{const_name "Nat.size"}, "'a"),
35092
cfe605c54e50 moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents: 34974
diff changeset
   210
  (@{const_name "Groups.abs"}, "'a") *)]
34965
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   211
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   212
val forbidden_thms =
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   213
 ["finite_intvl_succ_class",
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   214
  "nibble"]
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   215
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   216
val forbidden_consts =
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   217
 [@{const_name nibble_pair_of_char}]
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   218
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   219
fun is_forbidden_theorem (s, th) =
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   220
  let val consts = Term.add_const_names (prop_of th) [] in
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   221
    exists (fn s' => s' mem space_explode "." s) forbidden_thms orelse
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   222
    exists (fn s' => s' mem forbidden_consts) consts orelse
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   223
    length (space_explode "." s) <> 2 orelse
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   224
    String.isPrefix "type_definition" (List.last (space_explode "." s)) orelse
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   225
    String.isSuffix "_def" s orelse
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   226
    String.isSuffix "_raw" s
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   227
  end
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   228
36255
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   229
val forbidden_mutant_constnames =
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   230
 ["HOL.induct_equal",
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   231
  "HOL.induct_implies",
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   232
  "HOL.induct_conj",
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   233
 @{const_name undefined},
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   234
 @{const_name default},
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   235
 @{const_name dummy_pattern},
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   236
 @{const_name "HOL.simp_implies"},
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   237
 @{const_name "bot_fun_inst.bot_fun"},
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   238
 @{const_name "top_fun_inst.top_fun"},
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   239
 @{const_name "Pure.term"},
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   240
 @{const_name "top_class.top"},
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   241
 @{const_name "eq_class.eq"},
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   242
 @{const_name "Quotient.Quot_True"}]
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   243
34965
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   244
fun is_forbidden_mutant t =
36255
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   245
  let
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   246
    val consts = Term.add_const_names t []
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   247
  in
34965
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   248
    exists (String.isPrefix "Nitpick") consts orelse
36255
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   249
    exists (String.isSubstring "_sumC") consts orelse
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   250
    exists (member (op =) forbidden_mutant_constnames) consts
34965
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   251
  end
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   252
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   253
fun is_executable_term thy t = can (TimeLimit.timeLimit (Time.fromMilliseconds 2000) (Quickcheck.test_term
36610
bafd82950e24 renamed ProofContext.init to ProofContext.init_global to emphasize that this is not the real thing;
wenzelm
parents: 36255
diff changeset
   254
 (ProofContext.init_global thy) false (SOME "SML") 1 0)) (preprocess thy [] t)
34965
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   255
fun is_executable_thm thy th = is_executable_term thy (prop_of th)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   256
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   257
val freezeT =
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   258
  map_types (map_type_tvar (fn ((a, i), S) =>
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   259
    TFree (if i = 0 then a else a ^ "_" ^ string_of_int i, S)))
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   260
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   261
fun thms_of all thy =
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   262
  filter
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   263
    (fn th => (all orelse Context.theory_name (theory_of_thm th) = Context.theory_name thy)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   264
      (* andalso is_executable_thm thy th *))
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   265
    (map snd (filter_out is_forbidden_theorem (Mutabelle.all_unconcealed_thms_of thy)))
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   266
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   267
val count = length oo filter o equal
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   268
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   269
fun take_random 0 _ = []
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   270
  | take_random _ [] = []
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   271
  | take_random n xs =
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   272
    let val j = random_range 0 (length xs - 1) in
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   273
      Library.nth xs j :: take_random (n - 1) (nth_drop j xs)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   274
    end
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   275
35324
c9f428269b38 adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
bulwahn
parents: 35092
diff changeset
   276
fun cpu_time description f =
c9f428269b38 adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
bulwahn
parents: 35092
diff changeset
   277
  let
c9f428269b38 adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
bulwahn
parents: 35092
diff changeset
   278
    val start = start_timing ()
c9f428269b38 adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
bulwahn
parents: 35092
diff changeset
   279
    val result = Exn.capture f ()
c9f428269b38 adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
bulwahn
parents: 35092
diff changeset
   280
    val time = Time.toMilliseconds (#cpu (end_timing start))
c9f428269b38 adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
bulwahn
parents: 35092
diff changeset
   281
  in (Exn.release result, (description, time)) end
c9f428269b38 adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
bulwahn
parents: 35092
diff changeset
   282
34965
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   283
fun safe_invoke_mtd thy (mtd_name, invoke_mtd) t =
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   284
  let
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   285
    val _ = priority ("Invoking " ^ mtd_name)
35380
6ac5b81a763d adopting Mutabelle to quickcheck reporting; improving quickcheck reporting
bulwahn
parents: 35325
diff changeset
   286
    val ((res, (timing, reports)), time) = cpu_time "total time"
35324
c9f428269b38 adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
bulwahn
parents: 35092
diff changeset
   287
      (fn () => case try (invoke_mtd thy) t of
35380
6ac5b81a763d adopting Mutabelle to quickcheck reporting; improving quickcheck reporting
bulwahn
parents: 35325
diff changeset
   288
          SOME (res, (timing, reports)) => (res, (timing, reports))
35324
c9f428269b38 adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
bulwahn
parents: 35092
diff changeset
   289
        | NONE => (priority ("**** PROBLEMS WITH " ^ Syntax.string_of_term_global thy t);
35380
6ac5b81a763d adopting Mutabelle to quickcheck reporting; improving quickcheck reporting
bulwahn
parents: 35325
diff changeset
   290
           (Error , ([], NONE))))
34965
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   291
    val _ = priority (" Done")
35380
6ac5b81a763d adopting Mutabelle to quickcheck reporting; improving quickcheck reporting
bulwahn
parents: 35325
diff changeset
   292
  in (res, (time :: timing, reports)) end
34965
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   293
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   294
(* theory -> term list -> mtd -> subentry *)
35324
c9f428269b38 adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
bulwahn
parents: 35092
diff changeset
   295
(*
34965
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   296
fun test_mutants_using_one_method thy mutants (mtd_name, invoke_mtd) =
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   297
  let
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   298
     val res = map (safe_invoke_mtd thy (mtd_name, invoke_mtd)) mutants
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   299
  in
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   300
    (mtd_name, count GenuineCex res, count PotentialCex res, count NoCex res,
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   301
     count Donno res, count Timeout res, count Error res)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   302
  end
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   303
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   304
fun create_entry thy thm exec mutants mtds =
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   305
  (Thm.get_name thm, exec, map (test_mutants_using_one_method thy mutants) mtds)
35324
c9f428269b38 adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
bulwahn
parents: 35092
diff changeset
   306
*)
34965
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   307
fun create_detailed_entry thy thm exec mutants mtds =
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   308
  let
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   309
    fun create_mutant_subentry mutant = (mutant,
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   310
      map (fn (mtd_name, invoke_mtd) =>
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   311
        (mtd_name, safe_invoke_mtd thy (mtd_name, invoke_mtd) mutant)) mtds)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   312
  in
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   313
    (Thm.get_name thm, exec, prop_of thm, map create_mutant_subentry mutants)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   314
  end
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   315
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   316
(* (theory -> thm -> bool -> term list -> mtd list -> 'a) -> theory -> mtd list -> thm -> 'a *)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   317
fun mutate_theorem create_entry thy mtds thm =
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   318
  let
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   319
    val pp = Syntax.pp_global thy
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   320
    val exec = is_executable_thm thy thm
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   321
    val _ = priority (if exec then "EXEC" else "NOEXEC")
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   322
    val mutants =
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   323
          (if num_mutations = 0 then
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   324
             [Thm.prop_of thm]
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   325
           else
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   326
             Mutabelle.mutate_mix (Thm.prop_of thm) thy comms forbidden
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   327
                                  num_mutations)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   328
             |> filter_out is_forbidden_mutant
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   329
    val mutants =
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   330
      if exec then
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   331
        let
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   332
          val _ = priority ("BEFORE PARTITION OF " ^
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   333
                            Int.toString (length mutants) ^ " MUTANTS")
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   334
          val (execs, noexecs) = List.partition (is_executable_term thy) (take_random (20 * max_mutants) mutants)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   335
          val _ = tracing ("AFTER PARTITION (" ^ Int.toString (length execs) ^
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   336
                           " vs " ^ Int.toString (length noexecs) ^ ")")
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   337
        in
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   338
          execs @ take_random (Int.max (0, max_mutants - length execs)) noexecs
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   339
        end
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   340
      else
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   341
        mutants
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   342
    val mutants = mutants
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   343
          |> take_random max_mutants
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   344
          |> map Mutabelle.freeze |> map freezeT
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   345
(*          |> filter (not o is_forbidden_mutant) *)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   346
          |> List.mapPartial (try (Sign.cert_term thy))
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   347
    val _ = map (fn t => priority ("MUTANT: " ^ Pretty.string_of (Pretty.term pp t))) mutants
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   348
  in
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   349
    create_entry thy thm exec mutants mtds
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   350
  end
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   351
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   352
(* theory -> mtd list -> thm list -> report *)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   353
val mutate_theorems = map ooo mutate_theorem
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   354
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   355
fun string_of_outcome GenuineCex = "GenuineCex"
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   356
  | string_of_outcome PotentialCex = "PotentialCex"
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   357
  | string_of_outcome NoCex = "NoCex"
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   358
  | string_of_outcome Donno = "Donno"
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   359
  | string_of_outcome Timeout = "Timeout"
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   360
  | string_of_outcome Error = "Error"
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   361
35324
c9f428269b38 adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
bulwahn
parents: 35092
diff changeset
   362
fun string_of_mutant_subentry thy thm_name (t, results) =
34965
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   363
  "mutant: " ^ Syntax.string_of_term_global thy t ^ "\n" ^
35324
c9f428269b38 adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
bulwahn
parents: 35092
diff changeset
   364
  space_implode "; "
c9f428269b38 adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
bulwahn
parents: 35092
diff changeset
   365
    (map (fn (mtd_name, (outcome, timing)) => mtd_name ^ ": " ^ string_of_outcome outcome) results) ^
34965
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   366
  "\n"
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   367
36255
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   368
(* XML.tree -> string *)
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   369
fun plain_string_from_xml_tree t =
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   370
  Buffer.empty |> XML.add_content t |> Buffer.content
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   371
(* string -> string *)
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   372
val unyxml = plain_string_from_xml_tree o YXML.parse
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   373
35324
c9f428269b38 adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
bulwahn
parents: 35092
diff changeset
   374
fun string_of_mutant_subentry' thy thm_name (t, results) =
35380
6ac5b81a763d adopting Mutabelle to quickcheck reporting; improving quickcheck reporting
bulwahn
parents: 35325
diff changeset
   375
  let
6ac5b81a763d adopting Mutabelle to quickcheck reporting; improving quickcheck reporting
bulwahn
parents: 35325
diff changeset
   376
    fun string_of_report (Quickcheck.Report {iterations = i, raised_match_errors = e,
6ac5b81a763d adopting Mutabelle to quickcheck reporting; improving quickcheck reporting
bulwahn
parents: 35325
diff changeset
   377
      satisfied_assms = s, positive_concl_tests = p}) =
6ac5b81a763d adopting Mutabelle to quickcheck reporting; improving quickcheck reporting
bulwahn
parents: 35325
diff changeset
   378
      "errors: " ^ string_of_int e ^ "; conclusion tests: " ^ string_of_int p
6ac5b81a763d adopting Mutabelle to quickcheck reporting; improving quickcheck reporting
bulwahn
parents: 35325
diff changeset
   379
    fun string_of_reports NONE = ""
6ac5b81a763d adopting Mutabelle to quickcheck reporting; improving quickcheck reporting
bulwahn
parents: 35325
diff changeset
   380
      | string_of_reports (SOME reports) =
6ac5b81a763d adopting Mutabelle to quickcheck reporting; improving quickcheck reporting
bulwahn
parents: 35325
diff changeset
   381
        cat_lines (map (fn (size, [report]) =>
6ac5b81a763d adopting Mutabelle to quickcheck reporting; improving quickcheck reporting
bulwahn
parents: 35325
diff changeset
   382
          "size " ^ string_of_int size ^ ": " ^ string_of_report report) (rev reports))
6ac5b81a763d adopting Mutabelle to quickcheck reporting; improving quickcheck reporting
bulwahn
parents: 35325
diff changeset
   383
    fun string_of_mtd_result (mtd_name, (outcome, (timing, reports))) =
35324
c9f428269b38 adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
bulwahn
parents: 35092
diff changeset
   384
      mtd_name ^ ": " ^ string_of_outcome outcome ^ "; " ^
35380
6ac5b81a763d adopting Mutabelle to quickcheck reporting; improving quickcheck reporting
bulwahn
parents: 35325
diff changeset
   385
      space_implode "; " (map (fn (s, t) => (s ^ ": " ^ string_of_int t)) timing)
36255
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   386
      (*^ "\n" ^ string_of_reports reports*)
35380
6ac5b81a763d adopting Mutabelle to quickcheck reporting; improving quickcheck reporting
bulwahn
parents: 35325
diff changeset
   387
  in
36255
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   388
    "mutant of " ^ thm_name ^ ":\n"
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   389
    ^ unyxml (Syntax.string_of_term_global thy t) ^ "\n" ^ cat_lines (map string_of_mtd_result results)
35380
6ac5b81a763d adopting Mutabelle to quickcheck reporting; improving quickcheck reporting
bulwahn
parents: 35325
diff changeset
   390
  end
35324
c9f428269b38 adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
bulwahn
parents: 35092
diff changeset
   391
34965
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   392
fun string_of_detailed_entry thy (thm_name, exec, t, mutant_subentries) = 
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   393
   thm_name ^ " " ^ (if exec then "[exe]" else "[noexe]") ^ ": " ^
36255
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   394
   Syntax.string_of_term_global thy t ^ "\n" ^                                    
35324
c9f428269b38 adopting mutabelle and quickcheck to return timing information; exporting make_case_combs in datatype package for predicate compiler; adding Spec_Rules declaration for tail recursive functions; improving the predicate compiler and function flattening
bulwahn
parents: 35092
diff changeset
   395
   cat_lines (map (string_of_mutant_subentry' thy thm_name) mutant_subentries) ^ "\n"
34965
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   396
36255
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   397
fun theoryfile_string_of_mutant_subentry thy thm_name (i, (t, results)) =
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   398
  "lemma " ^ thm_name ^ "_" ^ string_of_int (i + 1) ^ ":\n" ^
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   399
  "\"" ^ unyxml (Syntax.string_of_term_global thy t) ^
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   400
  "\" \nquickcheck[generator = SML]\nquickcheck[generator = predicate_compile_wo_ff]\n" ^
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   401
  "quickcheck[generator = predicate_compile_ff_nofs]\noops\n"
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   402
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   403
fun theoryfile_string_of_detailed_entry thy (thm_name, exec, t, mutant_subentries) =
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   404
  "subsubsection {* mutants of " ^ thm_name ^ " *}\n\n" ^
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   405
  cat_lines (map_index
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   406
    (theoryfile_string_of_mutant_subentry thy thm_name) mutant_subentries) ^ "\n"
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   407
34965
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   408
(* subentry -> string *)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   409
fun string_for_subentry (mtd_name, genuine_cex, potential_cex, no_cex, donno,
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   410
                         timeout, error) =
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   411
  "    " ^ mtd_name ^ ": " ^ Int.toString genuine_cex ^ "+ " ^
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   412
  Int.toString potential_cex ^ "= " ^ Int.toString no_cex ^ "- " ^
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   413
  Int.toString donno ^ "? " ^ Int.toString timeout ^ "T " ^
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   414
  Int.toString error ^ "!"
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   415
(* entry -> string *)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   416
fun string_for_entry (thm_name, exec, subentries) =
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   417
  thm_name ^ " " ^ (if exec then "[exe]" else "[noexe]") ^ ":\n" ^
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   418
  cat_lines (map string_for_subentry subentries) ^ "\n"
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   419
(* report -> string *)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   420
fun string_for_report report = cat_lines (map string_for_entry report)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   421
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   422
(* string -> report -> unit *)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   423
fun write_report file_name =
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   424
  File.write (Path.explode file_name) o string_for_report
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   425
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   426
(* theory -> mtd list -> thm list -> string -> unit *)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   427
fun mutate_theorems_and_write_report thy mtds thms file_name =
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   428
  let
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   429
    val _ = priority "Starting Mutabelle..."
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   430
    val path = Path.explode file_name
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   431
    (* for normal report: *)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   432
    (*val (gen_create_entry, gen_string_for_entry) = (create_entry, string_for_entry)*)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   433
    (*for detailled report: *)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   434
    val (gen_create_entry, gen_string_for_entry) =
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   435
      (create_detailed_entry, string_of_detailed_entry thy)
36255
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   436
    val (gen_create_entry, gen_string_for_entry) =
f8b3381e1437 tuning mutabelle; adding output of mutant theoryfile for interactive evaluation
bulwahn
parents: 35625
diff changeset
   437
      (create_detailed_entry, theoryfile_string_of_detailed_entry thy)
34965
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   438
  in
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   439
    File.write path (
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   440
    "Mutation options = "  ^
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   441
      "max_mutants: " ^ string_of_int max_mutants ^
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   442
      "; num_mutations: " ^ string_of_int num_mutations ^ "\n" ^
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   443
    "QC options = " ^
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   444
      (*"quickcheck_generator: " ^ quickcheck_generator ^ ";*)
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   445
      "size: " ^ string_of_int size ^
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   446
      "; iterations: " ^ string_of_int iterations ^ "\n");
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   447
    map (File.append path o gen_string_for_entry o mutate_theorem gen_create_entry thy mtds) thms;
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   448
    ()
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   449
  end
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   450
3b4762c1052c adding Mutabelle to repository
bulwahn
parents:
diff changeset
   451
end;