src/HOL/Tools/Quickcheck/narrowing_generators.ML
author wenzelm
Mon, 16 Jul 2012 15:55:21 +0200
changeset 48270 9cfd3e7ad5c8
parent 47843 4da917ed49b7
child 48272 db75b4005d9a
permissions -rw-r--r--
comment;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
41930
1e008cc4883a renaming lazysmallcheck ML file to Quickcheck_Narrowing
bulwahn
parents: 41925
diff changeset
     1
(*  Title:      HOL/Tools/Quickcheck/narrowing_generators.ML
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
     2
    Author:     Lukas Bulwahn, TU Muenchen
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
     3
41938
645cca858c69 tuned headers;
wenzelm
parents: 41936
diff changeset
     4
Narrowing-based counterexample generation.
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
     5
*)
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
     6
41930
1e008cc4883a renaming lazysmallcheck ML file to Quickcheck_Narrowing
bulwahn
parents: 41925
diff changeset
     7
signature NARROWING_GENERATORS =
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
     8
sig
43237
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
     9
  val allow_existentials : bool Config.T
42023
1bd4b6d1c482 adding minimalistic setup and transformation to handle functions as data to enable naive function generation for Quickcheck_Narrowing
bulwahn
parents: 42020
diff changeset
    10
  val finite_functions : bool Config.T
43079
4022892a2f28 improving overlord option and partial_term_of derivation; changing Narrowing_Engine to print partial terms
bulwahn
parents: 43047
diff changeset
    11
  val overlord : bool Config.T
48270
9cfd3e7ad5c8 comment;
wenzelm
parents: 47843
diff changeset
    12
  val ghc_options : string Config.T  (* FIXME prefer settings, i.e. getenv (!?) *)
43891
4690f76f327a making active configuration public in narrowing-based quickcheck
bulwahn
parents: 43878
diff changeset
    13
  val active : bool Config.T
43237
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
    14
  datatype counterexample = Universal_Counterexample of (term * counterexample)
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
    15
    | Existential_Counterexample of (term * counterexample) list
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
    16
    | Empty_Assignment
45725
2987b29518aa the narrowing also indicates if counterexample is potentially spurious
bulwahn
parents: 45685
diff changeset
    17
  val put_counterexample: (unit -> (bool * term list) option) -> Proof.context -> Proof.context
43237
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
    18
  val put_existential_counterexample : (unit -> counterexample option) -> Proof.context -> Proof.context
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
    19
  val setup: theory -> theory
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
    20
end;
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
    21
41930
1e008cc4883a renaming lazysmallcheck ML file to Quickcheck_Narrowing
bulwahn
parents: 41925
diff changeset
    22
structure Narrowing_Generators : NARROWING_GENERATORS =
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
    23
struct
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
    24
42023
1bd4b6d1c482 adding minimalistic setup and transformation to handle functions as data to enable naive function generation for Quickcheck_Narrowing
bulwahn
parents: 42020
diff changeset
    25
(* configurations *)
1bd4b6d1c482 adding minimalistic setup and transformation to handle functions as data to enable naive function generation for Quickcheck_Narrowing
bulwahn
parents: 42020
diff changeset
    26
43237
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
    27
val allow_existentials = Attrib.setup_config_bool @{binding quickcheck_allow_existentials} (K true)
42616
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42361
diff changeset
    28
val finite_functions = Attrib.setup_config_bool @{binding quickcheck_finite_functions} (K true)
43047
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    29
val overlord = Attrib.setup_config_bool @{binding quickcheck_narrowing_overlord} (K false)
47843
4da917ed49b7 adding configuration to pass options to the ghc call in quickcheck[narrowing]
bulwahn
parents: 47330
diff changeset
    30
val ghc_options = Attrib.setup_config_string @{binding quickcheck_narrowing_ghc_options} (K "")
42023
1bd4b6d1c482 adding minimalistic setup and transformation to handle functions as data to enable naive function generation for Quickcheck_Narrowing
bulwahn
parents: 42020
diff changeset
    31
