src/HOL/Tools/Quickcheck/exhaustive_generators.ML
author bulwahn
Thu, 01 Dec 2011 22:14:35 +0100
changeset 45722 63b42a7db003
parent 45721 d1fb55c2ed65
child 45724 1f5fc44254d7
permissions -rw-r--r--
changing the exhaustive generator signatures; replacing the hard-wired result type by its own identifier
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
41923
f05fc0711bc7 renaming signatures and structures; correcting header
bulwahn
parents: 41920
diff changeset
     1
(*  Title:      HOL/Tools/Quickcheck/exhaustive_generators.ML
40420
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
     2
    Author:     Lukas Bulwahn, TU Muenchen
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
     3
41918
d2ab869f8b0b replacing naming of small by exhaustive
bulwahn
parents: 41917
diff changeset
     4
Exhaustive generators for various types.
40420
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
     5
*)
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
     6
41918
d2ab869f8b0b replacing naming of small by exhaustive
bulwahn
parents: 41917
diff changeset
     7
signature EXHAUSTIVE_GENERATORS =
40420
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
     8
sig
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
     9
  val compile_generator_expr:
45721
d1fb55c2ed65 quickcheck's compilation returns if it is genuine counterexample or a counterexample due to a match exception
bulwahn
parents: 45718
diff changeset
    10
    Proof.context -> (term * term list) list -> int list -> (bool * term list) option * Quickcheck.report option
42159
234ec7011e5d generalizing compilation scheme of quickcheck generators to multiple arguments; changing random and exhaustive tester to use one code invocation for polymorphic instances with multiple cardinalities
bulwahn
parents: 42028
diff changeset
    11
  val compile_generator_exprs: Proof.context -> term list -> (int -> term list option) list
42195
1e7b62c93f5d adding an exhaustive validator for quickcheck's batch validating; moving strip_imp; minimal setup for bounded_forall
bulwahn
parents: 42176
diff changeset
    12
  val compile_validator_exprs: Proof.context -> term list -> (int -> bool) list
45721
d1fb55c2ed65 quickcheck's compilation returns if it is genuine counterexample or a counterexample due to a match exception
bulwahn
parents: 45718
diff changeset
    13
  val put_counterexample: (unit -> int -> int -> (bool * term list) option)
40420
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    14
    -> Proof.context -> Proof.context
41861
77d87dc50e5a adding a function to compile a batch of terms for quickcheck with one code generation invocation
bulwahn
parents: 41472
diff changeset
    15
  val put_counterexample_batch: (unit -> (int -> term list option) list)
77d87dc50e5a adding a function to compile a batch of terms for quickcheck with one code generation invocation
bulwahn
parents: 41472
diff changeset
    16
    -> Proof.context -> Proof.context
42195
1e7b62c93f5d adding an exhaustive validator for quickcheck's batch validating; moving strip_imp; minimal setup for bounded_forall
bulwahn
parents: 42176
diff changeset
    17
  val put_validator_batch: (unit -> (int -> bool) list) -> Proof.context -> Proof.context
42306
51a08b2699d5 adding an even faster compilation scheme
bulwahn
parents: 42304
diff changeset
    18
  exception Counterexample of term list
42195
1e7b62c93f5d adding an exhaustive validator for quickcheck's batch validating; moving strip_imp; minimal setup for bounded_forall
bulwahn
parents: 42176
diff changeset
    19
  val smart_quantifier : bool Config.T
1e7b62c93f5d adding an exhaustive validator for quickcheck's batch validating; moving strip_imp; minimal setup for bounded_forall
bulwahn
parents: 42176
diff changeset
    20
  val quickcheck_pretty : bool Config.T
45484
23871e17dddb setting up exhaustive generators which are used for the smart generators
bulwahn
parents: 45420
diff changeset
    21
  val setup_exhaustive_datatype_interpretation : theory -> theory
40420
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    22
  val setup: theory -> theory
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    23
end;
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    24
41918
d2ab869f8b0b replacing naming of small by exhaustive
bulwahn
parents: 41917
diff changeset
    25
structure Exhaustive_Generators : EXHAUSTIVE_GENERATORS =
40420
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    26
struct
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    27
42308
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
    28
(* basics *)
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
    29
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
    30
(** dynamic options **)
40907
45ba9f05583a adding smart quantifiers to exhaustive testing
bulwahn
parents: 40901
diff changeset
    31
42616
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42391
diff changeset
    32
val smart_quantifier = Attrib.setup_config_bool @{binding quickcheck_smart_quantifier} (K true)
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42391
diff changeset
    33
val fast = Attrib.setup_config_bool @{binding quickcheck_fast} (K false)
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42391
diff changeset
    34
val bounded_forall = Attrib.setup_config_bool @{binding quickcheck_bounded_forall} (K false)
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42391
diff changeset
    35
val full_support = Attrib.setup_config_bool @{binding quickcheck_full_support} (K true)
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42391
diff changeset
    36
val quickcheck_pretty = Attrib.setup_config_bool @{binding quickcheck_pretty} (K true)
41903
39fd77f0ae59 fixing postprocessing; adding a configuration to enable and disable pretty presentation of quickcheck's counterexample
bulwahn
parents: 41902
diff changeset
    37
 
40420
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    38
(** general term functions **)
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    39
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    40
fun mk_measure f =
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    41
  let
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    42
    val Type ("fun", [T, @{typ nat}]) = fastype_of f 
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    43
  in
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    44
    Const (@{const_name Wellfounded.measure},
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    45
      (T --> @{typ nat}) --> HOLogic.mk_prodT (T, T) --> @{typ bool})
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    46
    $ f
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    47
  end
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    48
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    49
fun mk_sumcases rT f (Type (@{type_name Sum_Type.sum}, [TL, TR])) =
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    50
  let
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    51
    val lt = mk_sumcases rT f TL
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    52
    val rt = mk_sumcases rT f TR
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    53
  in
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    54
    SumTree.mk_sumcase TL TR rT lt rt
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    55
  end
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    56
  | mk_sumcases _ f T = f T
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    57
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    58
(** abstract syntax **)
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    59
40639
f1f0e6adca0a adding function generation to SmallCheck; activating exhaustive search space testing
bulwahn
parents: 40420
diff changeset
    60
fun termifyT T = HOLogic.mk_prodT (T, @{typ "unit => Code_Evaluation.term"});
f1f0e6adca0a adding function generation to SmallCheck; activating exhaustive search space testing
bulwahn
parents: 40420
diff changeset
    61
40420
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    62
val size = @{term "i :: code_numeral"}
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    63
val size_pred = @{term "(i :: code_numeral) - 1"}
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    64
val size_ge_zero = @{term "(i :: code_numeral) > 0"}
42304
34366f39d32d new compilation for exhaustive quickcheck
bulwahn
parents: 42273
diff changeset
    65
40420
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    66
fun mk_none_continuation (x, y) =
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    67
  let
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    68
    val (T as Type(@{type_name "option"}, [T'])) = fastype_of x
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    69
  in
42214
9ca13615c619 refactoring generator definition in quickcheck and removing clone
bulwahn
parents: 42195
diff changeset
    70
    Const (@{const_name "Quickcheck_Exhaustive.orelse"}, T --> T --> T) $ x $ y
40420
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    71
  end
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    72
42306
51a08b2699d5 adding an even faster compilation scheme
bulwahn
parents: 42304
diff changeset
    73
fun mk_unit_let (x, y) =
44241
7943b69f0188 modernized signature of Term.absfree/absdummy;
wenzelm
parents: 43878
diff changeset
    74
  Const (@{const_name "Let"}, @{typ "unit => (unit => unit) => unit"}) $ x $ absdummy @{typ unit} y
45721
d1fb55c2ed65 quickcheck's compilation returns if it is genuine counterexample or a counterexample due to a match exception
bulwahn
parents: 45718
diff changeset
    75
d1fb55c2ed65 quickcheck's compilation returns if it is genuine counterexample or a counterexample due to a match exception
bulwahn
parents: 45718
diff changeset
    76
fun mk_if (b, t, e) =
d1fb55c2ed65 quickcheck's compilation returns if it is genuine counterexample or a counterexample due to a match exception
bulwahn
parents: 45718
diff changeset
    77
  let
d1fb55c2ed65 quickcheck's compilation returns if it is genuine counterexample or a counterexample due to a match exception
bulwahn
parents: 45718
diff changeset
    78
    val T = fastype_of t
d1fb55c2ed65 quickcheck's compilation returns if it is genuine counterexample or a counterexample due to a match exception
bulwahn
parents: 45718
diff changeset
    79
  in Const (@{const_name "HOL.If"}, @{typ bool} --> T --> T --> T) $ b $ t $ e end
d1fb55c2ed65 quickcheck's compilation returns if it is genuine counterexample or a counterexample due to a match exception
bulwahn
parents: 45718
diff changeset
    80
42308
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
    81
(* handling inductive datatypes *)
40420
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    82
42308
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
    83
(** constructing generator instances **)
40420
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    84
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
    85
exception FUNCTION_TYPE;
42306
51a08b2699d5 adding an even faster compilation scheme
bulwahn
parents: 42304
diff changeset
    86
51a08b2699d5 adding an even faster compilation scheme
bulwahn
parents: 42304
diff changeset
    87
exception Counterexample of term list
51a08b2699d5 adding an even faster compilation scheme
bulwahn
parents: 42304
diff changeset
    88
45722
63b42a7db003 changing the exhaustive generator signatures;
bulwahn
parents: 45721
diff changeset
    89
val resultT =  @{typ "(bool * term list) option"};
63b42a7db003 changing the exhaustive generator signatures;
bulwahn
parents: 45721
diff changeset
    90
41918
d2ab869f8b0b replacing naming of small by exhaustive
bulwahn
parents: 41917
diff changeset
    91
val exhaustiveN = "exhaustive";
42304
34366f39d32d new compilation for exhaustive quickcheck
bulwahn
parents: 42273
diff changeset
    92
val full_exhaustiveN = "full_exhaustive";
42306
51a08b2699d5 adding an even faster compilation scheme
bulwahn
parents: 42304
diff changeset
    93
val fast_exhaustiveN = "fast_exhaustive";
42308
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
    94
val bounded_forallN = "bounded_forall";
42306
51a08b2699d5 adding an even faster compilation scheme
bulwahn
parents: 42304
diff changeset
    95
51a08b2699d5 adding an even faster compilation scheme
bulwahn
parents: 42304
diff changeset
    96
fun fast_exhaustiveT T = (T --> @{typ unit})
51a08b2699d5 adding an even faster compilation scheme
bulwahn
parents: 42304
diff changeset
    97
  --> @{typ code_numeral} --> @{typ unit}
51a08b2699d5 adding an even faster compilation scheme
bulwahn
parents: 42304
diff changeset
    98
42304
34366f39d32d new compilation for exhaustive quickcheck
bulwahn
parents: 42273
diff changeset
    99
fun exhaustiveT T = (T --> @{typ "Code_Evaluation.term list option"})
34366f39d32d new compilation for exhaustive quickcheck
bulwahn
parents: 42273
diff changeset
   100
  --> @{typ code_numeral} --> @{typ "Code_Evaluation.term list option"}
34366f39d32d new compilation for exhaustive quickcheck
bulwahn
parents: 42273
diff changeset
   101
42308
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   102
fun bounded_forallT T = (T --> @{typ bool}) --> @{typ code_numeral} --> @{typ bool}
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   103
45722
63b42a7db003 changing the exhaustive generator signatures;
bulwahn
parents: 45721
diff changeset
   104
fun full_exhaustiveT T = (termifyT T --> resultT) --> @{typ code_numeral} --> resultT
41085
a549ff1d4070 adding a smarter enumeration scheme for finite functions
bulwahn
parents: 40913
diff changeset
   105
45722
63b42a7db003 changing the exhaustive generator signatures;
bulwahn
parents: 45721
diff changeset
   106
fun check_allT T = (termifyT T --> resultT) --> resultT
41085
a549ff1d4070 adding a smarter enumeration scheme for finite functions
bulwahn
parents: 40913
diff changeset
   107
42307
72e2fabb4bc2 creating a general mk_equation_terms for the different compilations
bulwahn
parents: 42306
diff changeset
   108
fun mk_equation_terms generics (descr, vs, Ts) =
72e2fabb4bc2 creating a general mk_equation_terms for the different compilations
bulwahn
parents: 42306
diff changeset
   109
  let
72e2fabb4bc2 creating a general mk_equation_terms for the different compilations
bulwahn
parents: 42306
diff changeset
   110
    val (mk_call, mk_aux_call, mk_consexpr, mk_rhs, test_function, exhaustives) = generics
72e2fabb4bc2 creating a general mk_equation_terms for the different compilations
bulwahn
parents: 42306
diff changeset
   111
    val rhss =
72e2fabb4bc2 creating a general mk_equation_terms for the different compilations
bulwahn
parents: 42306
diff changeset
   112
      Datatype_Aux.interpret_construction descr vs
72e2fabb4bc2 creating a general mk_equation_terms for the different compilations
bulwahn
parents: 42306
diff changeset
   113
        { atyp = mk_call, dtyp = mk_aux_call }
72e2fabb4bc2 creating a general mk_equation_terms for the different compilations
bulwahn
parents: 42306
diff changeset
   114
      |> (map o apfst) Type
72e2fabb4bc2 creating a general mk_equation_terms for the different compilations
bulwahn
parents: 42306
diff changeset
   115
      |> map (fn (T, cs) => map (mk_consexpr T) cs)
72e2fabb4bc2 creating a general mk_equation_terms for the different compilations
bulwahn
parents: 42306
diff changeset
   116
      |> map mk_rhs
72e2fabb4bc2 creating a general mk_equation_terms for the different compilations
bulwahn
parents: 42306
diff changeset
   117
    val lhss = map2 (fn t => fn T => t $ test_function T $ size) exhaustives Ts
72e2fabb4bc2 creating a general mk_equation_terms for the different compilations
bulwahn
parents: 42306
diff changeset
   118
  in
72e2fabb4bc2 creating a general mk_equation_terms for the different compilations
bulwahn
parents: 42306
diff changeset
   119
    map (HOLogic.mk_Trueprop o HOLogic.mk_eq) (lhss ~~ rhss)
72e2fabb4bc2 creating a general mk_equation_terms for the different compilations
bulwahn
parents: 42306
diff changeset
   120
  end
42306
51a08b2699d5 adding an even faster compilation scheme
bulwahn
parents: 42304
diff changeset
   121
44241
7943b69f0188 modernized signature of Term.absfree/absdummy;
wenzelm
parents: 43878
diff changeset
   122
fun gen_mk_call c T =  (T, fn t => c T $ absdummy T t $ size_pred)
42308
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   123
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   124
fun gen_mk_aux_call functerms fTs (k, _) (tyco, Ts) =
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   125
  let
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   126
    val T = Type (tyco, Ts)
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   127
    val _ = if not (null fTs) then raise FUNCTION_TYPE else ()
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   128
  in
44241
7943b69f0188 modernized signature of Term.absfree/absdummy;
wenzelm
parents: 43878
diff changeset
   129
   (T, fn t => nth functerms k $ absdummy T t $ size_pred)
42308
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   130
  end
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   131
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   132
fun gen_mk_consexpr test_function functerms simpleT (c, xs) =
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   133
  let
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   134
    val (Ts, fns) = split_list xs
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   135
    val constr = Const (c, Ts ---> simpleT)
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   136
    val bounds = map Bound (((length xs) - 1) downto 0)
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   137
    val term_bounds = map (fn x => Bound (2 * x)) (((length xs) - 1) downto 0)
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   138
    val start_term = test_function simpleT $ list_comb (constr, bounds)
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   139
  in fold_rev (fn f => fn t => f t) fns start_term end
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   140
      
42307
72e2fabb4bc2 creating a general mk_equation_terms for the different compilations
bulwahn
parents: 42306
diff changeset
   141
fun mk_fast_equations functerms =
42306
51a08b2699d5 adding an even faster compilation scheme
bulwahn
parents: 42304
diff changeset
   142
  let
42307
72e2fabb4bc2 creating a general mk_equation_terms for the different compilations
bulwahn
parents: 42306
diff changeset
   143
    fun test_function T = Free ("f", T --> @{typ "unit"})
42308
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   144
    val mk_call = gen_mk_call (fn T =>
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   145
      Const (@{const_name "Quickcheck_Exhaustive.fast_exhaustive_class.fast_exhaustive"},
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   146
        fast_exhaustiveT T))
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   147
    val mk_aux_call = gen_mk_aux_call functerms
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   148
    val mk_consexpr = gen_mk_consexpr test_function functerms
42307
72e2fabb4bc2 creating a general mk_equation_terms for the different compilations
bulwahn
parents: 42306
diff changeset
   149
    fun mk_rhs exprs = @{term "If :: bool => unit => unit => unit"}
72e2fabb4bc2 creating a general mk_equation_terms for the different compilations
bulwahn
parents: 42306
diff changeset
   150
        $ size_ge_zero $ (foldr1 mk_unit_let exprs) $ @{term "()"}
42306
51a08b2699d5 adding an even faster compilation scheme
bulwahn
parents: 42304
diff changeset
   151
  in
42307
72e2fabb4bc2 creating a general mk_equation_terms for the different compilations
bulwahn
parents: 42306
diff changeset
   152
    mk_equation_terms (mk_call, mk_aux_call, mk_consexpr, mk_rhs, test_function, functerms)
42306
51a08b2699d5 adding an even faster compilation scheme
bulwahn
parents: 42304
diff changeset
   153
  end
42307
72e2fabb4bc2 creating a general mk_equation_terms for the different compilations
bulwahn
parents: 42306
diff changeset
   154
72e2fabb4bc2 creating a general mk_equation_terms for the different compilations
bulwahn
parents: 42306
diff changeset
   155
fun mk_equations functerms =
40420
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
   156
  let
42307
72e2fabb4bc2 creating a general mk_equation_terms for the different compilations
bulwahn
parents: 42306
diff changeset
   157
    fun test_function T = Free ("f", T --> @{typ "term list option"})
42308
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   158
    val mk_call = gen_mk_call (fn T =>
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   159
      Const (@{const_name "Quickcheck_Exhaustive.exhaustive_class.exhaustive"}, exhaustiveT T))
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   160
    val mk_aux_call = gen_mk_aux_call functerms
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   161
    val mk_consexpr = gen_mk_consexpr test_function functerms
42304
34366f39d32d new compilation for exhaustive quickcheck
bulwahn
parents: 42273
diff changeset
   162
    fun mk_rhs exprs =
45721
d1fb55c2ed65 quickcheck's compilation returns if it is genuine counterexample or a counterexample due to a match exception
bulwahn
parents: 45718
diff changeset
   163
      mk_if (size_ge_zero, foldr1 mk_none_continuation exprs, @{term "None :: term list option"})
42304
34366f39d32d new compilation for exhaustive quickcheck
bulwahn
parents: 42273
diff changeset
   164
  in
42307
72e2fabb4bc2 creating a general mk_equation_terms for the different compilations
bulwahn
parents: 42306
diff changeset
   165
    mk_equation_terms (mk_call, mk_aux_call, mk_consexpr, mk_rhs, test_function, functerms)
42304
34366f39d32d new compilation for exhaustive quickcheck
bulwahn
parents: 42273
diff changeset
   166
  end
42308
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   167
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   168
fun mk_bounded_forall_equations functerms =
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   169
  let
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   170
    fun test_function T = Free ("P", T --> @{typ bool})
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   171
    val mk_call = gen_mk_call (fn T =>
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   172
      Const (@{const_name "Quickcheck_Exhaustive.bounded_forall_class.bounded_forall"},
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   173
        bounded_forallT T))
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   174
    val mk_aux_call = gen_mk_aux_call functerms
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   175
    val mk_consexpr = gen_mk_consexpr test_function functerms
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   176
    fun mk_rhs exprs =
45721
d1fb55c2ed65 quickcheck's compilation returns if it is genuine counterexample or a counterexample due to a match exception
bulwahn
parents: 45718
diff changeset
   177
      mk_if (size_ge_zero, foldr1 HOLogic.mk_conj exprs, @{term "True"})
42308
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   178
  in
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   179
    mk_equation_terms (mk_call, mk_aux_call, mk_consexpr, mk_rhs, test_function, functerms)
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   180
  end
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   181
  
42307
72e2fabb4bc2 creating a general mk_equation_terms for the different compilations
bulwahn
parents: 42306
diff changeset
   182
fun mk_full_equations functerms =
42304
34366f39d32d new compilation for exhaustive quickcheck
bulwahn
parents: 42273
diff changeset
   183
  let
45722
63b42a7db003 changing the exhaustive generator signatures;
bulwahn
parents: 45721
diff changeset
   184
    fun test_function T = Free ("f", termifyT T --> resultT)
63b42a7db003 changing the exhaustive generator signatures;
bulwahn
parents: 45721
diff changeset
   185
    fun split_const T = HOLogic.split_const (T, @{typ "unit => Code_Evaluation.term"}, resultT)
42304
34366f39d32d new compilation for exhaustive quickcheck
bulwahn
parents: 42273
diff changeset
   186
    fun mk_call T =
34366f39d32d new compilation for exhaustive quickcheck
bulwahn
parents: 42273
diff changeset
   187
      let
42307
72e2fabb4bc2 creating a general mk_equation_terms for the different compilations
bulwahn
parents: 42306
diff changeset
   188
        val full_exhaustive =
42310
c664cc5cc5e9 splitting exhaustive and full_exhaustive into separate type classes
bulwahn
parents: 42309
diff changeset
   189
          Const (@{const_name "Quickcheck_Exhaustive.full_exhaustive_class.full_exhaustive"},
42308
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   190
            full_exhaustiveT T)
45721
d1fb55c2ed65 quickcheck's compilation returns if it is genuine counterexample or a counterexample due to a match exception
bulwahn
parents: 45718
diff changeset
   191
      in                                   
44241
7943b69f0188 modernized signature of Term.absfree/absdummy;
wenzelm
parents: 43878
diff changeset
   192
        (T, fn t => full_exhaustive $
45722
63b42a7db003 changing the exhaustive generator signatures;
bulwahn
parents: 45721
diff changeset
   193
          (split_const T $ absdummy T (absdummy @{typ "unit => Code_Evaluation.term"} t)) $ size_pred)
40420
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
   194
      end
41918
d2ab869f8b0b replacing naming of small by exhaustive
bulwahn
parents: 41917
diff changeset
   195
    fun mk_aux_call fTs (k, _) (tyco, Ts) =
40420
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
   196
      let
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
   197
        val T = Type (tyco, Ts)
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
   198
        val _ = if not (null fTs) then raise FUNCTION_TYPE else ()
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
   199
      in
44241
7943b69f0188 modernized signature of Term.absfree/absdummy;
wenzelm
parents: 43878
diff changeset
   200
        (T, fn t => nth functerms k $
45722
63b42a7db003 changing the exhaustive generator signatures;
bulwahn
parents: 45721
diff changeset
   201
          (split_const T $ absdummy T (absdummy @{typ "unit => Code_Evaluation.term"} t)) $ size_pred)
40420
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
   202
      end
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
   203
    fun mk_consexpr simpleT (c, xs) =
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
   204
      let
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
   205
        val (Ts, fns) = split_list xs
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
   206
        val constr = Const (c, Ts ---> simpleT)
40639
f1f0e6adca0a adding function generation to SmallCheck; activating exhaustive search space testing
bulwahn
parents: 40420
diff changeset
   207
        val bounds = map (fn x => Bound (2 * x + 1)) (((length xs) - 1) downto 0)
f1f0e6adca0a adding function generation to SmallCheck; activating exhaustive search space testing
bulwahn
parents: 40420
diff changeset
   208
        val term_bounds = map (fn x => Bound (2 * x)) (((length xs) - 1) downto 0)
f1f0e6adca0a adding function generation to SmallCheck; activating exhaustive search space testing
bulwahn
parents: 40420
diff changeset
   209
        val Eval_App = Const ("Code_Evaluation.App", HOLogic.termT --> HOLogic.termT --> HOLogic.termT)
f1f0e6adca0a adding function generation to SmallCheck; activating exhaustive search space testing
bulwahn
parents: 40420
diff changeset
   210
        val Eval_Const = Const ("Code_Evaluation.Const", HOLogic.literalT --> @{typ typerep} --> HOLogic.termT)
f1f0e6adca0a adding function generation to SmallCheck; activating exhaustive search space testing
bulwahn
parents: 40420
diff changeset
   211
        val term = fold (fn u => fn t => Eval_App $ t $ (u $ @{term "()"}))
f1f0e6adca0a adding function generation to SmallCheck; activating exhaustive search space testing
bulwahn
parents: 40420
diff changeset
   212
          bounds (Eval_Const $ HOLogic.mk_literal c $ HOLogic.mk_typerep (Ts ---> simpleT))
42307
72e2fabb4bc2 creating a general mk_equation_terms for the different compilations
bulwahn
parents: 42306
diff changeset
   213
        val start_term = test_function simpleT $ 
40639
f1f0e6adca0a adding function generation to SmallCheck; activating exhaustive search space testing
bulwahn
parents: 40420
diff changeset
   214
        (HOLogic.pair_const simpleT @{typ "unit => Code_Evaluation.term"}
44241
7943b69f0188 modernized signature of Term.absfree/absdummy;
wenzelm
parents: 43878
diff changeset
   215
          $ (list_comb (constr, bounds)) $ absdummy @{typ unit} term)
40420
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
   216
      in fold_rev (fn f => fn t => f t) fns start_term end
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
   217
    fun mk_rhs exprs =
45721
d1fb55c2ed65 quickcheck's compilation returns if it is genuine counterexample or a counterexample due to a match exception
bulwahn
parents: 45718
diff changeset
   218
      mk_if (size_ge_zero, foldr1 mk_none_continuation exprs,
45722
63b42a7db003 changing the exhaustive generator signatures;
bulwahn
parents: 45721
diff changeset
   219
        Const (@{const_name "None"}, resultT))
40420
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
   220
  in
42307
72e2fabb4bc2 creating a general mk_equation_terms for the different compilations
bulwahn
parents: 42306
diff changeset
   221
    mk_equation_terms (mk_call, mk_aux_call, mk_consexpr, mk_rhs, test_function, functerms)
40901
8fdfa9c4e7ed smallvalue_generator are defined quick via oracle or sound via function package
bulwahn
parents: 40899
diff changeset
   222
  end
42307
72e2fabb4bc2 creating a general mk_equation_terms for the different compilations
bulwahn
parents: 42306
diff changeset
   223
  
42308
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   224
(** foundational definition with the function package **)
40901
8fdfa9c4e7ed smallvalue_generator are defined quick via oracle or sound via function package
bulwahn
parents: 40899
diff changeset
   225
8fdfa9c4e7ed smallvalue_generator are defined quick via oracle or sound via function package
bulwahn
parents: 40899
diff changeset
   226
val less_int_pred = @{lemma "i > 0 ==> Code_Numeral.nat_of ((i :: code_numeral) - 1) < Code_Numeral.nat_of i" by auto}
8fdfa9c4e7ed smallvalue_generator are defined quick via oracle or sound via function package
bulwahn
parents: 40899
diff changeset
   227
8fdfa9c4e7ed smallvalue_generator are defined quick via oracle or sound via function package
bulwahn
parents: 40899
diff changeset
   228
fun mk_single_measure T = HOLogic.mk_comp (@{term "Code_Numeral.nat_of"},
8fdfa9c4e7ed smallvalue_generator are defined quick via oracle or sound via function package
bulwahn
parents: 40899
diff changeset
   229
    Const (@{const_name "Product_Type.snd"}, T --> @{typ "code_numeral"}))
8fdfa9c4e7ed smallvalue_generator are defined quick via oracle or sound via function package
bulwahn
parents: 40899
diff changeset
   230
8fdfa9c4e7ed smallvalue_generator are defined quick via oracle or sound via function package
bulwahn
parents: 40899
diff changeset
   231
fun mk_termination_measure T =
8fdfa9c4e7ed smallvalue_generator are defined quick via oracle or sound via function package
bulwahn
parents: 40899
diff changeset
   232
  let
8fdfa9c4e7ed smallvalue_generator are defined quick via oracle or sound via function package
bulwahn
parents: 40899
diff changeset
   233
    val T' = fst (HOLogic.dest_prodT (HOLogic.dest_setT T))
8fdfa9c4e7ed smallvalue_generator are defined quick via oracle or sound via function package
bulwahn
parents: 40899
diff changeset
   234
  in
8fdfa9c4e7ed smallvalue_generator are defined quick via oracle or sound via function package
bulwahn
parents: 40899
diff changeset
   235
    mk_measure (mk_sumcases @{typ nat} mk_single_measure T')
40420
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
   236
  end
40901
8fdfa9c4e7ed smallvalue_generator are defined quick via oracle or sound via function package
bulwahn
parents: 40899
diff changeset
   237
8fdfa9c4e7ed smallvalue_generator are defined quick via oracle or sound via function package
bulwahn
parents: 40899
diff changeset
   238
fun termination_tac ctxt = 
8fdfa9c4e7ed smallvalue_generator are defined quick via oracle or sound via function package
bulwahn
parents: 40899
diff changeset
   239
  Function_Relation.relation_tac ctxt mk_termination_measure 1
8fdfa9c4e7ed smallvalue_generator are defined quick via oracle or sound via function package
bulwahn
parents: 40899
diff changeset
   240
  THEN rtac @{thm wf_measure} 1
8fdfa9c4e7ed smallvalue_generator are defined quick via oracle or sound via function package
bulwahn
parents: 40899
diff changeset
   241
  THEN (REPEAT_DETERM (Simplifier.asm_full_simp_tac 
8fdfa9c4e7ed smallvalue_generator are defined quick via oracle or sound via function package
bulwahn
parents: 40899
diff changeset
   242
    (HOL_basic_ss addsimps [@{thm in_measure}, @{thm o_def}, @{thm snd_conv},
8fdfa9c4e7ed smallvalue_generator are defined quick via oracle or sound via function package
bulwahn
parents: 40899
diff changeset
   243
     @{thm nat_mono_iff}, less_int_pred] @ @{thms sum.cases}) 1))
8fdfa9c4e7ed smallvalue_generator are defined quick via oracle or sound via function package
bulwahn
parents: 40899
diff changeset
   244
42308
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   245
(** instantiating generator classes **)
42315
95dfa082065a generalizing instantiate_datatype in quickcheck_exhaustive to remove clones for different compilations
bulwahn
parents: 42314
diff changeset
   246
  
42325
104472645443 made SML/NJ happy;
wenzelm
parents: 42316
diff changeset
   247
fun contains_recursive_type_under_function_types xs =
42312
5bf3b9612e43 ensuring datatype limitations before the instantiation in quickcheck_exhaustive
bulwahn
parents: 42310
diff changeset
   248
  exists (fn (_, (_, _, cs)) => cs |> exists (snd #> exists (fn dT =>
42325
104472645443 made SML/NJ happy;
wenzelm
parents: 42316
diff changeset
   249
    (case Datatype_Aux.strip_dtyp dT of (_ :: _, Datatype.DtRec _) => true | _ => false)))) xs
42312
5bf3b9612e43 ensuring datatype limitations before the instantiation in quickcheck_exhaustive
bulwahn
parents: 42310
diff changeset
   250
    
42315
95dfa082065a generalizing instantiate_datatype in quickcheck_exhaustive to remove clones for different compilations
bulwahn
parents: 42314
diff changeset
   251
fun instantiate_datatype (name, constprfx, sort, mk_equations, mk_T, argnames)
95dfa082065a generalizing instantiate_datatype in quickcheck_exhaustive to remove clones for different compilations
bulwahn
parents: 42314
diff changeset
   252
    config descr vs tycos prfx (names, auxnames) (Ts, Us) thy =
42312
5bf3b9612e43 ensuring datatype limitations before the instantiation in quickcheck_exhaustive
bulwahn
parents: 42310
diff changeset
   253
  if not (contains_recursive_type_under_function_types descr) then
5bf3b9612e43 ensuring datatype limitations before the instantiation in quickcheck_exhaustive
bulwahn
parents: 42310
diff changeset
   254
    let
42315
95dfa082065a generalizing instantiate_datatype in quickcheck_exhaustive to remove clones for different compilations
bulwahn
parents: 42314
diff changeset
   255
      val _ = Datatype_Aux.message config ("Creating " ^ name ^ "...")
95dfa082065a generalizing instantiate_datatype in quickcheck_exhaustive to remove clones for different compilations
bulwahn
parents: 42314
diff changeset
   256
      val fullnames = map (prefix (constprfx ^ "_")) (names @ auxnames)
42312
5bf3b9612e43 ensuring datatype limitations before the instantiation in quickcheck_exhaustive
bulwahn
parents: 42310
diff changeset
   257
    in
5bf3b9612e43 ensuring datatype limitations before the instantiation in quickcheck_exhaustive
bulwahn
parents: 42310
diff changeset
   258
      thy
42315
95dfa082065a generalizing instantiate_datatype in quickcheck_exhaustive to remove clones for different compilations
bulwahn
parents: 42314
diff changeset
   259
      |> Class.instantiation (tycos, vs, sort)
42312
5bf3b9612e43 ensuring datatype limitations before the instantiation in quickcheck_exhaustive
bulwahn
parents: 42310
diff changeset
   260
      |> Quickcheck_Common.define_functions
42315
95dfa082065a generalizing instantiate_datatype in quickcheck_exhaustive to remove clones for different compilations
bulwahn
parents: 42314
diff changeset
   261
          (fn functerms => mk_equations functerms (descr, vs, Ts @ Us), NONE)
95dfa082065a generalizing instantiate_datatype in quickcheck_exhaustive to remove clones for different compilations
bulwahn
parents: 42314
diff changeset
   262
          prfx argnames fullnames (map mk_T (Ts @ Us))
42312
5bf3b9612e43 ensuring datatype limitations before the instantiation in quickcheck_exhaustive
bulwahn
parents: 42310
diff changeset
   263
      |> Class.prove_instantiation_exit (K (Class.intro_classes_tac []))
5bf3b9612e43 ensuring datatype limitations before the instantiation in quickcheck_exhaustive
bulwahn
parents: 42310
diff changeset
   264
    end
5bf3b9612e43 ensuring datatype limitations before the instantiation in quickcheck_exhaustive
bulwahn
parents: 42310
diff changeset
   265
  else
42230
594480d25aaa deriving bounded_forall instances in quickcheck_exhaustive
bulwahn
parents: 42229
diff changeset
   266
    (Datatype_Aux.message config
42315
95dfa082065a generalizing instantiate_datatype in quickcheck_exhaustive to remove clones for different compilations
bulwahn
parents: 42314
diff changeset
   267
      ("Creation of " ^ name ^ " failed because the datatype is recursive under a function type");
42230
594480d25aaa deriving bounded_forall instances in quickcheck_exhaustive
bulwahn
parents: 42229
diff changeset
   268
    thy)
42315
95dfa082065a generalizing instantiate_datatype in quickcheck_exhaustive to remove clones for different compilations
bulwahn
parents: 42314
diff changeset
   269
95dfa082065a generalizing instantiate_datatype in quickcheck_exhaustive to remove clones for different compilations
bulwahn
parents: 42314
diff changeset
   270
val instantiate_bounded_forall_datatype = instantiate_datatype
95dfa082065a generalizing instantiate_datatype in quickcheck_exhaustive to remove clones for different compilations
bulwahn
parents: 42314
diff changeset
   271
 ("bounded universal quantifiers", bounded_forallN, @{sort bounded_forall},
95dfa082065a generalizing instantiate_datatype in quickcheck_exhaustive to remove clones for different compilations
bulwahn
parents: 42314
diff changeset
   272
   mk_bounded_forall_equations, bounded_forallT, ["P", "i"]);
95dfa082065a generalizing instantiate_datatype in quickcheck_exhaustive to remove clones for different compilations
bulwahn
parents: 42314
diff changeset
   273
95dfa082065a generalizing instantiate_datatype in quickcheck_exhaustive to remove clones for different compilations
bulwahn
parents: 42314
diff changeset
   274
val instantiate_fast_exhaustive_datatype = instantiate_datatype 
95dfa082065a generalizing instantiate_datatype in quickcheck_exhaustive to remove clones for different compilations
bulwahn
parents: 42314
diff changeset
   275
 ("fast exhaustive generators", fast_exhaustiveN, @{sort fast_exhaustive},
95dfa082065a generalizing instantiate_datatype in quickcheck_exhaustive to remove clones for different compilations
bulwahn
parents: 42314
diff changeset
   276
   mk_fast_equations, fast_exhaustiveT, ["f", "i"])
95dfa082065a generalizing instantiate_datatype in quickcheck_exhaustive to remove clones for different compilations
bulwahn
parents: 42314
diff changeset
   277
95dfa082065a generalizing instantiate_datatype in quickcheck_exhaustive to remove clones for different compilations
bulwahn
parents: 42314
diff changeset
   278
val instantiate_exhaustive_datatype = instantiate_datatype  
42390
be7af468f7b3 creating generic test_term function; corrected instantiate_exhaustive_datatype; tuned
bulwahn
parents: 42361
diff changeset
   279
  ("exhaustive generators", exhaustiveN, @{sort exhaustive},
be7af468f7b3 creating generic test_term function; corrected instantiate_exhaustive_datatype; tuned
bulwahn
parents: 42361
diff changeset
   280
    mk_equations, exhaustiveT, ["f", "i"])
42315
95dfa082065a generalizing instantiate_datatype in quickcheck_exhaustive to remove clones for different compilations
bulwahn
parents: 42314
diff changeset
   281
95dfa082065a generalizing instantiate_datatype in quickcheck_exhaustive to remove clones for different compilations
bulwahn
parents: 42314
diff changeset
   282
val instantiate_full_exhaustive_datatype = instantiate_datatype
95dfa082065a generalizing instantiate_datatype in quickcheck_exhaustive to remove clones for different compilations
bulwahn
parents: 42314
diff changeset
   283
  ("full exhaustive generators", full_exhaustiveN, @{sort full_exhaustive},
42390
be7af468f7b3 creating generic test_term function; corrected instantiate_exhaustive_datatype; tuned
bulwahn
parents: 42361
diff changeset
   284
    mk_full_equations, full_exhaustiveT, ["f", "i"])
be7af468f7b3 creating generic test_term function; corrected instantiate_exhaustive_datatype; tuned
bulwahn
parents: 42361
diff changeset
   285
42308
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   286
(* building and compiling generator expressions *)
40420
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
   287
42390
be7af468f7b3 creating generic test_term function; corrected instantiate_exhaustive_datatype; tuned
bulwahn
parents: 42361
diff changeset
   288
be7af468f7b3 creating generic test_term function; corrected instantiate_exhaustive_datatype; tuned
bulwahn
parents: 42361
diff changeset
   289
fun mk_test_term lookup mk_closure mk_if none_t return ctxt =
42306
51a08b2699d5 adding an even faster compilation scheme
bulwahn
parents: 42304
diff changeset
   290
  let
51a08b2699d5 adding an even faster compilation scheme
bulwahn
parents: 42304
diff changeset
   291
    fun mk_naive_test_term t =
45721
d1fb55c2ed65 quickcheck's compilation returns if it is genuine counterexample or a counterexample due to a match exception
bulwahn
parents: 45718
diff changeset
   292
      fold_rev mk_closure (map lookup (Term.add_free_names t []))
d1fb55c2ed65 quickcheck's compilation returns if it is genuine counterexample or a counterexample due to a match exception
bulwahn
parents: 45718
diff changeset
   293
        (mk_if (t, none_t, return))
d1fb55c2ed65 quickcheck's compilation returns if it is genuine counterexample or a counterexample due to a match exception
bulwahn
parents: 45718
diff changeset
   294
    fun mk_smart_test_term' concl bound_vars assms genuine =
42306
51a08b2699d5 adding an even faster compilation scheme
bulwahn
parents: 42304
diff changeset
   295
      let
51a08b2699d5 adding an even faster compilation scheme
bulwahn
parents: 42304
diff changeset
   296
        fun vars_of t = subtract (op =) bound_vars (Term.add_free_names t [])
51a08b2699d5 adding an even faster compilation scheme
bulwahn
parents: 42304
diff changeset
   297
        val (vars, check) =
51a08b2699d5 adding an even faster compilation scheme
bulwahn
parents: 42304
diff changeset
   298
          case assms of [] => (vars_of concl, (concl, none_t, return))
45683
805a2acf47fd quickcheck returns counterexamples that are potentially spurious due to underspecified code equations and match exceptions
bulwahn
parents: 45484
diff changeset
   299
            | assm :: assms => (vars_of assm, (HOLogic.mk_not assm, none_t, 
805a2acf47fd quickcheck returns counterexamples that are potentially spurious due to underspecified code equations and match exceptions
bulwahn
parents: 45484
diff changeset
   300
                mk_smart_test_term' concl (union (op =) (vars_of assm) bound_vars) assms))
42306
51a08b2699d5 adding an even faster compilation scheme
bulwahn
parents: 42304
diff changeset
   301
      in
42390
be7af468f7b3 creating generic test_term function; corrected instantiate_exhaustive_datatype; tuned
bulwahn
parents: 42361
diff changeset
   302
        fold_rev mk_closure (map lookup vars) (mk_if check)
42306
51a08b2699d5 adding an even faster compilation scheme
bulwahn
parents: 42304
diff changeset
   303
      end
42390
be7af468f7b3 creating generic test_term function; corrected instantiate_exhaustive_datatype; tuned
bulwahn
parents: 42361
diff changeset
   304
    val mk_smart_test_term =
45721
d1fb55c2ed65 quickcheck's compilation returns if it is genuine counterexample or a counterexample due to a match exception
bulwahn
parents: 45718
diff changeset
   305
      Quickcheck_Common.strip_imp #> (fn (assms, concl) => mk_smart_test_term' concl [] assms true)
42390
be7af468f7b3 creating generic test_term function; corrected instantiate_exhaustive_datatype; tuned
bulwahn
parents: 42361
diff changeset
   306
  in
be7af468f7b3 creating generic test_term function; corrected instantiate_exhaustive_datatype; tuned
bulwahn
parents: 42361
diff changeset
   307
    if Config.get ctxt smart_quantifier then mk_smart_test_term else mk_naive_test_term 
be7af468f7b3 creating generic test_term function; corrected instantiate_exhaustive_datatype; tuned
bulwahn
parents: 42361
diff changeset
   308
  end
be7af468f7b3 creating generic test_term function; corrected instantiate_exhaustive_datatype; tuned
bulwahn
parents: 42361
diff changeset
   309
be7af468f7b3 creating generic test_term function; corrected instantiate_exhaustive_datatype; tuned
bulwahn
parents: 42361
diff changeset
   310
fun mk_fast_generator_expr ctxt (t, eval_terms) =
be7af468f7b3 creating generic test_term function; corrected instantiate_exhaustive_datatype; tuned
bulwahn
parents: 42361
diff changeset
   311
  let
be7af468f7b3 creating generic test_term function; corrected instantiate_exhaustive_datatype; tuned
bulwahn
parents: 42361
diff changeset
   312
    val thy = Proof_Context.theory_of ctxt
be7af468f7b3 creating generic test_term function; corrected instantiate_exhaustive_datatype; tuned
bulwahn
parents: 42361
diff changeset
   313
    val ctxt' = Variable.auto_fixes t ctxt
be7af468f7b3 creating generic test_term function; corrected instantiate_exhaustive_datatype; tuned
bulwahn
parents: 42361
diff changeset
   314
    val names = Term.add_free_names t []
be7af468f7b3 creating generic test_term function; corrected instantiate_exhaustive_datatype; tuned
bulwahn
parents: 42361
diff changeset
   315
    val frees = map Free (Term.add_frees t [])
be7af468f7b3 creating generic test_term function; corrected instantiate_exhaustive_datatype; tuned
bulwahn
parents: 42361
diff changeset
   316
    fun lookup v = the (AList.lookup (op =) (names ~~ frees) v)
be7af468f7b3 creating generic test_term function; corrected instantiate_exhaustive_datatype; tuned
bulwahn
parents: 42361
diff changeset
   317
    val ([depth_name], ctxt'') = Variable.variant_fixes ["depth"] ctxt'
be7af468f7b3 creating generic test_term function; corrected instantiate_exhaustive_datatype; tuned
bulwahn
parents: 42361
diff changeset
   318
    val depth = Free (depth_name, @{typ code_numeral})
45721
d1fb55c2ed65 quickcheck's compilation returns if it is genuine counterexample or a counterexample due to a match exception
bulwahn
parents: 45718
diff changeset
   319
    fun return _ = @{term "throw_Counterexample :: term list => unit"} $
42390
be7af468f7b3 creating generic test_term function; corrected instantiate_exhaustive_datatype; tuned
bulwahn
parents: 42361
diff changeset
   320
      (HOLogic.mk_list @{typ "term"}
be7af468f7b3 creating generic test_term function; corrected instantiate_exhaustive_datatype; tuned
bulwahn
parents: 42361
diff changeset
   321
        (map (fn t => HOLogic.mk_term_of (fastype_of t) t) (frees @ eval_terms)))
be7af468f7b3 creating generic test_term function; corrected instantiate_exhaustive_datatype; tuned
bulwahn
parents: 42361
diff changeset
   322
    fun mk_exhaustive_closure (free as Free (_, T)) t =
be7af468f7b3 creating generic test_term function; corrected instantiate_exhaustive_datatype; tuned
bulwahn
parents: 42361
diff changeset
   323
      Const (@{const_name "Quickcheck_Exhaustive.fast_exhaustive_class.fast_exhaustive"},
be7af468f7b3 creating generic test_term function; corrected instantiate_exhaustive_datatype; tuned
bulwahn
parents: 42361
diff changeset
   324
        fast_exhaustiveT T)
be7af468f7b3 creating generic test_term function; corrected instantiate_exhaustive_datatype; tuned
bulwahn
parents: 42361
diff changeset
   325
        $ lambda free t $ depth
be7af468f7b3 creating generic test_term function; corrected instantiate_exhaustive_datatype; tuned
bulwahn
parents: 42361
diff changeset
   326
    val none_t = @{term "()"}
45721
d1fb55c2ed65 quickcheck's compilation returns if it is genuine counterexample or a counterexample due to a match exception
bulwahn
parents: 45718
diff changeset
   327
    fun mk_safe_if (cond, then_t, else_t) = mk_if (cond, then_t, else_t true)
42390
be7af468f7b3 creating generic test_term function; corrected instantiate_exhaustive_datatype; tuned
bulwahn
parents: 42361
diff changeset
   328
    val mk_test_term = mk_test_term lookup mk_exhaustive_closure mk_safe_if none_t return ctxt 
42306
51a08b2699d5 adding an even faster compilation scheme
bulwahn
parents: 42304
diff changeset
   329
  in lambda depth (@{term "catch_Counterexample :: unit => term list option"} $ mk_test_term t) end
51a08b2699d5 adding an even faster compilation scheme
bulwahn
parents: 42304
diff changeset
   330
45688
d4ac5e090cd9 also potential counterexamples in the simple exhaustive testing in quickcheck
bulwahn
parents: 45684
diff changeset
   331
fun mk_unknown_term T = HOLogic.reflect_term (Const ("Quickcheck_Exhaustive.unknown", T))
d4ac5e090cd9 also potential counterexamples in the simple exhaustive testing in quickcheck
bulwahn
parents: 45684
diff changeset
   332
d4ac5e090cd9 also potential counterexamples in the simple exhaustive testing in quickcheck
bulwahn
parents: 45684
diff changeset
   333
fun mk_safe_term t = @{term "Quickcheck_Exhaustive.catch_match' :: term => term => term"}
d4ac5e090cd9 also potential counterexamples in the simple exhaustive testing in quickcheck
bulwahn
parents: 45684
diff changeset
   334
      $ (HOLogic.mk_term_of (fastype_of t) t) $ mk_unknown_term (fastype_of t)    
d4ac5e090cd9 also potential counterexamples in the simple exhaustive testing in quickcheck
bulwahn
parents: 45684
diff changeset
   335
42028
bd6515e113b2 passing a term with free variables to the quickcheck tester functions instead of an lambda expression because this is more natural with passing further evaluation terms; added output of evaluation terms; added evaluation of terms in the exhaustive testing
bulwahn
parents: 42027
diff changeset
   336
fun mk_generator_expr ctxt (t, eval_terms) =
bd6515e113b2 passing a term with free variables to the quickcheck tester functions instead of an lambda expression because this is more natural with passing further evaluation terms; added output of evaluation terms; added evaluation of terms in the exhaustive testing
bulwahn
parents: 42027
diff changeset
   337
  let
42361
23f352990944 modernized structure Proof_Context;
wenzelm
parents: 42325
diff changeset
   338
    val thy = Proof_Context.theory_of ctxt
42028
bd6515e113b2 passing a term with free variables to the quickcheck tester functions instead of an lambda expression because this is more natural with passing further evaluation terms; added output of evaluation terms; added evaluation of terms in the exhaustive testing
bulwahn
parents: 42027
diff changeset
   339
    val ctxt' = Variable.auto_fixes t ctxt
bd6515e113b2 passing a term with free variables to the quickcheck tester functions instead of an lambda expression because this is more natural with passing further evaluation terms; added output of evaluation terms; added evaluation of terms in the exhaustive testing
bulwahn
parents: 42027
diff changeset
   340
    val names = Term.add_free_names t []
bd6515e113b2 passing a term with free variables to the quickcheck tester functions instead of an lambda expression because this is more natural with passing further evaluation terms; added output of evaluation terms; added evaluation of terms in the exhaustive testing
bulwahn
parents: 42027
diff changeset
   341
    val frees = map Free (Term.add_frees t [])
42390
be7af468f7b3 creating generic test_term function; corrected instantiate_exhaustive_datatype; tuned
bulwahn
parents: 42361
diff changeset
   342
    fun lookup v = the (AList.lookup (op =) (names ~~ frees) v)
42028
bd6515e113b2 passing a term with free variables to the quickcheck tester functions instead of an lambda expression because this is more natural with passing further evaluation terms; added output of evaluation terms; added evaluation of terms in the exhaustive testing
bulwahn
parents: 42027
diff changeset
   343
    val ([depth_name], ctxt'') = Variable.variant_fixes ["depth"] ctxt'
42304
34366f39d32d new compilation for exhaustive quickcheck
bulwahn
parents: 42273
diff changeset
   344
    val depth = Free (depth_name, @{typ code_numeral})
45721
d1fb55c2ed65 quickcheck's compilation returns if it is genuine counterexample or a counterexample due to a match exception
bulwahn
parents: 45718
diff changeset
   345
    fun return _ = @{term "Some :: term list => term list option"} $ (HOLogic.mk_list @{typ "term"}
45688
d4ac5e090cd9 also potential counterexamples in the simple exhaustive testing in quickcheck
bulwahn
parents: 45684
diff changeset
   346
        (map (fn t => HOLogic.mk_term_of (fastype_of t) t) frees @ map mk_safe_term eval_terms))
42304
34366f39d32d new compilation for exhaustive quickcheck
bulwahn
parents: 42273
diff changeset
   347
    fun mk_exhaustive_closure (free as Free (_, T)) t =
34366f39d32d new compilation for exhaustive quickcheck
bulwahn
parents: 42273
diff changeset
   348
      Const (@{const_name "Quickcheck_Exhaustive.exhaustive_class.exhaustive"}, exhaustiveT T)
34366f39d32d new compilation for exhaustive quickcheck
bulwahn
parents: 42273
diff changeset
   349
        $ lambda free t $ depth
34366f39d32d new compilation for exhaustive quickcheck
bulwahn
parents: 42273
diff changeset
   350
    val none_t = @{term "None :: term list option"}
45718
8979b2463fc8 quickcheck random can also find potential counterexamples;
bulwahn
parents: 45688
diff changeset
   351
    val mk_if = Quickcheck_Common.mk_safe_if ctxt
8979b2463fc8 quickcheck random can also find potential counterexamples;
bulwahn
parents: 45688
diff changeset
   352
    val mk_test_term = mk_test_term lookup mk_exhaustive_closure mk_if none_t return ctxt
42304
34366f39d32d new compilation for exhaustive quickcheck
bulwahn
parents: 42273
diff changeset
   353
  in lambda depth (mk_test_term t) end
34366f39d32d new compilation for exhaustive quickcheck
bulwahn
parents: 42273
diff changeset
   354
34366f39d32d new compilation for exhaustive quickcheck
bulwahn
parents: 42273
diff changeset
   355
fun mk_full_generator_expr ctxt (t, eval_terms) =
34366f39d32d new compilation for exhaustive quickcheck
bulwahn
parents: 42273
diff changeset
   356
  let
42361
23f352990944 modernized structure Proof_Context;
wenzelm
parents: 42325
diff changeset
   357
    val thy = Proof_Context.theory_of ctxt
42304
34366f39d32d new compilation for exhaustive quickcheck
bulwahn
parents: 42273
diff changeset
   358
    val ctxt' = Variable.auto_fixes t ctxt
34366f39d32d new compilation for exhaustive quickcheck
bulwahn
parents: 42273
diff changeset
   359
    val names = Term.add_free_names t []
34366f39d32d new compilation for exhaustive quickcheck
bulwahn
parents: 42273
diff changeset
   360
    val frees = map Free (Term.add_frees t [])
34366f39d32d new compilation for exhaustive quickcheck
bulwahn
parents: 42273
diff changeset
   361
    val ([depth_name], ctxt'') = Variable.variant_fixes ["depth"] ctxt'
42028
bd6515e113b2 passing a term with free variables to the quickcheck tester functions instead of an lambda expression because this is more natural with passing further evaluation terms; added output of evaluation terms; added evaluation of terms in the exhaustive testing
bulwahn
parents: 42027
diff changeset
   362
    val (term_names, ctxt''') = Variable.variant_fixes (map (prefix "t_") names) ctxt''
bd6515e113b2 passing a term with free variables to the quickcheck tester functions instead of an lambda expression because this is more natural with passing further evaluation terms; added output of evaluation terms; added evaluation of terms in the exhaustive testing
bulwahn
parents: 42027
diff changeset
   363
    val depth = Free (depth_name, @{typ code_numeral})
bd6515e113b2 passing a term with free variables to the quickcheck tester functions instead of an lambda expression because this is more natural with passing further evaluation terms; added output of evaluation terms; added evaluation of terms in the exhaustive testing
bulwahn
parents: 42027
diff changeset
   364
    val term_vars = map (fn n => Free (n, @{typ "unit => term"})) term_names
42390
be7af468f7b3 creating generic test_term function; corrected instantiate_exhaustive_datatype; tuned
bulwahn
parents: 42361
diff changeset
   365
    fun lookup v = the (AList.lookup (op =) (names ~~ (frees ~~ term_vars)) v)
45721
d1fb55c2ed65 quickcheck's compilation returns if it is genuine counterexample or a counterexample due to a match exception
bulwahn
parents: 45718
diff changeset
   366
    fun return genuine = @{term "Some :: bool * term list => (bool * term list) option"} $
d1fb55c2ed65 quickcheck's compilation returns if it is genuine counterexample or a counterexample due to a match exception
bulwahn
parents: 45718
diff changeset
   367
      (HOLogic.pair_const @{typ bool} @{typ "term list"} $ Quickcheck_Common.reflect_bool genuine $
d1fb55c2ed65 quickcheck's compilation returns if it is genuine counterexample or a counterexample due to a match exception
bulwahn
parents: 45718
diff changeset
   368
        (HOLogic.mk_list @{typ term}
d1fb55c2ed65 quickcheck's compilation returns if it is genuine counterexample or a counterexample due to a match exception
bulwahn
parents: 45718
diff changeset
   369
          (map (fn v => v $ @{term "()"}) term_vars @ map mk_safe_term eval_terms)))
42028
bd6515e113b2 passing a term with free variables to the quickcheck tester functions instead of an lambda expression because this is more natural with passing further evaluation terms; added output of evaluation terms; added evaluation of terms in the exhaustive testing
bulwahn
parents: 42027
diff changeset
   370
    fun mk_exhaustive_closure (free as Free (_, T), term_var) t =
bd6515e113b2 passing a term with free variables to the quickcheck tester functions instead of an lambda expression because this is more natural with passing further evaluation terms; added output of evaluation terms; added evaluation of terms in the exhaustive testing
bulwahn
parents: 42027
diff changeset
   371
      if Sign.of_sort thy (T, @{sort enum}) then
bd6515e113b2 passing a term with free variables to the quickcheck tester functions instead of an lambda expression because this is more natural with passing further evaluation terms; added output of evaluation terms; added evaluation of terms in the exhaustive testing
bulwahn
parents: 42027
diff changeset
   372
        Const (@{const_name "Quickcheck_Exhaustive.check_all_class.check_all"}, check_allT T)
45722
63b42a7db003 changing the exhaustive generator signatures;
bulwahn
parents: 45721
diff changeset
   373
          $ (HOLogic.split_const (T, @{typ "unit => term"}, resultT) 
42028
bd6515e113b2 passing a term with free variables to the quickcheck tester functions instead of an lambda expression because this is more natural with passing further evaluation terms; added output of evaluation terms; added evaluation of terms in the exhaustive testing
bulwahn
parents: 42027
diff changeset
   374
            $ lambda free (lambda term_var t))
bd6515e113b2 passing a term with free variables to the quickcheck tester functions instead of an lambda expression because this is more natural with passing further evaluation terms; added output of evaluation terms; added evaluation of terms in the exhaustive testing
bulwahn
parents: 42027
diff changeset
   375
      else
42314
8dfb7878a351 correcting constant name in exhaustive_generators
bulwahn
parents: 42313
diff changeset
   376
        Const (@{const_name "Quickcheck_Exhaustive.full_exhaustive_class.full_exhaustive"}, full_exhaustiveT T)
45722
63b42a7db003 changing the exhaustive generator signatures;
bulwahn
parents: 45721
diff changeset
   377
          $ (HOLogic.split_const (T, @{typ "unit => term"}, resultT)
42028
bd6515e113b2 passing a term with free variables to the quickcheck tester functions instead of an lambda expression because this is more natural with passing further evaluation terms; added output of evaluation terms; added evaluation of terms in the exhaustive testing
bulwahn
parents: 42027
diff changeset
   378
            $ lambda free (lambda term_var t)) $ depth
45722
63b42a7db003 changing the exhaustive generator signatures;
bulwahn
parents: 45721
diff changeset
   379
    val none_t = Const (@{const_name "None"}, resultT)
45718
8979b2463fc8 quickcheck random can also find potential counterexamples;
bulwahn
parents: 45688
diff changeset
   380
    val mk_if = Quickcheck_Common.mk_safe_if ctxt
8979b2463fc8 quickcheck random can also find potential counterexamples;
bulwahn
parents: 45688
diff changeset
   381
    val mk_test_term = mk_test_term lookup mk_exhaustive_closure mk_if none_t return ctxt
42028
bd6515e113b2 passing a term with free variables to the quickcheck tester functions instead of an lambda expression because this is more natural with passing further evaluation terms; added output of evaluation terms; added evaluation of terms in the exhaustive testing
bulwahn
parents: 42027
diff changeset
   382
  in lambda depth (mk_test_term t) end
bd6515e113b2 passing a term with free variables to the quickcheck tester functions instead of an lambda expression because this is more natural with passing further evaluation terms; added output of evaluation terms; added evaluation of terms in the exhaustive testing
bulwahn
parents: 42027
diff changeset
   383
42304
34366f39d32d new compilation for exhaustive quickcheck
bulwahn
parents: 42273
diff changeset
   384
fun mk_parametric_generator_expr mk_generator_expr =
42159
234ec7011e5d generalizing compilation scheme of quickcheck generators to multiple arguments; changing random and exhaustive tester to use one code invocation for polymorphic instances with multiple cardinalities
bulwahn
parents: 42028
diff changeset
   385
  Quickcheck_Common.gen_mk_parametric_generator_expr 
45722
63b42a7db003 changing the exhaustive generator signatures;
bulwahn
parents: 45721
diff changeset
   386
    ((mk_generator_expr, absdummy @{typ "code_numeral"} (Const (@{const_name "None"}, resultT))),
63b42a7db003 changing the exhaustive generator signatures;
bulwahn
parents: 45721
diff changeset
   387
      @{typ "code_numeral"} --> resultT)
42195
1e7b62c93f5d adding an exhaustive validator for quickcheck's batch validating; moving strip_imp; minimal setup for bounded_forall
bulwahn
parents: 42176
diff changeset
   388
1e7b62c93f5d adding an exhaustive validator for quickcheck's batch validating; moving strip_imp; minimal setup for bounded_forall
bulwahn
parents: 42176
diff changeset
   389
fun mk_validator_expr ctxt t =
1e7b62c93f5d adding an exhaustive validator for quickcheck's batch validating; moving strip_imp; minimal setup for bounded_forall
bulwahn
parents: 42176
diff changeset
   390
  let
1e7b62c93f5d adding an exhaustive validator for quickcheck's batch validating; moving strip_imp; minimal setup for bounded_forall
bulwahn
parents: 42176
diff changeset
   391
    fun bounded_forallT T = (T --> @{typ bool}) --> @{typ code_numeral} --> @{typ bool}
42361
23f352990944 modernized structure Proof_Context;
wenzelm
parents: 42325
diff changeset
   392
    val thy = Proof_Context.theory_of ctxt
42195
1e7b62c93f5d adding an exhaustive validator for quickcheck's batch validating; moving strip_imp; minimal setup for bounded_forall
bulwahn
parents: 42176
diff changeset
   393
    val ctxt' = Variable.auto_fixes t ctxt
42390
be7af468f7b3 creating generic test_term function; corrected instantiate_exhaustive_datatype; tuned
bulwahn
parents: 42361
diff changeset
   394
    val names = Term.add_free_names t []
be7af468f7b3 creating generic test_term function; corrected instantiate_exhaustive_datatype; tuned
bulwahn
parents: 42361
diff changeset
   395
    val frees = map Free (Term.add_frees t [])
be7af468f7b3 creating generic test_term function; corrected instantiate_exhaustive_datatype; tuned
bulwahn
parents: 42361
diff changeset
   396
    fun lookup v = the (AList.lookup (op =) (names ~~ frees) v)
42195
1e7b62c93f5d adding an exhaustive validator for quickcheck's batch validating; moving strip_imp; minimal setup for bounded_forall
bulwahn
parents: 42176
diff changeset
   397
    val ([depth_name], ctxt'') = Variable.variant_fixes ["depth"] ctxt'
1e7b62c93f5d adding an exhaustive validator for quickcheck's batch validating; moving strip_imp; minimal setup for bounded_forall
bulwahn
parents: 42176
diff changeset
   398
    val depth = Free (depth_name, @{typ code_numeral})
42390
be7af468f7b3 creating generic test_term function; corrected instantiate_exhaustive_datatype; tuned
bulwahn
parents: 42361
diff changeset
   399
    fun mk_bounded_forall (Free (s, T)) t =
42195
1e7b62c93f5d adding an exhaustive validator for quickcheck's batch validating; moving strip_imp; minimal setup for bounded_forall
bulwahn
parents: 42176
diff changeset
   400
      Const (@{const_name "Quickcheck_Exhaustive.bounded_forall_class.bounded_forall"}, bounded_forallT T)
1e7b62c93f5d adding an exhaustive validator for quickcheck's batch validating; moving strip_imp; minimal setup for bounded_forall
bulwahn
parents: 42176
diff changeset
   401
        $ lambda (Free (s, T)) t $ depth
45721
d1fb55c2ed65 quickcheck's compilation returns if it is genuine counterexample or a counterexample due to a match exception
bulwahn
parents: 45718
diff changeset
   402
    fun mk_safe_if (cond, then_t, else_t) = mk_if (cond, then_t, else_t true)
d1fb55c2ed65 quickcheck's compilation returns if it is genuine counterexample or a counterexample due to a match exception
bulwahn
parents: 45718
diff changeset
   403
    val mk_test_term =
d1fb55c2ed65 quickcheck's compilation returns if it is genuine counterexample or a counterexample due to a match exception
bulwahn
parents: 45718
diff changeset
   404
      mk_test_term lookup mk_bounded_forall mk_safe_if @{term True} (K @{term False}) ctxt
42195
1e7b62c93f5d adding an exhaustive validator for quickcheck's batch validating; moving strip_imp; minimal setup for bounded_forall
bulwahn
parents: 42176
diff changeset
   405
  in lambda depth (mk_test_term t) end
1e7b62c93f5d adding an exhaustive validator for quickcheck's batch validating; moving strip_imp; minimal setup for bounded_forall
bulwahn
parents: 42176
diff changeset
   406
42391
d7b58dc35cc5 adding bounded_forall tester
bulwahn
parents: 42390
diff changeset
   407
d7b58dc35cc5 adding bounded_forall tester
bulwahn
parents: 42390
diff changeset
   408
fun mk_bounded_forall_generator_expr ctxt (t, eval_terms) = 
d7b58dc35cc5 adding bounded_forall tester
bulwahn
parents: 42390
diff changeset
   409
  let
d7b58dc35cc5 adding bounded_forall tester
bulwahn
parents: 42390
diff changeset
   410
    val frees = Term.add_free_names t []
d7b58dc35cc5 adding bounded_forall tester
bulwahn
parents: 42390
diff changeset
   411
    val dummy_term = @{term "Code_Evaluation.Const (STR ''dummy_pattern'')
d7b58dc35cc5 adding bounded_forall tester
bulwahn
parents: 42390
diff changeset
   412
      (Typerep.Typerep (STR ''dummy'') [])"}
d7b58dc35cc5 adding bounded_forall tester
bulwahn
parents: 42390
diff changeset
   413
    val return = @{term "Some :: term list => term list option"} $
d7b58dc35cc5 adding bounded_forall tester
bulwahn
parents: 42390
diff changeset
   414
      (HOLogic.mk_list @{typ "term"}
d7b58dc35cc5 adding bounded_forall tester
bulwahn
parents: 42390
diff changeset
   415
        (replicate (length frees + length eval_terms) dummy_term))
44241
7943b69f0188 modernized signature of Term.absfree/absdummy;
wenzelm
parents: 43878
diff changeset
   416
    val wrap = absdummy @{typ bool}
7943b69f0188 modernized signature of Term.absfree/absdummy;
wenzelm
parents: 43878
diff changeset
   417
      (@{term "If :: bool => term list option => term list option => term list option"} $
7943b69f0188 modernized signature of Term.absfree/absdummy;
wenzelm
parents: 43878
diff changeset
   418
        Bound 0 $ @{term "None :: term list option"} $ return)
42391
d7b58dc35cc5 adding bounded_forall tester
bulwahn
parents: 42390
diff changeset
   419
  in HOLogic.mk_comp (wrap, mk_validator_expr ctxt t) end
d7b58dc35cc5 adding bounded_forall tester
bulwahn
parents: 42390
diff changeset
   420
  
42028
bd6515e113b2 passing a term with free variables to the quickcheck tester functions instead of an lambda expression because this is more natural with passing further evaluation terms; added output of evaluation terms; added evaluation of terms in the exhaustive testing
bulwahn
parents: 42027
diff changeset
   421
(** generator compiliation **)
bd6515e113b2 passing a term with free variables to the quickcheck tester functions instead of an lambda expression because this is more natural with passing further evaluation terms; added output of evaluation terms; added evaluation of terms in the exhaustive testing
bulwahn
parents: 42027
diff changeset
   422
41472
f6ab14e61604 misc tuning and comments based on review of Theory_Data, Proof_Data, Generic_Data usage;
wenzelm
parents: 41178
diff changeset
   423
structure Counterexample = Proof_Data
f6ab14e61604 misc tuning and comments based on review of Theory_Data, Proof_Data, Generic_Data usage;
wenzelm
parents: 41178
diff changeset
   424
(
45721
d1fb55c2ed65 quickcheck's compilation returns if it is genuine counterexample or a counterexample due to a match exception
bulwahn
parents: 45718
diff changeset
   425
  type T = unit -> int -> int -> (bool * term list) option
41472
f6ab14e61604 misc tuning and comments based on review of Theory_Data, Proof_Data, Generic_Data usage;
wenzelm
parents: 41178
diff changeset
   426
  (* FIXME avoid user error with non-user text *)
40420
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
   427
  fun init _ () = error "Counterexample"
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
   428
);
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
   429
val put_counterexample = Counterexample.put;
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
   430
41861
77d87dc50e5a adding a function to compile a batch of terms for quickcheck with one code generation invocation
bulwahn
parents: 41472
diff changeset
   431
structure Counterexample_Batch = Proof_Data
77d87dc50e5a adding a function to compile a batch of terms for quickcheck with one code generation invocation
bulwahn
parents: 41472
diff changeset
   432
(
77d87dc50e5a adding a function to compile a batch of terms for quickcheck with one code generation invocation
bulwahn
parents: 41472
diff changeset
   433
  type T = unit -> (int -> term list option) list
77d87dc50e5a adding a function to compile a batch of terms for quickcheck with one code generation invocation
bulwahn
parents: 41472
diff changeset
   434
  (* FIXME avoid user error with non-user text *)
77d87dc50e5a adding a function to compile a batch of terms for quickcheck with one code generation invocation
bulwahn
parents: 41472
diff changeset
   435
  fun init _ () = error "Counterexample"
77d87dc50e5a adding a function to compile a batch of terms for quickcheck with one code generation invocation
bulwahn
parents: 41472
diff changeset
   436
);
77d87dc50e5a adding a function to compile a batch of terms for quickcheck with one code generation invocation
bulwahn
parents: 41472
diff changeset
   437
val put_counterexample_batch = Counterexample_Batch.put;
77d87dc50e5a adding a function to compile a batch of terms for quickcheck with one code generation invocation
bulwahn
parents: 41472
diff changeset
   438
42195
1e7b62c93f5d adding an exhaustive validator for quickcheck's batch validating; moving strip_imp; minimal setup for bounded_forall
bulwahn
parents: 42176
diff changeset
   439
structure Validator_Batch = Proof_Data
1e7b62c93f5d adding an exhaustive validator for quickcheck's batch validating; moving strip_imp; minimal setup for bounded_forall
bulwahn
parents: 42176
diff changeset
   440
(
1e7b62c93f5d adding an exhaustive validator for quickcheck's batch validating; moving strip_imp; minimal setup for bounded_forall
bulwahn
parents: 42176
diff changeset
   441
  type T = unit -> (int -> bool) list
1e7b62c93f5d adding an exhaustive validator for quickcheck's batch validating; moving strip_imp; minimal setup for bounded_forall
bulwahn
parents: 42176
diff changeset
   442
  (* FIXME avoid user error with non-user text *)
1e7b62c93f5d adding an exhaustive validator for quickcheck's batch validating; moving strip_imp; minimal setup for bounded_forall
bulwahn
parents: 42176
diff changeset
   443
  fun init _ () = error "Counterexample"
1e7b62c93f5d adding an exhaustive validator for quickcheck's batch validating; moving strip_imp; minimal setup for bounded_forall
bulwahn
parents: 42176
diff changeset
   444
);
1e7b62c93f5d adding an exhaustive validator for quickcheck's batch validating; moving strip_imp; minimal setup for bounded_forall
bulwahn
parents: 42176
diff changeset
   445
val put_validator_batch = Validator_Batch.put;
1e7b62c93f5d adding an exhaustive validator for quickcheck's batch validating; moving strip_imp; minimal setup for bounded_forall
bulwahn
parents: 42176
diff changeset
   446
1e7b62c93f5d adding an exhaustive validator for quickcheck's batch validating; moving strip_imp; minimal setup for bounded_forall
bulwahn
parents: 42176
diff changeset
   447
40420
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
   448
val target = "Quickcheck";
42391
d7b58dc35cc5 adding bounded_forall tester
bulwahn
parents: 42390
diff changeset
   449
42159
234ec7011e5d generalizing compilation scheme of quickcheck generators to multiple arguments; changing random and exhaustive tester to use one code invocation for polymorphic instances with multiple cardinalities
bulwahn
parents: 42028
diff changeset
   450
fun compile_generator_expr ctxt ts =
234ec7011e5d generalizing compilation scheme of quickcheck generators to multiple arguments; changing random and exhaustive tester to use one code invocation for polymorphic instances with multiple cardinalities
bulwahn
parents: 42028
diff changeset
   451
  let
42361
23f352990944 modernized structure Proof_Context;
wenzelm
parents: 42325
diff changeset
   452
    val thy = Proof_Context.theory_of ctxt
42306
51a08b2699d5 adding an even faster compilation scheme
bulwahn
parents: 42304
diff changeset
   453
    val mk_generator_expr = 
51a08b2699d5 adding an even faster compilation scheme
bulwahn
parents: 42304
diff changeset
   454
      if Config.get ctxt fast then mk_fast_generator_expr
42391
d7b58dc35cc5 adding bounded_forall tester
bulwahn
parents: 42390
diff changeset
   455
      else if Config.get ctxt bounded_forall then mk_bounded_forall_generator_expr
42306
51a08b2699d5 adding an even faster compilation scheme
bulwahn
parents: 42304
diff changeset
   456
      else if Config.get ctxt full_support then mk_full_generator_expr else mk_generator_expr
42304
34366f39d32d new compilation for exhaustive quickcheck
bulwahn
parents: 42273
diff changeset
   457
    val t' = mk_parametric_generator_expr mk_generator_expr ctxt ts;
42159
234ec7011e5d generalizing compilation scheme of quickcheck generators to multiple arguments; changing random and exhaustive tester to use one code invocation for polymorphic instances with multiple cardinalities
bulwahn
parents: 42028
diff changeset
   458
    val compile = Code_Runtime.dynamic_value_strict
234ec7011e5d generalizing compilation scheme of quickcheck generators to multiple arguments; changing random and exhaustive tester to use one code invocation for polymorphic instances with multiple cardinalities
bulwahn
parents: 42028
diff changeset
   459
      (Counterexample.get, put_counterexample, "Exhaustive_Generators.put_counterexample")
234ec7011e5d generalizing compilation scheme of quickcheck generators to multiple arguments; changing random and exhaustive tester to use one code invocation for polymorphic instances with multiple cardinalities
bulwahn
parents: 42028
diff changeset
   460
      thy (SOME target) (fn proc => fn g =>
45721
d1fb55c2ed65 quickcheck's compilation returns if it is genuine counterexample or a counterexample due to a match exception
bulwahn
parents: 45718
diff changeset
   461
        fn card => fn size => g card size |> (Option.map o apsnd o map) proc) t' []
42159
234ec7011e5d generalizing compilation scheme of quickcheck generators to multiple arguments; changing random and exhaustive tester to use one code invocation for polymorphic instances with multiple cardinalities
bulwahn
parents: 42028
diff changeset
   462
  in
234ec7011e5d generalizing compilation scheme of quickcheck generators to multiple arguments; changing random and exhaustive tester to use one code invocation for polymorphic instances with multiple cardinalities
bulwahn
parents: 42028
diff changeset
   463
    fn [card, size] => rpair NONE (compile card size |> 
234ec7011e5d generalizing compilation scheme of quickcheck generators to multiple arguments; changing random and exhaustive tester to use one code invocation for polymorphic instances with multiple cardinalities
bulwahn
parents: 42028
diff changeset
   464
      (if Config.get ctxt quickcheck_pretty then
45721
d1fb55c2ed65 quickcheck's compilation returns if it is genuine counterexample or a counterexample due to a match exception
bulwahn
parents: 45718
diff changeset
   465
        Option.map (apsnd (map Quickcheck_Common.post_process_term)) else I))
42159
234ec7011e5d generalizing compilation scheme of quickcheck generators to multiple arguments; changing random and exhaustive tester to use one code invocation for polymorphic instances with multiple cardinalities
bulwahn
parents: 42028
diff changeset
   466
  end;
42391
d7b58dc35cc5 adding bounded_forall tester
bulwahn
parents: 42390
diff changeset
   467
41861
77d87dc50e5a adding a function to compile a batch of terms for quickcheck with one code generation invocation
bulwahn
parents: 41472
diff changeset
   468
fun compile_generator_exprs ctxt ts =
77d87dc50e5a adding a function to compile a batch of terms for quickcheck with one code generation invocation
bulwahn
parents: 41472
diff changeset
   469
  let
42361
23f352990944 modernized structure Proof_Context;
wenzelm
parents: 42325
diff changeset
   470
    val thy = Proof_Context.theory_of ctxt
42028
bd6515e113b2 passing a term with free variables to the quickcheck tester functions instead of an lambda expression because this is more natural with passing further evaluation terms; added output of evaluation terms; added evaluation of terms in the exhaustive testing
bulwahn
parents: 42027
diff changeset
   471
    val ts' = map (fn t => mk_generator_expr ctxt (t, [])) ts;
41861
77d87dc50e5a adding a function to compile a batch of terms for quickcheck with one code generation invocation
bulwahn
parents: 41472
diff changeset
   472
    val compiles = Code_Runtime.dynamic_value_strict
77d87dc50e5a adding a function to compile a batch of terms for quickcheck with one code generation invocation
bulwahn
parents: 41472
diff changeset
   473
      (Counterexample_Batch.get, put_counterexample_batch,
41918
d2ab869f8b0b replacing naming of small by exhaustive
bulwahn
parents: 41917
diff changeset
   474
        "Exhaustive_Generators.put_counterexample_batch")
41861
77d87dc50e5a adding a function to compile a batch of terms for quickcheck with one code generation invocation
bulwahn
parents: 41472
diff changeset
   475
      thy (SOME target) (fn proc => map (fn g => g #> (Option.map o map) proc))
42195
1e7b62c93f5d adding an exhaustive validator for quickcheck's batch validating; moving strip_imp; minimal setup for bounded_forall
bulwahn
parents: 42176
diff changeset
   476
      (HOLogic.mk_list @{typ "code_numeral => term list option"} ts') []
41861
77d87dc50e5a adding a function to compile a batch of terms for quickcheck with one code generation invocation
bulwahn
parents: 41472
diff changeset
   477
  in
41935
d786a8a3dc47 minor corrections for renaming; moved postprocessing of terms to Quickcheck_Common
bulwahn
parents: 41928
diff changeset
   478
    map (fn compile => fn size => compile size
d786a8a3dc47 minor corrections for renaming; moved postprocessing of terms to Quickcheck_Common
bulwahn
parents: 41928
diff changeset
   479
      |> Option.map (map Quickcheck_Common.post_process_term)) compiles
41861
77d87dc50e5a adding a function to compile a batch of terms for quickcheck with one code generation invocation
bulwahn
parents: 41472
diff changeset
   480
  end;
42195
1e7b62c93f5d adding an exhaustive validator for quickcheck's batch validating; moving strip_imp; minimal setup for bounded_forall
bulwahn
parents: 42176
diff changeset
   481
1e7b62c93f5d adding an exhaustive validator for quickcheck's batch validating; moving strip_imp; minimal setup for bounded_forall
bulwahn
parents: 42176
diff changeset
   482
fun compile_validator_exprs ctxt ts =
1e7b62c93f5d adding an exhaustive validator for quickcheck's batch validating; moving strip_imp; minimal setup for bounded_forall
bulwahn
parents: 42176
diff changeset
   483
  let
42361
23f352990944 modernized structure Proof_Context;
wenzelm
parents: 42325
diff changeset
   484
    val thy = Proof_Context.theory_of ctxt
42273
3b94cbd903c1 correcting bounded_forall construction; tuned
bulwahn
parents: 42230
diff changeset
   485
    val ts' = map (mk_validator_expr ctxt) ts
42195
1e7b62c93f5d adding an exhaustive validator for quickcheck's batch validating; moving strip_imp; minimal setup for bounded_forall
bulwahn
parents: 42176
diff changeset
   486
  in
1e7b62c93f5d adding an exhaustive validator for quickcheck's batch validating; moving strip_imp; minimal setup for bounded_forall
bulwahn
parents: 42176
diff changeset
   487
    Code_Runtime.dynamic_value_strict
1e7b62c93f5d adding an exhaustive validator for quickcheck's batch validating; moving strip_imp; minimal setup for bounded_forall
bulwahn
parents: 42176
diff changeset
   488
      (Validator_Batch.get, put_validator_batch, "Exhaustive_Generators.put_validator_batch")
1e7b62c93f5d adding an exhaustive validator for quickcheck's batch validating; moving strip_imp; minimal setup for bounded_forall
bulwahn
parents: 42176
diff changeset
   489
      thy (SOME target) (K I) (HOLogic.mk_list @{typ "code_numeral => bool"} ts') []
1e7b62c93f5d adding an exhaustive validator for quickcheck's batch validating; moving strip_imp; minimal setup for bounded_forall
bulwahn
parents: 42176
diff changeset
   490
  end;
1e7b62c93f5d adding an exhaustive validator for quickcheck's batch validating; moving strip_imp; minimal setup for bounded_forall
bulwahn
parents: 42176
diff changeset
   491
45721
d1fb55c2ed65 quickcheck's compilation returns if it is genuine counterexample or a counterexample due to a match exception
bulwahn
parents: 45718
diff changeset
   492
val test_goals = Quickcheck_Common.generator_test_goal_terms ("exhaustive",
d1fb55c2ed65 quickcheck's compilation returns if it is genuine counterexample or a counterexample due to a match exception
bulwahn
parents: 45718
diff changeset
   493
  apfst (Option.map snd) ooo compile_generator_expr);
43875
485d2ad43528 adding random, exhaustive and SML quickcheck as testers
bulwahn
parents: 42616
diff changeset
   494
  
42308
e2abd1ca8d01 revisiting mk_equation functions and refactoring them in exhaustive quickcheck
bulwahn
parents: 42307
diff changeset
   495
(* setup *)
40420
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
   496
45484
23871e17dddb setting up exhaustive generators which are used for the smart generators
bulwahn
parents: 45420
diff changeset
   497
val setup_exhaustive_datatype_interpretation =
23871e17dddb setting up exhaustive generators which are used for the smart generators
bulwahn
parents: 45420
diff changeset
   498
  Datatype.interpretation (Quickcheck_Common.ensure_sort_datatype
23871e17dddb setting up exhaustive generators which are used for the smart generators
bulwahn
parents: 45420
diff changeset
   499
      (((@{sort typerep}, @{sort term_of}), @{sort exhaustive}), instantiate_exhaustive_datatype))
23871e17dddb setting up exhaustive generators which are used for the smart generators
bulwahn
parents: 45420
diff changeset
   500
43878
eeb10fdd9535 changed every tester to have a configuration in quickcheck; enabling parallel testing of different testers in quickcheck
bulwahn
parents: 43877
diff changeset
   501
val active = Attrib.setup_config_bool @{binding quickcheck_exhaustive_active} (K true);
eeb10fdd9535 changed every tester to have a configuration in quickcheck; enabling parallel testing of different testers in quickcheck
bulwahn
parents: 43877
diff changeset
   502
40420
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
   503
val setup =
42229
1491b7209e76 generalizing ensure_sort_datatype for bounded_forall instances
bulwahn
parents: 42214
diff changeset
   504
  Datatype.interpretation (Quickcheck_Common.ensure_sort_datatype
42316
12635bb655fd deactivating other compilations in quickcheck_exhaustive momentarily that only interesting for my benchmarks and experiments
bulwahn
parents: 42315
diff changeset
   505
      (((@{sort typerep}, @{sort term_of}), @{sort full_exhaustive}), instantiate_full_exhaustive_datatype))
12635bb655fd deactivating other compilations in quickcheck_exhaustive momentarily that only interesting for my benchmarks and experiments
bulwahn
parents: 42315
diff changeset
   506
(* #> Datatype.interpretation (Quickcheck_Common.ensure_sort_datatype
42229
1491b7209e76 generalizing ensure_sort_datatype for bounded_forall instances
bulwahn
parents: 42214
diff changeset
   507
      (((@{sort typerep}, @{sort term_of}), @{sort exhaustive}), instantiate_exhaustive_datatype))
42230
594480d25aaa deriving bounded_forall instances in quickcheck_exhaustive
bulwahn
parents: 42229
diff changeset
   508
  #> Datatype.interpretation (Quickcheck_Common.ensure_sort_datatype
42306
51a08b2699d5 adding an even faster compilation scheme
bulwahn
parents: 42304
diff changeset
   509
      (((@{sort typerep}, @{sort term_of}), @{sort fast_exhaustive}), instantiate_fast_exhaustive_datatype))
42310
c664cc5cc5e9 splitting exhaustive and full_exhaustive into separate type classes
bulwahn
parents: 42309
diff changeset
   510
  #> Datatype.interpretation (Quickcheck_Common.ensure_sort_datatype
42316
12635bb655fd deactivating other compilations in quickcheck_exhaustive momentarily that only interesting for my benchmarks and experiments
bulwahn
parents: 42315
diff changeset
   511
      (((@{sort type}, @{sort type}), @{sort bounded_forall}), instantiate_bounded_forall_datatype))*)
43878
eeb10fdd9535 changed every tester to have a configuration in quickcheck; enabling parallel testing of different testers in quickcheck
bulwahn
parents: 43877
diff changeset
   512
  #> Context.theory_map (Quickcheck.add_tester ("exhaustive", (active, test_goals)))
42195
1e7b62c93f5d adding an exhaustive validator for quickcheck's batch validating; moving strip_imp; minimal setup for bounded_forall
bulwahn
parents: 42176
diff changeset
   513
  #> Context.theory_map (Quickcheck.add_batch_generator ("exhaustive", compile_generator_exprs))
1e7b62c93f5d adding an exhaustive validator for quickcheck's batch validating; moving strip_imp; minimal setup for bounded_forall
bulwahn
parents: 42176
diff changeset
   514
  #> Context.theory_map (Quickcheck.add_batch_validator ("exhaustive", compile_validator_exprs));
40420
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
   515
552563ea3304 adding code and theory for smallvalue generators, but do not setup the interpretation yet
bulwahn
parents:
diff changeset
   516
end;