43047
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    32
(* partial_term_of instances *)
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    33
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    34
fun mk_partial_term_of (x, T) =
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    35
  Const (@{const_name Quickcheck_Narrowing.partial_term_of_class.partial_term_of},
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    36
    Term.itselfT T --> @{typ narrowing_term} --> @{typ Code_Evaluation.term})
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    37
      $ Const ("TYPE", Term.itselfT T) $ x
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    38
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    39
(** formal definition **)
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    40
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    41
fun add_partial_term_of tyco raw_vs thy =
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    42
  let
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    43
    val vs = map (fn (v, _) => (v, @{sort typerep})) raw_vs;
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    44
    val ty = Type (tyco, map TFree vs);
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    45
    val lhs = Const (@{const_name partial_term_of},
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    46
        Term.itselfT ty --> @{typ narrowing_term} --> @{typ Code_Evaluation.term})
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    47
      $ Free ("x", Term.itselfT ty) $ Free ("t", @{typ narrowing_term});
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    48
    val rhs = @{term "undefined :: Code_Evaluation.term"};
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    49
    val eq = HOLogic.mk_Trueprop (HOLogic.mk_eq (lhs, rhs));
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    50
    fun triv_name_of t = (fst o dest_Free o fst o strip_comb o fst
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    51
      o HOLogic.dest_eq o HOLogic.dest_Trueprop) t ^ "_triv";
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    52
  in
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    53
    thy
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    54
    |> Class.instantiation ([tyco], vs, @{sort partial_term_of})
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    55
    |> `(fn lthy => Syntax.check_term lthy eq)
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    56
    |-> (fn eq => Specification.definition (NONE, ((Binding.name (triv_name_of eq), []), eq)))
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    57
    |> snd
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    58
    |> Class.prove_instantiation_exit (K (Class.intro_classes_tac []))
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    59
  end;
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    60
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    61
fun ensure_partial_term_of (tyco, (raw_vs, _)) thy =
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    62
  let
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    63
    val need_inst = not (can (Sorts.mg_domain (Sign.classes_of thy) tyco) @{sort partial_term_of})
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    64
      andalso can (Sorts.mg_domain (Sign.classes_of thy) tyco) @{sort typerep};
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    65
  in if need_inst then add_partial_term_of tyco raw_vs thy else thy end;
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    66
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    67
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    68
(** code equations for datatypes **)
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    69
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    70
fun mk_partial_term_of_eq thy ty (i, (c, (_, tys))) =
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    71
  let
43329
84472e198515 tuned signature: Name.invent and Name.invent_names;
wenzelm
parents: 43317
diff changeset
    72
    val frees = map Free (Name.invent_names Name.context "a" (map (K @{typ narrowing_term}) tys))
46758
4106258260b3 choosing longer constant names in Quickcheck_Narrowing to reduce the chances of name clashes in Quickcheck-Narrowing
bulwahn
parents: 46587
diff changeset
    73
    val narrowing_term = @{term "Quickcheck_Narrowing.Narrowing_constructor"} $ HOLogic.mk_number @{typ code_int} i
43079
4022892a2f28 improving overlord option and partial_term_of derivation; changing Narrowing_Engine to print partial terms
bulwahn
parents: 43047
diff changeset
    74
      $ (HOLogic.mk_list @{typ narrowing_term} (rev frees))
43047
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    75
    val rhs = fold (fn u => fn t => @{term "Code_Evaluation.App"} $ t $ u)
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    76
        (map mk_partial_term_of (frees ~~ tys))
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    77
        (@{term "Code_Evaluation.Const"} $ HOLogic.mk_literal c $ HOLogic.mk_typerep (tys ---> ty))
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    78
    val insts =
45344
e209da839ff4 added Logic.varify_types_global/unvarify_types_global, which avoids somewhat expensive Term.map_types;
wenzelm
parents: 45159
diff changeset
    79
      map (SOME o Thm.cterm_of thy o Logic.unvarify_types_global o Logic.varify_global)
43047
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    80
        [Free ("ty", Term.itselfT ty), narrowing_term, rhs]
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    81
    val cty = Thm.ctyp_of thy ty;
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    82
  in
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    83
    @{thm partial_term_of_anything}
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    84
    |> Drule.instantiate' [SOME cty] insts
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    85
    |> Thm.varifyT_global
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    86
  end
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    87
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    88
fun add_partial_term_of_code tyco raw_vs raw_cs thy =
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    89
  let
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    90
    val algebra = Sign.classes_of thy;
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    91
    val vs = map (fn (v, sort) =>
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    92
      (v, curry (Sorts.inter_sort algebra) @{sort typerep} sort)) raw_vs;
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    93
    val ty = Type (tyco, map TFree vs);
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    94
    val cs = (map o apsnd o apsnd o map o map_atyps)
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    95
      (fn TFree (v, _) => TFree (v, (the o AList.lookup (op =) vs) v)) raw_cs;
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
    96
    val const = AxClass.param_of_inst thy (@{const_name partial_term_of}, tyco);
45344
e209da839ff4 added Logic.varify_types_global/unvarify_types_global, which avoids somewhat expensive Term.map_types;
wenzelm
parents: 45159
diff changeset
    97
    val var_insts =
e209da839ff4 added Logic.varify_types_global/unvarify_types_global, which avoids somewhat expensive Term.map_types;
wenzelm
parents: 45159
diff changeset
    98
      map (SOME o Thm.cterm_of thy o Logic.unvarify_types_global o Logic.varify_global)
46758
4106258260b3 choosing longer constant names in Quickcheck_Narrowing to reduce the chances of name clashes in Quickcheck-Narrowing
bulwahn
parents: 46587
diff changeset
    99
        [Free ("ty", Term.itselfT ty), @{term "Quickcheck_Narrowing.Narrowing_variable p tt"},
45344
e209da839ff4 added Logic.varify_types_global/unvarify_types_global, which avoids somewhat expensive Term.map_types;
wenzelm
parents: 45159
diff changeset
   100
          @{term "Code_Evaluation.Free (STR ''_'')"} $ HOLogic.mk_typerep ty];
43079
4022892a2f28 improving overlord option and partial_term_of derivation; changing Narrowing_Engine to print partial terms
bulwahn
parents: 43047
diff changeset
   101
    val var_eq =
4022892a2f28 improving overlord option and partial_term_of derivation; changing Narrowing_Engine to print partial terms
bulwahn
parents: 43047
diff changeset
   102
      @{thm partial_term_of_anything}
4022892a2f28 improving overlord option and partial_term_of derivation; changing Narrowing_Engine to print partial terms
bulwahn
parents: 43047
diff changeset
   103
      |> Drule.instantiate' [SOME (Thm.ctyp_of thy ty)] var_insts
4022892a2f28 improving overlord option and partial_term_of derivation; changing Narrowing_Engine to print partial terms
bulwahn
parents: 43047
diff changeset
   104
      |> Thm.varifyT_global
4022892a2f28 improving overlord option and partial_term_of derivation; changing Narrowing_Engine to print partial terms
bulwahn
parents: 43047
diff changeset
   105
    val eqs = var_eq :: map_index (mk_partial_term_of_eq thy ty) cs;
43047
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
   106
 in
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
   107
    thy
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
   108
    |> Code.del_eqns const
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
   109
    |> fold Code.add_eqn eqs
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
   110
  end;
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
   111
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
   112
fun ensure_partial_term_of_code (tyco, (raw_vs, cs)) thy =
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
   113
  let
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
   114
    val has_inst = can (Sorts.mg_domain (Sign.classes_of thy) tyco) @{sort partial_term_of};
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
   115
  in if has_inst then add_partial_term_of_code tyco raw_vs cs thy else thy end;
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
   116
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
   117
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
   118
(* narrowing generators *)
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
   119
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
   120
(** narrowing specific names and types **)
41963
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   121
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   122
exception FUNCTION_TYPE;
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   123
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   124
val narrowingN = "narrowing";
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   125
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   126
fun narrowingT T =
46758
4106258260b3 choosing longer constant names in Quickcheck_Narrowing to reduce the chances of name clashes in Quickcheck-Narrowing
bulwahn
parents: 46587
diff changeset
   127
  @{typ Quickcheck_Narrowing.code_int} --> Type (@{type_name Quickcheck_Narrowing.narrowing_cons}, [T])
41963
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   128
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   129
fun mk_empty T = Const (@{const_name Quickcheck_Narrowing.empty}, narrowingT T)
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   130
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   131
fun mk_cons c T = Const (@{const_name Quickcheck_Narrowing.cons}, T --> narrowingT T) $ Const (c, T)
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   132
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   133
fun mk_apply (T, t) (U, u) =
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   134
  let
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   135
    val (_, U') = dest_funT U
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   136
  in
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   137
    (U', Const (@{const_name Quickcheck_Narrowing.apply},
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   138
      narrowingT U --> narrowingT T --> narrowingT U') $ u $ t)
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   139
  end
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   140
  
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   141
fun mk_sum (t, u) =
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   142
  let
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   143
    val T = fastype_of t
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   144
  in
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   145
    Const (@{const_name Quickcheck_Narrowing.sum}, T --> T --> T) $ t $ u
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   146
  end
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   147
43047
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
   148
(** deriving narrowing instances **)
41963
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   149
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   150
fun mk_equations descr vs tycos narrowings (Ts, Us) =
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   151
  let
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   152
    fun mk_call T =
42214
9ca13615c619 refactoring generator definition in quickcheck and removing clone
bulwahn
parents: 42184
diff changeset
   153
      (T, Const (@{const_name "Quickcheck_Narrowing.narrowing_class.narrowing"}, narrowingT T))
41963
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   154
    fun mk_aux_call fTs (k, _) (tyco, Ts) =
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   155
      let
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   156
        val T = Type (tyco, Ts)
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   157
        val _ = if not (null fTs) then raise FUNCTION_TYPE else ()
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   158
      in
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   159
        (T, nth narrowings k)
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   160
      end
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   161
    fun mk_consexpr simpleT (c, xs) =
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   162
      let
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   163
        val Ts = map fst xs
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   164
      in snd (fold mk_apply xs (Ts ---> simpleT, mk_cons c (Ts ---> simpleT))) end
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   165
    fun mk_rhs exprs = foldr1 mk_sum exprs
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   166
    val rhss =
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   167
      Datatype_Aux.interpret_construction descr vs
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   168
        { atyp = mk_call, dtyp = mk_aux_call }
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   169
      |> (map o apfst) Type
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   170
      |> map (fn (T, cs) => map (mk_consexpr T) cs)
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   171
      |> map mk_rhs
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   172
    val lhss = narrowings
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   173
    val eqs = map (HOLogic.mk_Trueprop o HOLogic.mk_eq) (lhss ~~ rhss)
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   174
  in
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   175
    eqs
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   176
  end
43237
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   177
    
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   178
fun contains_recursive_type_under_function_types xs =
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   179
  exists (fn (_, (_, _, cs)) => cs |> exists (snd #> exists (fn dT =>
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   180
    (case Datatype_Aux.strip_dtyp dT of (_ :: _, Datatype.DtRec _) => true | _ => false)))) xs
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   181
41963
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   182
fun instantiate_narrowing_datatype config descr vs tycos prfx (names, auxnames) (Ts, Us) thy =
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   183
  let
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   184
    val _ = Datatype_Aux.message config "Creating narrowing generators ...";
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   185
    val narrowingsN = map (prefix (narrowingN ^ "_")) (names @ auxnames);
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   186
  in
43237
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   187
    if not (contains_recursive_type_under_function_types descr) then
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   188
      thy
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   189
      |> Class.instantiation (tycos, vs, @{sort narrowing})
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   190
      |> Quickcheck_Common.define_functions
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   191
        (fn narrowings => mk_equations descr vs tycos narrowings (Ts, Us), NONE)
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   192
        prfx [] narrowingsN (map narrowingT (Ts @ Us))
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   193
      |> Class.prove_instantiation_exit (K (Class.intro_classes_tac []))
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   194
    else
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   195
      thy
41963
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   196
  end;
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   197
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   198
(* testing framework *)
d8c3b26b3da4 tuned exhaustive generator compilation; added narrowing generator compilation; removed exec as does not work properly here (reverting changeset 994d088fbfbc)
bulwahn
parents: 41953
diff changeset
   199
43308
fd6cc1378fec compilation of Haskell in its own target for Quickcheck; passing options by arguments in Narrowing_Generators
bulwahn
parents: 43240
diff changeset
   200
val target = "Haskell_Quickcheck"
41930
1e008cc4883a renaming lazysmallcheck ML file to Quickcheck_Narrowing
bulwahn
parents: 41925
diff changeset
   201
43047
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
   202
(** invocation of Haskell interpreter **)
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   203
43702
24fb44c1086a more abstract Thy_Load.load_file/use_file for external theory resources;
wenzelm
parents: 43619
diff changeset
   204
val narrowing_engine =
24fb44c1086a more abstract Thy_Load.load_file/use_file for external theory resources;
wenzelm
parents: 43619
diff changeset
   205
  Context.>>> (Context.map_theory_result
24fb44c1086a more abstract Thy_Load.load_file/use_file for external theory resources;
wenzelm
parents: 43619
diff changeset
   206
    (Thy_Load.use_file (Path.explode "Tools/Quickcheck/Narrowing_Engine.hs")))
24fb44c1086a more abstract Thy_Load.load_file/use_file for external theory resources;
wenzelm
parents: 43619
diff changeset
   207
24fb44c1086a more abstract Thy_Load.load_file/use_file for external theory resources;
wenzelm
parents: 43619
diff changeset
   208
val pnf_narrowing_engine =
24fb44c1086a more abstract Thy_Load.load_file/use_file for external theory resources;
wenzelm
parents: 43619
diff changeset
   209
  Context.>>> (Context.map_theory_result
24fb44c1086a more abstract Thy_Load.load_file/use_file for external theory resources;
wenzelm
parents: 43619
diff changeset
   210
    (Thy_Load.use_file (Path.explode "Tools/Quickcheck/PNF_Narrowing_Engine.hs")))
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   211
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   212
fun exec verbose code =
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   213
  ML_Context.exec (fn () => Secure.use_text ML_Env.local_context (0, "generated code") verbose code)
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   214
43079
4022892a2f28 improving overlord option and partial_term_of derivation; changing Narrowing_Engine to print partial terms
bulwahn
parents: 43047
diff changeset
   215
fun with_overlord_dir name f =
43047
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
   216
  let
43602
8c89a1fb30f2 standardized use of Path operations;
wenzelm
parents: 43585
diff changeset
   217
    val path =
8c89a1fb30f2 standardized use of Path operations;
wenzelm
parents: 43585
diff changeset
   218
      Path.append (Path.explode "$ISABELLE_HOME_USER") (Path.basic (name ^ serial_string ()))
43047
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
   219
    val _ = Isabelle_System.mkdirs path;
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
   220
  in Exn.release (Exn.capture f path) end;
43379
8c4b383e5143 quickcheck_narrowing returns some timing information
bulwahn
parents: 43329
diff changeset
   221
8c4b383e5143 quickcheck_narrowing returns some timing information
bulwahn
parents: 43329
diff changeset
   222
fun elapsed_time description e =
8c4b383e5143 quickcheck_narrowing returns some timing information
bulwahn
parents: 43329
diff changeset
   223
  let val ({elapsed, ...}, result) = Timing.timing e ()
8c4b383e5143 quickcheck_narrowing returns some timing information
bulwahn
parents: 43329
diff changeset
   224
  in (result, (description, Time.toMilliseconds elapsed)) end
43047
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
   225
  
45765
cb6ddee6a463 making the default behaviour of quickcheck a little bit less verbose;
bulwahn
parents: 45760
diff changeset
   226
fun value (contains_existentials, ((genuine_only, (quiet, verbose)), size)) ctxt cookie (code, value_name) =
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   227
  let
45756
295658b28d3b quickcheck narrowing continues searching after found a potentially spurious counterexample
bulwahn
parents: 45728
diff changeset
   228
    val ((is_genuine, counterexample_of), (get, put, put_ml)) = cookie
43308
fd6cc1378fec compilation of Haskell in its own target for Quickcheck; passing options by arguments in Narrowing_Generators
bulwahn
parents: 43240
diff changeset
   229
    fun message s = if quiet then () else Output.urgent_message s
45765
cb6ddee6a463 making the default behaviour of quickcheck a little bit less verbose;
bulwahn
parents: 45760
diff changeset
   230
    fun verbose_message s = if not quiet andalso verbose then Output.urgent_message s else ()
43585
ea959ab7bbe3 adding timeout to quickcheck narrowing
bulwahn
parents: 43379
diff changeset
   231
    val current_size = Unsynchronized.ref 0
ea959ab7bbe3 adding timeout to quickcheck narrowing
bulwahn
parents: 43379
diff changeset
   232
    val current_result = Unsynchronized.ref Quickcheck.empty_result 
ea959ab7bbe3 adding timeout to quickcheck narrowing
bulwahn
parents: 43379
diff changeset
   233
    fun excipit () =
ea959ab7bbe3 adding timeout to quickcheck narrowing
bulwahn
parents: 43379
diff changeset
   234
      "Quickcheck ran out of time while testing at size " ^ string_of_int (!current_size)
41930
1e008cc4883a renaming lazysmallcheck ML file to Quickcheck_Narrowing
bulwahn
parents: 41925
diff changeset
   235
    val tmp_prefix = "Quickcheck_Narrowing"
47843
4da917ed49b7 adding configuration to pass options to the ghc call in quickcheck[narrowing]
bulwahn
parents: 47330
diff changeset
   236
    val ghc_options = Config.get ctxt ghc_options
43079
4022892a2f28 improving overlord option and partial_term_of derivation; changing Narrowing_Engine to print partial terms
bulwahn
parents: 43047
diff changeset
   237
    val with_tmp_dir =
4022892a2f28 improving overlord option and partial_term_of derivation; changing Narrowing_Engine to print partial terms
bulwahn
parents: 43047
diff changeset
   238
      if Config.get ctxt overlord then with_overlord_dir else Isabelle_System.with_tmp_dir 
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   239
    fun run in_path = 
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   240
      let
44751
f523923d8182 avoid "Code" as structure name (cf. 3bc39cfe27fe)
bulwahn
parents: 44321
diff changeset
   241
        val code_file = Path.append in_path (Path.basic "Generated_Code.hs")
41930
1e008cc4883a renaming lazysmallcheck ML file to Quickcheck_Narrowing
bulwahn
parents: 41925
diff changeset
   242
        val narrowing_engine_file = Path.append in_path (Path.basic "Narrowing_Engine.hs")
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   243
        val main_file = Path.append in_path (Path.basic "Main.hs")
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   244
        val main = "module Main where {\n\n" ^
46335
0fd9ab902b5a using fully qualified module names in Haskell source, which seems to be required by GHC 7.0.4
bulwahn
parents: 46316
diff changeset
   245
          "import System.IO;\n" ^
0fd9ab902b5a using fully qualified module names in Haskell source, which seems to be required by GHC 7.0.4
bulwahn
parents: 46316
diff changeset
   246
          "import System.Environment;\n" ^
41933
10f254a4e5b9 adapting Main file generation for Quickcheck_Narrowing
bulwahn
parents: 41932
diff changeset
   247
          "import Narrowing_Engine;\n" ^
44751
f523923d8182 avoid "Code" as structure name (cf. 3bc39cfe27fe)
bulwahn
parents: 44321
diff changeset
   248
          "import Generated_Code;\n\n" ^
45685
e2e928af750b quickcheck narrowing also shows potential counterexamples
bulwahn
parents: 45420
diff changeset
   249
          "main = getArgs >>= \\[potential, size] -> " ^
e2e928af750b quickcheck narrowing also shows potential counterexamples
bulwahn
parents: 45420
diff changeset
   250
          "Narrowing_Engine.depthCheck (read potential) (read size) (Generated_Code.value ())\n\n" ^
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   251
          "}\n"
44751
f523923d8182 avoid "Code" as structure name (cf. 3bc39cfe27fe)
bulwahn
parents: 44321
diff changeset
   252
        val code' = prefix "module Generated_Code where {\n\ndata Typerep = Typerep String [Typerep];\n"
f523923d8182 avoid "Code" as structure name (cf. 3bc39cfe27fe)
bulwahn
parents: 44321
diff changeset
   253
          (unprefix "module Generated_Code where {" code)
41909
383bbdad1650 replacing strings in generated Code resolves the changing names of Typerep in lazysmallcheck prototype
bulwahn
parents: 41908
diff changeset
   254
        val _ = File.write code_file code'
43237
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   255
        val _ = File.write narrowing_engine_file
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   256
          (if contains_existentials then pnf_narrowing_engine else narrowing_engine)
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   257
        val _ = File.write main_file main
43114
b9fca691addd Quickcheck Narrowing only requires one compilation with GHC now
bulwahn
parents: 43079
diff changeset
   258
        val executable = File.shell_path (Path.append in_path (Path.basic "isabelle_quickcheck_narrowing"))
44926
de3ed037c9a5 create central list for language extensions used by the haskell code generator
noschinl
parents: 44852
diff changeset
   259
        val cmd = "exec \"$ISABELLE_GHC\" " ^ Code_Haskell.language_params ^ " " ^
47843
4da917ed49b7 adding configuration to pass options to the ghc call in quickcheck[narrowing]
bulwahn
parents: 47330
diff changeset
   260
          ghc_options ^ " " ^
41946
380f7f5ff126 proper File.shell_path;
wenzelm
parents: 41940
diff changeset
   261
          (space_implode " " (map File.shell_path [code_file, narrowing_engine_file, main_file])) ^
43114
b9fca691addd Quickcheck Narrowing only requires one compilation with GHC now
bulwahn
parents: 43079
diff changeset
   262
          " -o " ^ executable ^ ";"
43850
7f2cbc713344 moved bash operations to Isabelle_System (cf. Scala version);
wenzelm
parents: 43702
diff changeset
   263
        val (result, compilation_time) =
7f2cbc713344 moved bash operations to Isabelle_System (cf. Scala version);
wenzelm
parents: 43702
diff changeset
   264
          elapsed_time "Haskell compilation" (fn () => Isabelle_System.bash cmd) 
43585
ea959ab7bbe3 adding timeout to quickcheck narrowing
bulwahn
parents: 43379
diff changeset
   265
        val _ = Quickcheck.add_timing compilation_time current_result
45685
e2e928af750b quickcheck narrowing also shows potential counterexamples
bulwahn
parents: 45420
diff changeset
   266
        fun haskell_string_of_bool v = if v then "True" else "False"
43850
7f2cbc713344 moved bash operations to Isabelle_System (cf. Scala version);
wenzelm
parents: 43702
diff changeset
   267
        val _ = if Isabelle_System.bash cmd <> 0 then error "Compilation with GHC failed" else ()
45756
295658b28d3b quickcheck narrowing continues searching after found a potentially spurious counterexample
bulwahn
parents: 45728
diff changeset
   268
        fun with_size genuine_only k =
43308
fd6cc1378fec compilation of Haskell in its own target for Quickcheck; passing options by arguments in Narrowing_Generators
bulwahn
parents: 43240
diff changeset
   269
          if k > size then
43585
ea959ab7bbe3 adding timeout to quickcheck narrowing
bulwahn
parents: 43379
diff changeset
   270
            (NONE, !current_result)
43114
b9fca691addd Quickcheck Narrowing only requires one compilation with GHC now
bulwahn
parents: 43079
diff changeset
   271
          else
b9fca691addd Quickcheck Narrowing only requires one compilation with GHC now
bulwahn
parents: 43079
diff changeset
   272
            let
45765
cb6ddee6a463 making the default behaviour of quickcheck a little bit less verbose;
bulwahn
parents: 45760
diff changeset
   273
              val _ = verbose_message ("[Quickcheck-narrowing] Test data size: " ^ string_of_int k)
43585
ea959ab7bbe3 adding timeout to quickcheck narrowing
bulwahn
parents: 43379
diff changeset
   274
              val _ = current_size := k
ea959ab7bbe3 adding timeout to quickcheck narrowing
bulwahn
parents: 43379
diff changeset
   275
              val ((response, _), timing) = elapsed_time ("execution of size " ^ string_of_int k)
45685
e2e928af750b quickcheck narrowing also shows potential counterexamples
bulwahn
parents: 45420
diff changeset
   276
                (fn () => Isabelle_System.bash_output
45760
3b5a735897c3 inverted flag potential to genuine_only in the quickcheck narrowing Haskell code
bulwahn
parents: 45757
diff changeset
   277
                  (executable ^ " " ^ haskell_string_of_bool genuine_only ^ " " ^ string_of_int k))
43585
ea959ab7bbe3 adding timeout to quickcheck narrowing
bulwahn
parents: 43379
diff changeset
   278
              val _ = Quickcheck.add_timing timing current_result
43114
b9fca691addd Quickcheck Narrowing only requires one compilation with GHC now
bulwahn
parents: 43079
diff changeset
   279
            in
43585
ea959ab7bbe3 adding timeout to quickcheck narrowing
bulwahn
parents: 43379
diff changeset
   280
              if response = "NONE\n" then
45756
295658b28d3b quickcheck narrowing continues searching after found a potentially spurious counterexample
bulwahn
parents: 45728
diff changeset
   281
                with_size genuine_only (k + 1)
43585
ea959ab7bbe3 adding timeout to quickcheck narrowing
bulwahn
parents: 43379
diff changeset
   282
              else
ea959ab7bbe3 adding timeout to quickcheck narrowing
bulwahn
parents: 43379
diff changeset
   283
                let
ea959ab7bbe3 adding timeout to quickcheck narrowing
bulwahn
parents: 43379
diff changeset
   284
                  val output_value = the_default "NONE"
ea959ab7bbe3 adding timeout to quickcheck narrowing
bulwahn
parents: 43379
diff changeset
   285
                    (try (snd o split_last o filter_out (fn s => s = "") o split_lines) response)
ea959ab7bbe3 adding timeout to quickcheck narrowing
bulwahn
parents: 43379
diff changeset
   286
                    |> translate_string (fn s => if s = "\\" then "\\\\" else s)
ea959ab7bbe3 adding timeout to quickcheck narrowing
bulwahn
parents: 43379
diff changeset
   287
                  val ml_code = "\nval _ = Context.set_thread_data (SOME (Context.map_proof (" ^ put_ml
ea959ab7bbe3 adding timeout to quickcheck narrowing
bulwahn
parents: 43379
diff changeset
   288
                    ^ " (fn () => " ^ output_value ^ ")) (ML_Context.the_generic_context ())))";
ea959ab7bbe3 adding timeout to quickcheck narrowing
bulwahn
parents: 43379
diff changeset
   289
                  val ctxt' = ctxt
ea959ab7bbe3 adding timeout to quickcheck narrowing
bulwahn
parents: 43379
diff changeset
   290
                    |> put (fn () => error ("Bad evaluation for " ^ quote put_ml))
45756
295658b28d3b quickcheck narrowing continues searching after found a potentially spurious counterexample
bulwahn
parents: 45728
diff changeset
   291
                    |> Context.proof_map (exec false ml_code);                 
45757
e32dd098f57a renaming potential flag to genuine_only flag with an inverse semantics
bulwahn
parents: 45756
diff changeset
   292
                  val counterexample = get ctxt' ()
45756
295658b28d3b quickcheck narrowing continues searching after found a potentially spurious counterexample
bulwahn
parents: 45728
diff changeset
   293
                in
295658b28d3b quickcheck narrowing continues searching after found a potentially spurious counterexample
bulwahn
parents: 45728
diff changeset
   294
                  if is_genuine counterexample then
295658b28d3b quickcheck narrowing continues searching after found a potentially spurious counterexample
bulwahn
parents: 45728
diff changeset
   295
                    (counterexample, !current_result)
295658b28d3b quickcheck narrowing continues searching after found a potentially spurious counterexample
bulwahn
parents: 45728
diff changeset
   296
                  else
295658b28d3b quickcheck narrowing continues searching after found a potentially spurious counterexample
bulwahn
parents: 45728
diff changeset
   297
                    let
295658b28d3b quickcheck narrowing continues searching after found a potentially spurious counterexample
bulwahn
parents: 45728
diff changeset
   298
                      val cex = Option.map (rpair []) (counterexample_of counterexample)
295658b28d3b quickcheck narrowing continues searching after found a potentially spurious counterexample
bulwahn
parents: 45728
diff changeset
   299
                    in
45765
cb6ddee6a463 making the default behaviour of quickcheck a little bit less verbose;
bulwahn
parents: 45760
diff changeset
   300
                      (message (Pretty.string_of (Quickcheck.pretty_counterex ctxt false cex));
cb6ddee6a463 making the default behaviour of quickcheck a little bit less verbose;
bulwahn
parents: 45760
diff changeset
   301
                      message "Quickcheck continues to find a genuine counterexample...";
45756
295658b28d3b quickcheck narrowing continues searching after found a potentially spurious counterexample
bulwahn
parents: 45728
diff changeset
   302
                      with_size true (k + 1))
295658b28d3b quickcheck narrowing continues searching after found a potentially spurious counterexample
bulwahn
parents: 45728
diff changeset
   303
                    end
295658b28d3b quickcheck narrowing continues searching after found a potentially spurious counterexample
bulwahn
parents: 45728
diff changeset
   304
               end
43585
ea959ab7bbe3 adding timeout to quickcheck narrowing
bulwahn
parents: 43379
diff changeset
   305
            end 
45756
295658b28d3b quickcheck narrowing continues searching after found a potentially spurious counterexample
bulwahn
parents: 45728
diff changeset
   306
      in with_size genuine_only 0 end
43585
ea959ab7bbe3 adding timeout to quickcheck narrowing
bulwahn
parents: 43379
diff changeset
   307
  in
45418
e5ef7aa77fde removing extra arguments
bulwahn
parents: 45344
diff changeset
   308
    with_tmp_dir tmp_prefix run
43585
ea959ab7bbe3 adding timeout to quickcheck narrowing
bulwahn
parents: 43379
diff changeset
   309
  end;
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   310
43308
fd6cc1378fec compilation of Haskell in its own target for Quickcheck; passing options by arguments in Narrowing_Generators
bulwahn
parents: 43240
diff changeset
   311
fun dynamic_value_strict opts cookie thy postproc t =
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   312
  let
43114
b9fca691addd Quickcheck Narrowing only requires one compilation with GHC now
bulwahn
parents: 43079
diff changeset
   313
    val ctxt = Proof_Context.init_global thy
45756
295658b28d3b quickcheck narrowing continues searching after found a potentially spurious counterexample
bulwahn
parents: 45728
diff changeset
   314
    fun evaluator naming program ((_, vs_ty), t) deps =
295658b28d3b quickcheck narrowing continues searching after found a potentially spurious counterexample
bulwahn
parents: 45728
diff changeset
   315
      Exn.interruptible_capture (value opts ctxt cookie)
295658b28d3b quickcheck narrowing continues searching after found a potentially spurious counterexample
bulwahn
parents: 45728
diff changeset
   316
        (Code_Target.evaluator thy target naming program deps (vs_ty, t));    
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   317
  in Exn.release (Code_Thingol.dynamic_value thy (Exn.map_result o postproc) evaluator t) end;
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   318
43047
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
   319
(** counterexample generator **)
46042
ab32a87ba01a comments;
wenzelm
parents: 45923
diff changeset
   320
ab32a87ba01a comments;
wenzelm
parents: 45923
diff changeset
   321
(* FIXME just one data slot (record) per program unit *)
41932
e8f113ce8a94 adapting Quickcheck_Narrowing and example file to new names
bulwahn
parents: 41930
diff changeset
   322
structure Counterexample = Proof_Data
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   323
(
45725
2987b29518aa the narrowing also indicates if counterexample is potentially spurious
bulwahn
parents: 45685
diff changeset
   324
  type T = unit -> (bool * term list) option
41936
9792a882da9c renaming tester from lazy_exhaustive to narrowing
bulwahn
parents: 41933
diff changeset
   325
  fun init _ () = error "Counterexample"
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   326
)
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   327
43237
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   328
datatype counterexample = Universal_Counterexample of (term * counterexample)
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   329
  | Existential_Counterexample of (term * counterexample) list
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   330
  | Empty_Assignment
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   331
  
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   332
fun map_counterexample f Empty_Assignment = Empty_Assignment
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   333
  | map_counterexample f (Universal_Counterexample (t, c)) =
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   334
      Universal_Counterexample (f t, map_counterexample f c)
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   335
  | map_counterexample f (Existential_Counterexample cs) =
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   336
      Existential_Counterexample (map (fn (t, c) => (f t, map_counterexample f c)) cs)
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   337
46042
ab32a87ba01a comments;
wenzelm
parents: 45923
diff changeset
   338
(* FIXME just one data slot (record) per program unit *)
43237
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   339
structure Existential_Counterexample = Proof_Data
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   340
(
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   341
  type T = unit -> counterexample option
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   342
  fun init _ () = error "Counterexample"
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   343
)
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   344
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   345
val put_existential_counterexample = Existential_Counterexample.put
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   346
42024
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42023
diff changeset
   347
val put_counterexample = Counterexample.put
42023
1bd4b6d1c482 adding minimalistic setup and transformation to handle functions as data to enable naive function generation for Quickcheck_Narrowing
bulwahn
parents: 42020
diff changeset
   348
43240
da47097bd589 adding finitize_functions and processing of equivalences in existential compilation in quickcheck_narrowing
bulwahn
parents: 43237
diff changeset
   349
fun finitize_functions (xTs, t) =
42024
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42023
diff changeset
   350
  let
43240
da47097bd589 adding finitize_functions and processing of equivalences in existential compilation in quickcheck_narrowing
bulwahn
parents: 43237
diff changeset
   351
    val (names, boundTs) = split_list xTs
42024
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42023
diff changeset
   352
    fun mk_eval_ffun dT rT =
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42023
diff changeset
   353
      Const (@{const_name "Quickcheck_Narrowing.eval_ffun"}, 
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42023
diff changeset
   354
        Type (@{type_name "Quickcheck_Narrowing.ffun"}, [dT, rT]) --> dT --> rT)
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42023
diff changeset
   355
    fun mk_eval_cfun dT rT =
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42023
diff changeset
   356
      Const (@{const_name "Quickcheck_Narrowing.eval_cfun"}, 
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42023
diff changeset
   357
        Type (@{type_name "Quickcheck_Narrowing.cfun"}, [rT]) --> dT --> rT)
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42023
diff changeset
   358
    fun eval_function (T as Type (@{type_name fun}, [dT, rT])) =
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42023
diff changeset
   359
      let
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42023
diff changeset
   360
        val (rt', rT') = eval_function rT
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42023
diff changeset
   361
      in
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42023
diff changeset
   362
        case dT of
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42023
diff changeset
   363
          Type (@{type_name fun}, _) =>
44241
7943b69f0188 modernized signature of Term.absfree/absdummy;
wenzelm
parents: 43915
diff changeset
   364
            (fn t => absdummy dT (rt' (mk_eval_cfun dT rT' $ incr_boundvars 1 t $ Bound 0)),
7943b69f0188 modernized signature of Term.absfree/absdummy;
wenzelm
parents: 43915
diff changeset
   365
              Type (@{type_name "Quickcheck_Narrowing.cfun"}, [rT']))
7943b69f0188 modernized signature of Term.absfree/absdummy;
wenzelm
parents: 43915
diff changeset
   366
        | _ =>
7943b69f0188 modernized signature of Term.absfree/absdummy;
wenzelm
parents: 43915
diff changeset
   367
            (fn t => absdummy dT (rt' (mk_eval_ffun dT rT' $ incr_boundvars 1 t $ Bound 0)),
7943b69f0188 modernized signature of Term.absfree/absdummy;
wenzelm
parents: 43915
diff changeset
   368
              Type (@{type_name "Quickcheck_Narrowing.ffun"}, [dT, rT']))
42024
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42023
diff changeset
   369
      end
47330
8fe04753a210 rudimentary handling of products in finitize_functions in Quickcheck-Narrowing
bulwahn
parents: 46758
diff changeset
   370
      | eval_function (T as Type (@{type_name prod}, [fT, sT])) =
8fe04753a210 rudimentary handling of products in finitize_functions in Quickcheck-Narrowing
bulwahn
parents: 46758
diff changeset
   371
        let
8fe04753a210 rudimentary handling of products in finitize_functions in Quickcheck-Narrowing
bulwahn
parents: 46758
diff changeset
   372
          val (ft', fT') = eval_function fT
8fe04753a210 rudimentary handling of products in finitize_functions in Quickcheck-Narrowing
bulwahn
parents: 46758
diff changeset
   373
          val (st', sT') = eval_function sT
8fe04753a210 rudimentary handling of products in finitize_functions in Quickcheck-Narrowing
bulwahn
parents: 46758
diff changeset
   374
          val T' = Type (@{type_name prod}, [fT', sT'])
8fe04753a210 rudimentary handling of products in finitize_functions in Quickcheck-Narrowing
bulwahn
parents: 46758
diff changeset
   375
          val map_const = Const (@{const_name map_pair}, (fT' --> fT) --> (sT' --> sT) --> T' --> T)
8fe04753a210 rudimentary handling of products in finitize_functions in Quickcheck-Narrowing
bulwahn
parents: 46758
diff changeset
   376
          fun apply_dummy T t = absdummy T (t (Bound 0))
8fe04753a210 rudimentary handling of products in finitize_functions in Quickcheck-Narrowing
bulwahn
parents: 46758
diff changeset
   377
        in
8fe04753a210 rudimentary handling of products in finitize_functions in Quickcheck-Narrowing
bulwahn
parents: 46758
diff changeset
   378
          (fn t => list_comb (map_const, [apply_dummy fT' ft', apply_dummy sT' st', t]), T')
8fe04753a210 rudimentary handling of products in finitize_functions in Quickcheck-Narrowing
bulwahn
parents: 46758
diff changeset
   379
        end
42024
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42023
diff changeset
   380
      | eval_function T = (I, T)
43240
da47097bd589 adding finitize_functions and processing of equivalences in existential compilation in quickcheck_narrowing
bulwahn
parents: 43237
diff changeset
   381
    val (tt, boundTs') = split_list (map eval_function boundTs)
da47097bd589 adding finitize_functions and processing of equivalences in existential compilation in quickcheck_narrowing
bulwahn
parents: 43237
diff changeset
   382
    val t' = subst_bounds (map2 (fn f => fn x => f x) (rev tt) (map_index (Bound o fst) boundTs), t)
42024
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42023
diff changeset
   383
  in
43240
da47097bd589 adding finitize_functions and processing of equivalences in existential compilation in quickcheck_narrowing
bulwahn
parents: 43237
diff changeset
   384
    (names ~~ boundTs', t')
42024
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42023
diff changeset
   385
  end
42023
1bd4b6d1c482 adding minimalistic setup and transformation to handle functions as data to enable naive function generation for Quickcheck_Narrowing
bulwahn
parents: 42020
diff changeset
   386
45039
632a033616e9 adding post-processing of terms to narrowing-based Quickcheck
bulwahn
parents: 45002
diff changeset
   387
fun dest_ffun (Type (@{type_name "Quickcheck_Narrowing.ffun"}, [dT, rT])) = (dT, rT)
632a033616e9 adding post-processing of terms to narrowing-based Quickcheck
bulwahn
parents: 45002
diff changeset
   388
632a033616e9 adding post-processing of terms to narrowing-based Quickcheck
bulwahn
parents: 45002
diff changeset
   389
fun eval_finite_functions (Const (@{const_name "Quickcheck_Narrowing.ffun.Constant"}, T) $ value) =
632a033616e9 adding post-processing of terms to narrowing-based Quickcheck
bulwahn
parents: 45002
diff changeset
   390
    absdummy (fst (dest_ffun (body_type T))) (eval_finite_functions value)
632a033616e9 adding post-processing of terms to narrowing-based Quickcheck
bulwahn
parents: 45002
diff changeset
   391
  | eval_finite_functions (Const (@{const_name "Quickcheck_Narrowing.ffun.Update"}, T) $ a $ b $ f) =
632a033616e9 adding post-processing of terms to narrowing-based Quickcheck
bulwahn
parents: 45002
diff changeset
   392
    let
632a033616e9 adding post-processing of terms to narrowing-based Quickcheck
bulwahn
parents: 45002
diff changeset
   393
      val (T1, T2) = dest_ffun (body_type T)
632a033616e9 adding post-processing of terms to narrowing-based Quickcheck
bulwahn
parents: 45002
diff changeset
   394
    in
632a033616e9 adding post-processing of terms to narrowing-based Quickcheck
bulwahn
parents: 45002
diff changeset
   395
      Quickcheck_Common.mk_fun_upd T1 T2
632a033616e9 adding post-processing of terms to narrowing-based Quickcheck
bulwahn
parents: 45002
diff changeset
   396
        (eval_finite_functions a, eval_finite_functions b) (eval_finite_functions f)
632a033616e9 adding post-processing of terms to narrowing-based Quickcheck
bulwahn
parents: 45002
diff changeset
   397
    end
632a033616e9 adding post-processing of terms to narrowing-based Quickcheck
bulwahn
parents: 45002
diff changeset
   398
  | eval_finite_functions t = t
632a033616e9 adding post-processing of terms to narrowing-based Quickcheck
bulwahn
parents: 45002
diff changeset
   399
43114
b9fca691addd Quickcheck Narrowing only requires one compilation with GHC now
bulwahn
parents: 43079
diff changeset
   400
(** tester **)
43237
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   401
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   402
val rewrs =
43240
da47097bd589 adding finitize_functions and processing of equivalences in existential compilation in quickcheck_narrowing
bulwahn
parents: 43237
diff changeset
   403
    map (swap o HOLogic.dest_eq o HOLogic.dest_Trueprop o Thm.prop_of)
da47097bd589 adding finitize_functions and processing of equivalences in existential compilation in quickcheck_narrowing
bulwahn
parents: 43237
diff changeset
   404
      (@{thms all_simps} @ @{thms ex_simps})
da47097bd589 adding finitize_functions and processing of equivalences in existential compilation in quickcheck_narrowing
bulwahn
parents: 43237
diff changeset
   405
    @ map (HOLogic.dest_eq o HOLogic.dest_Trueprop o Thm.prop_of)
46316
1c9a548c0402 support for Ex1 in quickcheck-narrowing
bulwahn
parents: 46309
diff changeset
   406
        [@{thm iff_conv_conj_imp}, @{thm not_ex}, @{thm not_all},
1c9a548c0402 support for Ex1 in quickcheck-narrowing
bulwahn
parents: 46309
diff changeset
   407
         @{thm meta_eq_to_obj_eq [OF Ex1_def]}]
43237
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   408
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   409
fun make_pnf_term thy t = Pattern.rewrite_term thy rewrs [] t
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   410
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   411
fun strip_quantifiers (Const (@{const_name Ex}, _) $ Abs (x, T, t)) =
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   412
    apfst (cons (@{const_name Ex}, (x, T))) (strip_quantifiers t)
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   413
  | strip_quantifiers (Const (@{const_name All}, _) $ Abs (x, T, t)) =
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   414
    apfst (cons (@{const_name All}, (x, T))) (strip_quantifiers t)
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   415
  | strip_quantifiers t = ([], t)
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   416
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   417
fun contains_existentials t = exists (fn (Q, _) => Q = @{const_name Ex}) (fst (strip_quantifiers t))
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   418
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   419
fun mk_property qs t =
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   420
  let
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   421
    fun enclose (@{const_name Ex}, (x, T)) t =
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   422
        Const (@{const_name Quickcheck_Narrowing.exists}, (T --> @{typ property}) --> @{typ property})
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   423
          $ Abs (x, T, t)
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   424
      | enclose (@{const_name All}, (x, T)) t =
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   425
        Const (@{const_name Quickcheck_Narrowing.all}, (T --> @{typ property}) --> @{typ property})
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   426
          $ Abs (x, T, t)
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   427
  in
45002
df36896aae0f removing superfluous definition in the quickcheck narrowing invocation as the code generator now generates valid Haskell code with necessary type annotations without a separate definition
bulwahn
parents: 44926
diff changeset
   428
    fold_rev enclose qs (@{term Quickcheck_Narrowing.Property} $ t)
43237
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   429
  end
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   430
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   431
fun mk_case_term ctxt p ((@{const_name Ex}, (x, T)) :: qs') (Existential_Counterexample cs) =
45891
d73605c829cc clarified module dependencies: Datatype_Data, Datatype_Case, Rep_Datatype;
wenzelm
parents: 45765
diff changeset
   432
    Datatype_Case.make_case ctxt Datatype_Case.Quiet [] (Free (x, T)) (map (fn (t, c) =>
43317
f9283eb3a4bf fixing code generation test
bulwahn
parents: 43314
diff changeset
   433
      (t, mk_case_term ctxt (p - 1) qs' c)) cs)
43237
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   434
  | mk_case_term ctxt p ((@{const_name All}, (x, T)) :: qs') (Universal_Counterexample (t, c)) =
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   435
    if p = 0 then t else mk_case_term ctxt (p - 1) qs' c
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   436
45039
632a033616e9 adding post-processing of terms to narrowing-based Quickcheck
bulwahn
parents: 45002
diff changeset
   437
val post_process = (perhaps (try Quickcheck_Common.post_process_term)) o eval_finite_functions
632a033616e9 adding post-processing of terms to narrowing-based Quickcheck
bulwahn
parents: 45002
diff changeset
   438
43237
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   439
fun mk_terms ctxt qs result =
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   440
  let
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   441
    val
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   442
      ps = filter (fn (_, (@{const_name All}, _)) => true | _ => false) (map_index I qs)
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   443
    in
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   444
      map (fn (p, (_, (x, T))) => (x, mk_case_term ctxt p qs result)) ps
45039
632a033616e9 adding post-processing of terms to narrowing-based Quickcheck
bulwahn
parents: 45002
diff changeset
   445
      |> map (apsnd post_process)
43237
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   446
    end
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   447
  
46309
693d8d7bc3cd catching code generation errors in quickcheck-narrowing
bulwahn
parents: 46219
diff changeset
   448
fun test_term ctxt catch_code_errors (t, eval_terms) =
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   449
  let
43585
ea959ab7bbe3 adding timeout to quickcheck narrowing
bulwahn
parents: 43379
diff changeset
   450
    fun dest_result (Quickcheck.Result r) = r 
ea959ab7bbe3 adding timeout to quickcheck narrowing
bulwahn
parents: 43379
diff changeset
   451
    val opts =
45765
cb6ddee6a463 making the default behaviour of quickcheck a little bit less verbose;
bulwahn
parents: 45760
diff changeset
   452
      ((Config.get ctxt Quickcheck.genuine_only,
cb6ddee6a463 making the default behaviour of quickcheck a little bit less verbose;
bulwahn
parents: 45760
diff changeset
   453
       (Config.get ctxt Quickcheck.quiet, Config.get ctxt Quickcheck.verbose)),
45685
e2e928af750b quickcheck narrowing also shows potential counterexamples
bulwahn
parents: 45420
diff changeset
   454
        Config.get ctxt Quickcheck.size)
42361
23f352990944 modernized structure Proof_Context;
wenzelm
parents: 42258
diff changeset
   455
    val thy = Proof_Context.theory_of ctxt
43237
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   456
    val t' = fold_rev (fn (x, T) => fn t => HOLogic.mk_all (x, T, t)) (Term.add_frees t []) t
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   457
    val pnf_t = make_pnf_term thy t'
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   458
  in
43237
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   459
    if Config.get ctxt allow_existentials andalso contains_existentials pnf_t then
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   460
      let
43240
da47097bd589 adding finitize_functions and processing of equivalences in existential compilation in quickcheck_narrowing
bulwahn
parents: 43237
diff changeset
   461
        fun wrap f (qs, t) =
da47097bd589 adding finitize_functions and processing of equivalences in existential compilation in quickcheck_narrowing
bulwahn
parents: 43237
diff changeset
   462
          let val (qs1, qs2) = split_list qs in
da47097bd589 adding finitize_functions and processing of equivalences in existential compilation in quickcheck_narrowing
bulwahn
parents: 43237
diff changeset
   463
          apfst (map2 pair qs1) (f (qs2, t)) end
da47097bd589 adding finitize_functions and processing of equivalences in existential compilation in quickcheck_narrowing
bulwahn
parents: 43237
diff changeset
   464
        val finitize = if Config.get ctxt finite_functions then wrap finitize_functions else I
da47097bd589 adding finitize_functions and processing of equivalences in existential compilation in quickcheck_narrowing
bulwahn
parents: 43237
diff changeset
   465
        val (qs, prop_t) = finitize (strip_quantifiers pnf_t)
46309
693d8d7bc3cd catching code generation errors in quickcheck-narrowing
bulwahn
parents: 46219
diff changeset
   466
        val act = if catch_code_errors then try else (fn f => SOME o f)
693d8d7bc3cd catching code generation errors in quickcheck-narrowing
bulwahn
parents: 46219
diff changeset
   467
        val execute = dynamic_value_strict (true, opts)
45756
295658b28d3b quickcheck narrowing continues searching after found a potentially spurious counterexample
bulwahn
parents: 45728
diff changeset
   468
          ((K true, fn _ => error ""), (Existential_Counterexample.get, Existential_Counterexample.put,
295658b28d3b quickcheck narrowing continues searching after found a potentially spurious counterexample
bulwahn
parents: 45728
diff changeset
   469
            "Narrowing_Generators.put_existential_counterexample"))
46309
693d8d7bc3cd catching code generation errors in quickcheck-narrowing
bulwahn
parents: 46219
diff changeset
   470
          thy (apfst o Option.map o map_counterexample)
693d8d7bc3cd catching code generation errors in quickcheck-narrowing
bulwahn
parents: 46219
diff changeset
   471
      in  
693d8d7bc3cd catching code generation errors in quickcheck-narrowing
bulwahn
parents: 46219
diff changeset
   472
        case act execute (mk_property qs prop_t) of 
693d8d7bc3cd catching code generation errors in quickcheck-narrowing
bulwahn
parents: 46219
diff changeset
   473
          SOME (counterexample, result) => Quickcheck.Result
693d8d7bc3cd catching code generation errors in quickcheck-narrowing
bulwahn
parents: 46219
diff changeset
   474
            {counterexample = Option.map (pair true o mk_terms ctxt qs) counterexample,
693d8d7bc3cd catching code generation errors in quickcheck-narrowing
bulwahn
parents: 46219
diff changeset
   475
            evaluation_terms = Option.map (K []) counterexample,
693d8d7bc3cd catching code generation errors in quickcheck-narrowing
bulwahn
parents: 46219
diff changeset
   476
            timings = #timings (dest_result result), reports = #reports (dest_result result)}
693d8d7bc3cd catching code generation errors in quickcheck-narrowing
bulwahn
parents: 46219
diff changeset
   477
        | NONE =>
693d8d7bc3cd catching code generation errors in quickcheck-narrowing
bulwahn
parents: 46219
diff changeset
   478
          (Quickcheck.message ctxt ("Conjecture is not executable with Quickcheck-narrowing");
693d8d7bc3cd catching code generation errors in quickcheck-narrowing
bulwahn
parents: 46219
diff changeset
   479
           Quickcheck.empty_result)
43237
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43114
diff changeset
   480
      end
43240
da47097bd589 adding finitize_functions and processing of equivalences in existential compilation in quickcheck_narrowing
bulwahn
parents: 43237
diff changeset
   481
    else
da47097bd589 adding finitize_functions and processing of equivalences in existential compilation in quickcheck_narrowing
bulwahn
parents: 43237
diff changeset
   482
      let
45756
295658b28d3b quickcheck narrowing continues searching after found a potentially spurious counterexample
bulwahn
parents: 45728
diff changeset
   483
        val frees = Term.add_frees t []
295658b28d3b quickcheck narrowing continues searching after found a potentially spurious counterexample
bulwahn
parents: 45728
diff changeset
   484
        val t' = fold_rev absfree frees t
46219
426ed18eba43 discontinued old-style Term.list_abs in favour of plain Term.abs;
wenzelm
parents: 46042
diff changeset
   485
        fun wrap f t = uncurry (fold_rev Term.abs) (f (strip_abs t))
43240
da47097bd589 adding finitize_functions and processing of equivalences in existential compilation in quickcheck_narrowing
bulwahn
parents: 43237
diff changeset
   486
        val finitize = if Config.get ctxt finite_functions then wrap finitize_functions else I
da47097bd589 adding finitize_functions and processing of equivalences in existential compilation in quickcheck_narrowing
bulwahn
parents: 43237
diff changeset
   487
        fun ensure_testable t =
da47097bd589 adding finitize_functions and processing of equivalences in existential compilation in quickcheck_narrowing
bulwahn
parents: 43237
diff changeset
   488
          Const (@{const_name Quickcheck_Narrowing.ensure_testable}, fastype_of t --> fastype_of t) $ t
45756
295658b28d3b quickcheck narrowing continues searching after found a potentially spurious counterexample
bulwahn
parents: 45728
diff changeset
   489
        fun is_genuine (SOME (true, _)) = true 
295658b28d3b quickcheck narrowing continues searching after found a potentially spurious counterexample
bulwahn
parents: 45728
diff changeset
   490
          | is_genuine _ = false
295658b28d3b quickcheck narrowing continues searching after found a potentially spurious counterexample
bulwahn
parents: 45728
diff changeset
   491
        val counterexample_of = Option.map (apsnd (curry (op ~~) (map fst frees) o map post_process))
46309
693d8d7bc3cd catching code generation errors in quickcheck-narrowing
bulwahn
parents: 46219
diff changeset
   492
        val act = if catch_code_errors then try else (fn f => SOME o f)
693d8d7bc3cd catching code generation errors in quickcheck-narrowing
bulwahn
parents: 46219
diff changeset
   493
        val execute = dynamic_value_strict (false, opts)
45756
295658b28d3b quickcheck narrowing continues searching after found a potentially spurious counterexample
bulwahn
parents: 45728
diff changeset
   494
          ((is_genuine, counterexample_of),
295658b28d3b quickcheck narrowing continues searching after found a potentially spurious counterexample
bulwahn
parents: 45728
diff changeset
   495
            (Counterexample.get, Counterexample.put, "Narrowing_Generators.put_counterexample"))
46309
693d8d7bc3cd catching code generation errors in quickcheck-narrowing
bulwahn
parents: 46219
diff changeset
   496
          thy (apfst o Option.map o apsnd o map)
43240
da47097bd589 adding finitize_functions and processing of equivalences in existential compilation in quickcheck_narrowing
bulwahn
parents: 43237
diff changeset
   497
      in
46309
693d8d7bc3cd catching code generation errors in quickcheck-narrowing
bulwahn
parents: 46219
diff changeset
   498
        case act execute (ensure_testable (finitize t')) of 
693d8d7bc3cd catching code generation errors in quickcheck-narrowing
bulwahn
parents: 46219
diff changeset
   499
          SOME (counterexample, result) =>
693d8d7bc3cd catching code generation errors in quickcheck-narrowing
bulwahn
parents: 46219
diff changeset
   500
            Quickcheck.Result
693d8d7bc3cd catching code generation errors in quickcheck-narrowing
bulwahn
parents: 46219
diff changeset
   501
             {counterexample = counterexample_of counterexample,
693d8d7bc3cd catching code generation errors in quickcheck-narrowing
bulwahn
parents: 46219
diff changeset
   502
              evaluation_terms = Option.map (K []) counterexample,
693d8d7bc3cd catching code generation errors in quickcheck-narrowing
bulwahn
parents: 46219
diff changeset
   503
              timings = #timings (dest_result result),
693d8d7bc3cd catching code generation errors in quickcheck-narrowing
bulwahn
parents: 46219
diff changeset
   504
              reports = #reports (dest_result result)}
693d8d7bc3cd catching code generation errors in quickcheck-narrowing
bulwahn
parents: 46219
diff changeset
   505
        | NONE =>
693d8d7bc3cd catching code generation errors in quickcheck-narrowing
bulwahn
parents: 46219
diff changeset
   506
          (Quickcheck.message ctxt ("Conjecture is not executable with Quickcheck-narrowing");
693d8d7bc3cd catching code generation errors in quickcheck-narrowing
bulwahn
parents: 46219
diff changeset
   507
           Quickcheck.empty_result)
43240
da47097bd589 adding finitize_functions and processing of equivalences in existential compilation in quickcheck_narrowing
bulwahn
parents: 43237
diff changeset
   508
      end
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   509
  end;
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   510
46309
693d8d7bc3cd catching code generation errors in quickcheck-narrowing
bulwahn
parents: 46219
diff changeset
   511
fun test_goals ctxt catch_code_errors insts goals =
43314
a9090cabca14 adding a nicer error message for quickcheck_narrowing; hiding fact empty_def
bulwahn
parents: 43308
diff changeset
   512
  if (not (getenv "ISABELLE_GHC" = "")) then
a9090cabca14 adding a nicer error message for quickcheck_narrowing; hiding fact empty_def
bulwahn
parents: 43308
diff changeset
   513
    let
45765
cb6ddee6a463 making the default behaviour of quickcheck a little bit less verbose;
bulwahn
parents: 45760
diff changeset
   514
      val _ = Quickcheck.message ctxt ("Testing conjecture with Quickcheck-narrowing...")
45159
3f1d1ce024cb moving some common functions from quickcheck to the more HOL-specific quickcheck_common; renamed inductive_SML's configurations to more canonical names; adds automatically left and right hand sides of equations as evaluation terms
bulwahn
parents: 45039
diff changeset
   515
      val correct_inst_goals = Quickcheck_Common.instantiate_goals ctxt insts goals
43314
a9090cabca14 adding a nicer error message for quickcheck_narrowing; hiding fact empty_def
bulwahn
parents: 43308
diff changeset
   516
    in
46309
693d8d7bc3cd catching code generation errors in quickcheck-narrowing
bulwahn
parents: 46219
diff changeset
   517
      Quickcheck_Common.collect_results (test_term ctxt catch_code_errors)
693d8d7bc3cd catching code generation errors in quickcheck-narrowing
bulwahn
parents: 46219
diff changeset
   518
        (maps (map snd) correct_inst_goals) []
43314
a9090cabca14 adding a nicer error message for quickcheck_narrowing; hiding fact empty_def
bulwahn
parents: 43308
diff changeset
   519
    end
a9090cabca14 adding a nicer error message for quickcheck_narrowing; hiding fact empty_def
bulwahn
parents: 43308
diff changeset
   520
  else
a9090cabca14 adding a nicer error message for quickcheck_narrowing; hiding fact empty_def
bulwahn
parents: 43308
diff changeset
   521
    (if Config.get ctxt Quickcheck.quiet then () else Output.urgent_message
a9090cabca14 adding a nicer error message for quickcheck_narrowing; hiding fact empty_def
bulwahn
parents: 43308
diff changeset
   522
      ("Environment variable ISABELLE_GHC is not set. To use narrowing-based quickcheck, please set "
43911
a1da544e2652 more information for the user how to deactivate quickcheck_narrowing if he does not want to use it
bulwahn
parents: 43910
diff changeset
   523
        ^ "this variable to your GHC Haskell compiler in your settings file. "
a1da544e2652 more information for the user how to deactivate quickcheck_narrowing if he does not want to use it
bulwahn
parents: 43910
diff changeset
   524
        ^ "To deactivate narrowing-based quickcheck, set quickcheck_narrowing_active to false.");
a1da544e2652 more information for the user how to deactivate quickcheck_narrowing if he does not want to use it
bulwahn
parents: 43910
diff changeset
   525
      [Quickcheck.empty_result])
43114
b9fca691addd Quickcheck Narrowing only requires one compilation with GHC now
bulwahn
parents: 43079
diff changeset
   526
43047
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
   527
(* setup *)
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   528
46587
d3bcc356cc60 preliminarily switching quickcheck-narrowing off by default (probably it should only be invoked if concrete testing does not work)
bulwahn
parents: 46335
diff changeset
   529
val active = Attrib.setup_config_bool @{binding quickcheck_narrowing_active} (K false);
43878
eeb10fdd9535 changed every tester to have a configuration in quickcheck; enabling parallel testing of different testers in quickcheck
bulwahn
parents: 43850
diff changeset
   530
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   531
val setup =
43047
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
   532
  Code.datatype_interpretation ensure_partial_term_of
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42616
diff changeset
   533
  #> Code.datatype_interpretation ensure_partial_term_of_code
45923
473b744c23f2 generalize ensure_sort_datatype to ensure_sort in quickcheck_common to allow generators for abstract types;
bulwahn
parents: 45891
diff changeset
   534
  #> Quickcheck_Common.datatype_interpretation (@{sort narrowing}, instantiate_narrowing_datatype)
43878
eeb10fdd9535 changed every tester to have a configuration in quickcheck; enabling parallel testing of different testers in quickcheck
bulwahn
parents: 43850
diff changeset
   535
  #> Context.theory_map (Quickcheck.add_tester ("narrowing", (active, test_goals)))
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   536
    
44272
360fcbb1aa01 activating narrowing-based quickcheck by default
bulwahn
parents: 44241
diff changeset
   537
end;