src/HOL/Quickcheck_Narrowing.thy
author bulwahn
Wed, 22 Feb 2012 17:22:53 +0100
changeset 46589 689311986778
parent 46308 e5abbec2697a
child 46758 4106258260b3
permissions -rw-r--r--
adding new command "find_unused_assms"
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
     1
(* Author: Lukas Bulwahn, TU Muenchen *)
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
     2
43356
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
     3
header {* Counterexample generator performing narrowing-based testing *}
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
     4
41930
1e008cc4883a renaming lazysmallcheck ML file to Quickcheck_Narrowing
bulwahn
parents: 41929
diff changeset
     5
theory Quickcheck_Narrowing
43312
7a31f9064f99 adapting Quickcheck_Narrowing: adding setup for characters; correcting import statement
bulwahn
parents: 43309
diff changeset
     6
imports Quickcheck_Exhaustive
41962
27a61a3266d8 correcting names in Narrowing_Engine and example theory for Quickcheck_Narrowing
bulwahn
parents: 41961
diff changeset
     7
uses
43702
24fb44c1086a more abstract Thy_Load.load_file/use_file for external theory resources;
wenzelm
parents: 43562
diff changeset
     8
  ("Tools/Quickcheck/PNF_Narrowing_Engine.hs")
24fb44c1086a more abstract Thy_Load.load_file/use_file for external theory resources;
wenzelm
parents: 43562
diff changeset
     9
  ("Tools/Quickcheck/Narrowing_Engine.hs")
24fb44c1086a more abstract Thy_Load.load_file/use_file for external theory resources;
wenzelm
parents: 43562
diff changeset
    10
  ("Tools/Quickcheck/narrowing_generators.ML")
46589
689311986778 adding new command "find_unused_assms"
bulwahn
parents: 46308
diff changeset
    11
  ("Tools/Quickcheck/find_unused_assms.ML")
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
    12
begin
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
    13
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
    14
subsection {* Counterexample generator *}
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
    15
43308
fd6cc1378fec compilation of Haskell in its own target for Quickcheck; passing options by arguments in Narrowing_Generators
bulwahn
parents: 43237
diff changeset
    16
text {* We create a new target for the necessary code generation setup. *}
fd6cc1378fec compilation of Haskell in its own target for Quickcheck; passing options by arguments in Narrowing_Generators
bulwahn
parents: 43237
diff changeset
    17
fd6cc1378fec compilation of Haskell in its own target for Quickcheck; passing options by arguments in Narrowing_Generators
bulwahn
parents: 43237
diff changeset
    18
setup {* Code_Target.extend_target ("Haskell_Quickcheck", (Code_Haskell.target, K I)) *}
fd6cc1378fec compilation of Haskell in its own target for Quickcheck; passing options by arguments in Narrowing_Generators
bulwahn
parents: 43237
diff changeset
    19
41909
383bbdad1650 replacing strings in generated Code resolves the changing names of Typerep in lazysmallcheck prototype
bulwahn
parents: 41908
diff changeset
    20
subsubsection {* Code generation setup *}
383bbdad1650 replacing strings in generated Code resolves the changing names of Typerep in lazysmallcheck prototype
bulwahn
parents: 41908
diff changeset
    21
383bbdad1650 replacing strings in generated Code resolves the changing names of Typerep in lazysmallcheck prototype
bulwahn
parents: 41908
diff changeset
    22
code_type typerep
43308
fd6cc1378fec compilation of Haskell in its own target for Quickcheck; passing options by arguments in Narrowing_Generators
bulwahn
parents: 43237
diff changeset
    23
  (Haskell_Quickcheck "Typerep")
41909
383bbdad1650 replacing strings in generated Code resolves the changing names of Typerep in lazysmallcheck prototype
bulwahn
parents: 41908
diff changeset
    24
383bbdad1650 replacing strings in generated Code resolves the changing names of Typerep in lazysmallcheck prototype
bulwahn
parents: 41908
diff changeset
    25
code_const Typerep.Typerep
43308
fd6cc1378fec compilation of Haskell in its own target for Quickcheck; passing options by arguments in Narrowing_Generators
bulwahn
parents: 43237
diff changeset
    26
  (Haskell_Quickcheck "Typerep")
41909
383bbdad1650 replacing strings in generated Code resolves the changing names of Typerep in lazysmallcheck prototype
bulwahn
parents: 41908
diff changeset
    27
43308
fd6cc1378fec compilation of Haskell in its own target for Quickcheck; passing options by arguments in Narrowing_Generators
bulwahn
parents: 43237
diff changeset
    28
code_reserved Haskell_Quickcheck Typerep
41909
383bbdad1650 replacing strings in generated Code resolves the changing names of Typerep in lazysmallcheck prototype
bulwahn
parents: 41908
diff changeset
    29
43341
acdac535c7fa fixed document generation for HOL
hoelzl
parents: 43317
diff changeset
    30
subsubsection {* Type @{text "code_int"} for Haskell Quickcheck's Int type *}
41908
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
    31
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
    32
typedef (open) code_int = "UNIV \<Colon> int set"
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
    33
  morphisms int_of of_int by rule
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
    34
42021
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    35
lemma of_int_int_of [simp]:
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    36
  "of_int (int_of k) = k"
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    37
  by (rule int_of_inverse)
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    38
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    39
lemma int_of_of_int [simp]:
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    40
  "int_of (of_int n) = n"
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    41
  by (rule of_int_inverse) (rule UNIV_I)
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    42
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    43
lemma code_int:
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    44
  "(\<And>n\<Colon>code_int. PROP P n) \<equiv> (\<And>n\<Colon>int. PROP P (of_int n))"
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    45
proof
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    46
  fix n :: int
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    47
  assume "\<And>n\<Colon>code_int. PROP P n"
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    48
  then show "PROP P (of_int n)" .
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    49
next
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    50
  fix n :: code_int
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    51
  assume "\<And>n\<Colon>int. PROP P (of_int n)"
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    52
  then have "PROP P (of_int (int_of n))" .
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    53
  then show "PROP P n" by simp
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    54
qed
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    55
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    56
41908
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
    57
lemma int_of_inject [simp]:
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
    58
  "int_of k = int_of l \<longleftrightarrow> k = l"
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
    59
  by (rule int_of_inject)
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
    60
42021
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    61
lemma of_int_inject [simp]:
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    62
  "of_int n = of_int m \<longleftrightarrow> n = m"
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    63
  by (rule of_int_inject) (rule UNIV_I)+
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    64
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    65
instantiation code_int :: equal
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    66
begin
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    67
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    68
definition
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    69
  "HOL.equal k l \<longleftrightarrow> HOL.equal (int_of k) (int_of l)"
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    70
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    71
instance proof
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    72
qed (auto simp add: equal_code_int_def equal_int_def eq_int_refl)
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    73
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    74
end
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    75
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    76
instantiation code_int :: number
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    77
begin
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    78
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    79
definition
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    80
  "number_of = of_int"
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    81
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    82
instance ..
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    83
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    84
end
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    85
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    86
lemma int_of_number [simp]:
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    87
  "int_of (number_of k) = number_of k"
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    88
  by (simp add: number_of_code_int_def number_of_is_id)
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    89
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    90
41912
1848775589e5 adding termination proofs to series functions in LSC; commenting out momentarily unused term refinement functions in LSC
bulwahn
parents: 41910
diff changeset
    91
definition nat_of :: "code_int => nat"
1848775589e5 adding termination proofs to series functions in LSC; commenting out momentarily unused term refinement functions in LSC
bulwahn
parents: 41910
diff changeset
    92
where
1848775589e5 adding termination proofs to series functions in LSC; commenting out momentarily unused term refinement functions in LSC
bulwahn
parents: 41910
diff changeset
    93
  "nat_of i = nat (int_of i)"
41908
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
    94
42980
859fe9cc0838 improving code_int setup in Quickcheck_Narrowing; adding partial_term_of class in Quickcheck_Narrowing
bulwahn
parents: 42024
diff changeset
    95
43047
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42980
diff changeset
    96
code_datatype "number_of \<Colon> int \<Rightarrow> code_int"
42980
859fe9cc0838 improving code_int setup in Quickcheck_Narrowing; adding partial_term_of class in Quickcheck_Narrowing
bulwahn
parents: 42024
diff changeset
    97
  
859fe9cc0838 improving code_int setup in Quickcheck_Narrowing; adding partial_term_of class in Quickcheck_Narrowing
bulwahn
parents: 42024
diff changeset
    98
  
42021
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
    99
instantiation code_int :: "{minus, linordered_semidom, semiring_div, linorder}"
41908
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   100
begin
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   101
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   102
definition [simp, code del]:
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   103
  "0 = of_int 0"
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   104
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   105
definition [simp, code del]:
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   106
  "1 = of_int 1"
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   107
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   108
definition [simp, code del]:
42021
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   109
  "n + m = of_int (int_of n + int_of m)"
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   110
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   111
definition [simp, code del]:
41908
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   112
  "n - m = of_int (int_of n - int_of m)"
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   113
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   114
definition [simp, code del]:
42021
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   115
  "n * m = of_int (int_of n * int_of m)"
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   116
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   117
definition [simp, code del]:
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   118
  "n div m = of_int (int_of n div int_of m)"
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   119
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   120
definition [simp, code del]:
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   121
  "n mod m = of_int (int_of n mod int_of m)"
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   122
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   123
definition [simp, code del]:
41908
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   124
  "n \<le> m \<longleftrightarrow> int_of n \<le> int_of m"
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   125
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   126
definition [simp, code del]:
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   127
  "n < m \<longleftrightarrow> int_of n < int_of m"
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   128
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   129
42021
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   130
instance proof
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   131
qed (auto simp add: code_int left_distrib zmult_zless_mono2)
41908
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   132
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   133
end
42980
859fe9cc0838 improving code_int setup in Quickcheck_Narrowing; adding partial_term_of class in Quickcheck_Narrowing
bulwahn
parents: 42024
diff changeset
   134
41908
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   135
lemma zero_code_int_code [code, code_unfold]:
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   136
  "(0\<Colon>code_int) = Numeral0"
42980
859fe9cc0838 improving code_int setup in Quickcheck_Narrowing; adding partial_term_of class in Quickcheck_Narrowing
bulwahn
parents: 42024
diff changeset
   137
  by (simp add: number_of_code_int_def Pls_def)
41908
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   138
42980
859fe9cc0838 improving code_int setup in Quickcheck_Narrowing; adding partial_term_of class in Quickcheck_Narrowing
bulwahn
parents: 42024
diff changeset
   139
lemma one_code_int_code [code, code_unfold]:
41908
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   140
  "(1\<Colon>code_int) = Numeral1"
42980
859fe9cc0838 improving code_int setup in Quickcheck_Narrowing; adding partial_term_of class in Quickcheck_Narrowing
bulwahn
parents: 42024
diff changeset
   141
  by (simp add: number_of_code_int_def Pls_def Bit1_def)
41908
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   142
42021
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   143
definition div_mod_code_int :: "code_int \<Rightarrow> code_int \<Rightarrow> code_int \<times> code_int" where
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   144
  [code del]: "div_mod_code_int n m = (n div m, n mod m)"
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   145
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   146
lemma [code]:
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   147
  "div_mod_code_int n m = (if m = 0 then (0, n) else (n div m, n mod m))"
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   148
  unfolding div_mod_code_int_def by auto
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   149
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   150
lemma [code]:
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   151
  "n div m = fst (div_mod_code_int n m)"
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   152
  unfolding div_mod_code_int_def by simp
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   153
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   154
lemma [code]:
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   155
  "n mod m = snd (div_mod_code_int n m)"
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   156
  unfolding div_mod_code_int_def by simp
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   157
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   158
lemma int_of_code [code]:
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   159
  "int_of k = (if k = 0 then 0
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   160
    else (if k mod 2 = 0 then 2 * int_of (k div 2) else 2 * int_of (k div 2) + 1))"
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   161
proof -
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   162
  have 1: "(int_of k div 2) * 2 + int_of k mod 2 = int_of k" 
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   163
    by (rule mod_div_equality)
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   164
  have "int_of k mod 2 = 0 \<or> int_of k mod 2 = 1" by auto
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   165
  from this show ?thesis
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   166
    apply auto
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   167
    apply (insert 1) by (auto simp add: mult_ac)
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   168
qed
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   169
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   170
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   171
code_instance code_numeral :: equal
43308
fd6cc1378fec compilation of Haskell in its own target for Quickcheck; passing options by arguments in Narrowing_Generators
bulwahn
parents: 43237
diff changeset
   172
  (Haskell_Quickcheck -)
42021
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   173
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   174
setup {* fold (Numeral.add_code @{const_name number_code_int_inst.number_of_code_int}
43308
fd6cc1378fec compilation of Haskell in its own target for Quickcheck; passing options by arguments in Narrowing_Generators
bulwahn
parents: 43237
diff changeset
   175
  false Code_Printer.literal_numeral) ["Haskell_Quickcheck"]  *}
42021
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   176
41908
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   177
code_const "0 \<Colon> code_int"
43308
fd6cc1378fec compilation of Haskell in its own target for Quickcheck; passing options by arguments in Narrowing_Generators
bulwahn
parents: 43237
diff changeset
   178
  (Haskell_Quickcheck "0")
41908
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   179
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   180
code_const "1 \<Colon> code_int"
43308
fd6cc1378fec compilation of Haskell in its own target for Quickcheck; passing options by arguments in Narrowing_Generators
bulwahn
parents: 43237
diff changeset
   181
  (Haskell_Quickcheck "1")
41908
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   182
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   183
code_const "minus \<Colon> code_int \<Rightarrow> code_int \<Rightarrow> code_int"
43308
fd6cc1378fec compilation of Haskell in its own target for Quickcheck; passing options by arguments in Narrowing_Generators
bulwahn
parents: 43237
diff changeset
   184
  (Haskell_Quickcheck "(_/ -/ _)")
41908
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   185
42021
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   186
code_const div_mod_code_int
43308
fd6cc1378fec compilation of Haskell in its own target for Quickcheck; passing options by arguments in Narrowing_Generators
bulwahn
parents: 43237
diff changeset
   187
  (Haskell_Quickcheck "divMod")
42021
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   188
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   189
code_const "HOL.equal \<Colon> code_int \<Rightarrow> code_int \<Rightarrow> bool"
43308
fd6cc1378fec compilation of Haskell in its own target for Quickcheck; passing options by arguments in Narrowing_Generators
bulwahn
parents: 43237
diff changeset
   190
  (Haskell_Quickcheck infix 4 "==")
42021
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   191
41908
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   192
code_const "op \<le> \<Colon> code_int \<Rightarrow> code_int \<Rightarrow> bool"
43308
fd6cc1378fec compilation of Haskell in its own target for Quickcheck; passing options by arguments in Narrowing_Generators
bulwahn
parents: 43237
diff changeset
   193
  (Haskell_Quickcheck infix 4 "<=")
41908
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   194
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   195
code_const "op < \<Colon> code_int \<Rightarrow> code_int \<Rightarrow> bool"
43308
fd6cc1378fec compilation of Haskell in its own target for Quickcheck; passing options by arguments in Narrowing_Generators
bulwahn
parents: 43237
diff changeset
   196
  (Haskell_Quickcheck infix 4 "<")
41908
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   197
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   198
code_type code_int
43308
fd6cc1378fec compilation of Haskell in its own target for Quickcheck; passing options by arguments in Narrowing_Generators
bulwahn
parents: 43237
diff changeset
   199
  (Haskell_Quickcheck "Int")
41908
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   200
42021
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   201
code_abort of_int
52551c0a3374 extending code_int type more; adding narrowing instance for type int; added test case for int instance
bulwahn
parents: 41965
diff changeset
   202
41961
fdd37cfcd4a3 renaming series and serial to narrowing in Quickcheck_Narrowing
bulwahn
parents: 41943
diff changeset
   203
subsubsection {* Narrowing's deep representation of types and terms *}
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   204
43047
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42980
diff changeset
   205
datatype narrowing_type = SumOfProd "narrowing_type list list"
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42980
diff changeset
   206
datatype narrowing_term = Var "code_int list" narrowing_type | Ctr code_int "narrowing_term list"
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42980
diff changeset
   207
datatype 'a cons = C narrowing_type "(narrowing_term list => 'a) list"
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   208
43356
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   209
primrec map_cons :: "('a => 'b) => 'a cons => 'b cons"
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   210
where
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   211
  "map_cons f (C ty cs) = C ty (map (%c. f o c) cs)"
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   212
43341
acdac535c7fa fixed document generation for HOL
hoelzl
parents: 43317
diff changeset
   213
subsubsection {* From narrowing's deep representation of terms to @{theory Code_Evaluation}'s terms *}
42980
859fe9cc0838 improving code_int setup in Quickcheck_Narrowing; adding partial_term_of class in Quickcheck_Narrowing
bulwahn
parents: 42024
diff changeset
   214
859fe9cc0838 improving code_int setup in Quickcheck_Narrowing; adding partial_term_of class in Quickcheck_Narrowing
bulwahn
parents: 42024
diff changeset
   215
class partial_term_of = typerep +
43047
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42980
diff changeset
   216
  fixes partial_term_of :: "'a itself => narrowing_term => Code_Evaluation.term"
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42980
diff changeset
   217
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42980
diff changeset
   218
lemma partial_term_of_anything: "partial_term_of x nt \<equiv> t"
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42980
diff changeset
   219
  by (rule eq_reflection) (cases "partial_term_of x nt", cases t, simp)
43356
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   220
 
41964
13904699c859 tuned subsubsection names in Quickcheck_Narrowing
bulwahn
parents: 41962
diff changeset
   221
subsubsection {* Auxilary functions for Narrowing *}
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   222
41908
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   223
consts nth :: "'a list => code_int => 'a"
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   224
43308
fd6cc1378fec compilation of Haskell in its own target for Quickcheck; passing options by arguments in Narrowing_Generators
bulwahn
parents: 43237
diff changeset
   225
code_const nth (Haskell_Quickcheck infixl 9  "!!")
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   226
41908
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   227
consts error :: "char list => 'a"
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   228
43308
fd6cc1378fec compilation of Haskell in its own target for Quickcheck; passing options by arguments in Narrowing_Generators
bulwahn
parents: 43237
diff changeset
   229
code_const error (Haskell_Quickcheck "error")
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   230
41908
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   231
consts toEnum :: "code_int => char"
3bd9a21366d2 changing invocation of ghc from interactive mode to compilation increases the performance of lazysmallcheck by a factor of twenty; changing Integer type to Int reduces by another 50 percent
bulwahn
parents: 41905
diff changeset
   232
43308
fd6cc1378fec compilation of Haskell in its own target for Quickcheck; passing options by arguments in Narrowing_Generators
bulwahn
parents: 43237
diff changeset
   233
code_const toEnum (Haskell_Quickcheck "toEnum")
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   234
43316
3e274608f06b removing char setup
bulwahn
parents: 43315
diff changeset
   235
consts marker :: "char"
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   236
43316
3e274608f06b removing char setup
bulwahn
parents: 43315
diff changeset
   237
code_const marker (Haskell_Quickcheck "''\\0'")
3e274608f06b removing char setup
bulwahn
parents: 43315
diff changeset
   238
41961
fdd37cfcd4a3 renaming series and serial to narrowing in Quickcheck_Narrowing
bulwahn
parents: 41943
diff changeset
   239
subsubsection {* Narrowing's basic operations *}
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   240
41961
fdd37cfcd4a3 renaming series and serial to narrowing in Quickcheck_Narrowing
bulwahn
parents: 41943
diff changeset
   241
type_synonym 'a narrowing = "code_int => 'a cons"
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   242
41961
fdd37cfcd4a3 renaming series and serial to narrowing in Quickcheck_Narrowing
bulwahn
parents: 41943
diff changeset
   243
definition empty :: "'a narrowing"
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   244
where
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   245
  "empty d = C (SumOfProd []) []"
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   246
  
41961
fdd37cfcd4a3 renaming series and serial to narrowing in Quickcheck_Narrowing
bulwahn
parents: 41943
diff changeset
   247
definition cons :: "'a => 'a narrowing"
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   248
where
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   249
  "cons a d = (C (SumOfProd [[]]) [(%_. a)])"
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   250
43047
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42980
diff changeset
   251
fun conv :: "(narrowing_term list => 'a) list => narrowing_term => 'a"
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   252
where
43316
3e274608f06b removing char setup
bulwahn
parents: 43315
diff changeset
   253
  "conv cs (Var p _) = error (marker # map toEnum p)"
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   254
| "conv cs (Ctr i xs) = (nth cs i) xs"
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   255
43047
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42980
diff changeset
   256
fun nonEmpty :: "narrowing_type => bool"
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   257
where
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   258
  "nonEmpty (SumOfProd ps) = (\<not> (List.null ps))"
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   259
41961
fdd37cfcd4a3 renaming series and serial to narrowing in Quickcheck_Narrowing
bulwahn
parents: 41943
diff changeset
   260
definition "apply" :: "('a => 'b) narrowing => 'a narrowing => 'b narrowing"
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   261
where
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   262
  "apply f a d =
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   263
     (case f d of C (SumOfProd ps) cfs =>
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   264
       case a (d - 1) of C ta cas =>
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   265
       let
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   266
         shallow = (d > 0 \<and> nonEmpty ta);
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   267
         cs = [(%xs'. (case xs' of [] => undefined | x # xs => cf xs (conv cas x))). shallow, cf <- cfs]
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   268
       in C (SumOfProd [ta # p. shallow, p <- ps]) cs)"
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   269
41961
fdd37cfcd4a3 renaming series and serial to narrowing in Quickcheck_Narrowing
bulwahn
parents: 41943
diff changeset
   270
definition sum :: "'a narrowing => 'a narrowing => 'a narrowing"
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   271
where
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   272
  "sum a b d =
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   273
    (case a d of C (SumOfProd ssa) ca => 
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   274
      case b d of C (SumOfProd ssb) cb =>
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   275
      C (SumOfProd (ssa @ ssb)) (ca @ cb))"
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   276
41912
1848775589e5 adding termination proofs to series functions in LSC; commenting out momentarily unused term refinement functions in LSC
bulwahn
parents: 41910
diff changeset
   277
lemma [fundef_cong]:
1848775589e5 adding termination proofs to series functions in LSC; commenting out momentarily unused term refinement functions in LSC
bulwahn
parents: 41910
diff changeset
   278
  assumes "a d = a' d" "b d = b' d" "d = d'"
1848775589e5 adding termination proofs to series functions in LSC; commenting out momentarily unused term refinement functions in LSC
bulwahn
parents: 41910
diff changeset
   279
  shows "sum a b d = sum a' b' d'"
43047
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42980
diff changeset
   280
using assms unfolding sum_def by (auto split: cons.split narrowing_type.split)
41912
1848775589e5 adding termination proofs to series functions in LSC; commenting out momentarily unused term refinement functions in LSC
bulwahn
parents: 41910
diff changeset
   281
1848775589e5 adding termination proofs to series functions in LSC; commenting out momentarily unused term refinement functions in LSC
bulwahn
parents: 41910
diff changeset
   282
lemma [fundef_cong]:
1848775589e5 adding termination proofs to series functions in LSC; commenting out momentarily unused term refinement functions in LSC
bulwahn
parents: 41910
diff changeset
   283
  assumes "f d = f' d" "(\<And>d'. 0 <= d' & d' < d ==> a d' = a' d')"
1848775589e5 adding termination proofs to series functions in LSC; commenting out momentarily unused term refinement functions in LSC
bulwahn
parents: 41910
diff changeset
   284
  assumes "d = d'"
1848775589e5 adding termination proofs to series functions in LSC; commenting out momentarily unused term refinement functions in LSC
bulwahn
parents: 41910
diff changeset
   285
  shows "apply f a d = apply f' a' d'"
1848775589e5 adding termination proofs to series functions in LSC; commenting out momentarily unused term refinement functions in LSC
bulwahn
parents: 41910
diff changeset
   286
proof -
1848775589e5 adding termination proofs to series functions in LSC; commenting out momentarily unused term refinement functions in LSC
bulwahn
parents: 41910
diff changeset
   287
  note assms moreover
41930
1e008cc4883a renaming lazysmallcheck ML file to Quickcheck_Narrowing
bulwahn
parents: 41929
diff changeset
   288
  have "int_of (of_int 0) < int_of d' ==> int_of (of_int 0) <= int_of (of_int (int_of d' - int_of (of_int 1)))"
41912
1848775589e5 adding termination proofs to series functions in LSC; commenting out momentarily unused term refinement functions in LSC
bulwahn
parents: 41910
diff changeset
   289
    by (simp add: of_int_inverse)
1848775589e5 adding termination proofs to series functions in LSC; commenting out momentarily unused term refinement functions in LSC
bulwahn
parents: 41910
diff changeset
   290
  moreover
41930
1e008cc4883a renaming lazysmallcheck ML file to Quickcheck_Narrowing
bulwahn
parents: 41929
diff changeset
   291
  have "int_of (of_int (int_of d' - int_of (of_int 1))) < int_of d'"
41912
1848775589e5 adding termination proofs to series functions in LSC; commenting out momentarily unused term refinement functions in LSC
bulwahn
parents: 41910
diff changeset
   292
    by (simp add: of_int_inverse)
1848775589e5 adding termination proofs to series functions in LSC; commenting out momentarily unused term refinement functions in LSC
bulwahn
parents: 41910
diff changeset
   293
  ultimately show ?thesis
43047
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42980
diff changeset
   294
    unfolding apply_def by (auto split: cons.split narrowing_type.split simp add: Let_def)
41912
1848775589e5 adding termination proofs to series functions in LSC; commenting out momentarily unused term refinement functions in LSC
bulwahn
parents: 41910
diff changeset
   295
qed
1848775589e5 adding termination proofs to series functions in LSC; commenting out momentarily unused term refinement functions in LSC
bulwahn
parents: 41910
diff changeset
   296
41961
fdd37cfcd4a3 renaming series and serial to narrowing in Quickcheck_Narrowing
bulwahn
parents: 41943
diff changeset
   297
subsubsection {* Narrowing generator type class *}
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   298
41961
fdd37cfcd4a3 renaming series and serial to narrowing in Quickcheck_Narrowing
bulwahn
parents: 41943
diff changeset
   299
class narrowing =
fdd37cfcd4a3 renaming series and serial to narrowing in Quickcheck_Narrowing
bulwahn
parents: 41943
diff changeset
   300
  fixes narrowing :: "code_int => 'a cons"
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   301
43237
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43047
diff changeset
   302
datatype property = Universal narrowing_type "(narrowing_term => property)" "narrowing_term => Code_Evaluation.term" | Existential narrowing_type "(narrowing_term => property)" "narrowing_term => Code_Evaluation.term" | Property bool
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43047
diff changeset
   303
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43047
diff changeset
   304
(* FIXME: hard-wired maximal depth of 100 here *)
43315
893de45ac28d removing unneccessary manual instantiations and dead definitions; hiding more constants and facts
bulwahn
parents: 43314
diff changeset
   305
definition exists :: "('a :: {narrowing, partial_term_of} => property) => property"
43237
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43047
diff changeset
   306
where
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43047
diff changeset
   307
  "exists f = (case narrowing (100 :: code_int) of C ty cs => Existential ty (\<lambda> t. f (conv cs t)) (partial_term_of (TYPE('a))))"
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43047
diff changeset
   308
43315
893de45ac28d removing unneccessary manual instantiations and dead definitions; hiding more constants and facts
bulwahn
parents: 43314
diff changeset
   309
definition "all" :: "('a :: {narrowing, partial_term_of} => property) => property"
43237
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43047
diff changeset
   310
where
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43047
diff changeset
   311
  "all f = (case narrowing (100 :: code_int) of C ty cs => Universal ty (\<lambda>t. f (conv cs t)) (partial_term_of (TYPE('a))))"
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43047
diff changeset
   312
41943
12f24ad566ea fixed document;
wenzelm
parents: 41930
diff changeset
   313
subsubsection {* class @{text is_testable} *}
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   314
41943
12f24ad566ea fixed document;
wenzelm
parents: 41930
diff changeset
   315
text {* The class @{text is_testable} ensures that all necessary type instances are generated. *}
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   316
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   317
class is_testable
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   318
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   319
instance bool :: is_testable ..
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   320
43047
26774ccb1c74 automatic derivation of partial_term_of functions; renaming type and term to longer names narrowing_type and narrowing_term; hiding constant C; adding overlord option
bulwahn
parents: 42980
diff changeset
   321
instance "fun" :: ("{term_of, narrowing, partial_term_of}", is_testable) is_testable ..
41905
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   322
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   323
definition ensure_testable :: "'a :: is_testable => 'a :: is_testable"
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   324
where
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   325
  "ensure_testable f = f"
e2611bc96022 adding files for prototype of lazysmallcheck
bulwahn
parents:
diff changeset
   326
41910
709c04e7b703 adding serial instance of finite_4 in lazysmallcheck; changing code equations for implies
bulwahn
parents: 41909
diff changeset
   327
42022
101ce92333f4 adding a simple datatype for representing functions in Quickcheck_Narrowing
bulwahn
parents: 42021
diff changeset
   328
subsubsection {* Defining a simple datatype to represent functions in an incomplete and redundant way *}
101ce92333f4 adding a simple datatype for representing functions in Quickcheck_Narrowing
bulwahn
parents: 42021
diff changeset
   329
101ce92333f4 adding a simple datatype for representing functions in Quickcheck_Narrowing
bulwahn
parents: 42021
diff changeset
   330
datatype ('a, 'b) ffun = Constant 'b | Update 'a 'b "('a, 'b) ffun"
101ce92333f4 adding a simple datatype for representing functions in Quickcheck_Narrowing
bulwahn
parents: 42021
diff changeset
   331
101ce92333f4 adding a simple datatype for representing functions in Quickcheck_Narrowing
bulwahn
parents: 42021
diff changeset
   332
primrec eval_ffun :: "('a, 'b) ffun => 'a => 'b"
101ce92333f4 adding a simple datatype for representing functions in Quickcheck_Narrowing
bulwahn
parents: 42021
diff changeset
   333
where
101ce92333f4 adding a simple datatype for representing functions in Quickcheck_Narrowing
bulwahn
parents: 42021
diff changeset
   334
  "eval_ffun (Constant c) x = c"
101ce92333f4 adding a simple datatype for representing functions in Quickcheck_Narrowing
bulwahn
parents: 42021
diff changeset
   335
| "eval_ffun (Update x' y f) x = (if x = x' then y else eval_ffun f x)"
101ce92333f4 adding a simple datatype for representing functions in Quickcheck_Narrowing
bulwahn
parents: 42021
diff changeset
   336
101ce92333f4 adding a simple datatype for representing functions in Quickcheck_Narrowing
bulwahn
parents: 42021
diff changeset
   337
hide_type (open) ffun
101ce92333f4 adding a simple datatype for representing functions in Quickcheck_Narrowing
bulwahn
parents: 42021
diff changeset
   338
hide_const (open) Constant Update eval_ffun
101ce92333f4 adding a simple datatype for representing functions in Quickcheck_Narrowing
bulwahn
parents: 42021
diff changeset
   339
42024
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42022
diff changeset
   340
datatype 'b cfun = Constant 'b
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42022
diff changeset
   341
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42022
diff changeset
   342
primrec eval_cfun :: "'b cfun => 'a => 'b"
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42022
diff changeset
   343
where
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42022
diff changeset
   344
  "eval_cfun (Constant c) y = c"
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42022
diff changeset
   345
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42022
diff changeset
   346
hide_type (open) cfun
45734
1024dd30da42 hide quickcheck constants Abs_cfun and Rep_cfun, to avoid clash with HOLCF
huffman
parents: 45001
diff changeset
   347
hide_const (open) Constant eval_cfun Abs_cfun Rep_cfun
42024
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42022
diff changeset
   348
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42022
diff changeset
   349
subsubsection {* Setting up the counterexample generator *}
43237
8f5c3c6c2909 adding compilation that allows existentials in Quickcheck_Narrowing
bulwahn
parents: 43047
diff changeset
   350
43702
24fb44c1086a more abstract Thy_Load.load_file/use_file for external theory resources;
wenzelm
parents: 43562
diff changeset
   351
use "Tools/Quickcheck/narrowing_generators.ML"
42024
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42022
diff changeset
   352
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42022
diff changeset
   353
setup {* Narrowing_Generators.setup *}
51df23535105 handling a quite restricted set of functions in Quickcheck_Narrowing by an easy transformation
bulwahn
parents: 42022
diff changeset
   354
45001
5c8d7d6db682 ensuring that some constants are generated in the source code by adding calls in ensure_testable
bulwahn
parents: 43887
diff changeset
   355
definition narrowing_dummy_partial_term_of :: "('a :: partial_term_of) itself => narrowing_term => term"
5c8d7d6db682 ensuring that some constants are generated in the source code by adding calls in ensure_testable
bulwahn
parents: 43887
diff changeset
   356
where
5c8d7d6db682 ensuring that some constants are generated in the source code by adding calls in ensure_testable
bulwahn
parents: 43887
diff changeset
   357
  "narrowing_dummy_partial_term_of = partial_term_of"
5c8d7d6db682 ensuring that some constants are generated in the source code by adding calls in ensure_testable
bulwahn
parents: 43887
diff changeset
   358
5c8d7d6db682 ensuring that some constants are generated in the source code by adding calls in ensure_testable
bulwahn
parents: 43887
diff changeset
   359
definition narrowing_dummy_narrowing :: "code_int => ('a :: narrowing) cons"
5c8d7d6db682 ensuring that some constants are generated in the source code by adding calls in ensure_testable
bulwahn
parents: 43887
diff changeset
   360
where
5c8d7d6db682 ensuring that some constants are generated in the source code by adding calls in ensure_testable
bulwahn
parents: 43887
diff changeset
   361
  "narrowing_dummy_narrowing = narrowing"
5c8d7d6db682 ensuring that some constants are generated in the source code by adding calls in ensure_testable
bulwahn
parents: 43887
diff changeset
   362
5c8d7d6db682 ensuring that some constants are generated in the source code by adding calls in ensure_testable
bulwahn
parents: 43887
diff changeset
   363
lemma [code]:
5c8d7d6db682 ensuring that some constants are generated in the source code by adding calls in ensure_testable
bulwahn
parents: 43887
diff changeset
   364
  "ensure_testable f =
5c8d7d6db682 ensuring that some constants are generated in the source code by adding calls in ensure_testable
bulwahn
parents: 43887
diff changeset
   365
    (let
5c8d7d6db682 ensuring that some constants are generated in the source code by adding calls in ensure_testable
bulwahn
parents: 43887
diff changeset
   366
      x = narrowing_dummy_narrowing :: code_int => bool cons;
5c8d7d6db682 ensuring that some constants are generated in the source code by adding calls in ensure_testable
bulwahn
parents: 43887
diff changeset
   367
      y = narrowing_dummy_partial_term_of :: bool itself => narrowing_term => term;
5c8d7d6db682 ensuring that some constants are generated in the source code by adding calls in ensure_testable
bulwahn
parents: 43887
diff changeset
   368
      z = (conv :: _ => _ => unit)  in f)"
5c8d7d6db682 ensuring that some constants are generated in the source code by adding calls in ensure_testable
bulwahn
parents: 43887
diff changeset
   369
unfolding Let_def ensure_testable_def ..
5c8d7d6db682 ensuring that some constants are generated in the source code by adding calls in ensure_testable
bulwahn
parents: 43887
diff changeset
   370
46308
e5abbec2697a adding narrowing instance for sets
bulwahn
parents: 46032
diff changeset
   371
subsection {* Narrowing for sets *}
e5abbec2697a adding narrowing instance for sets
bulwahn
parents: 46032
diff changeset
   372
e5abbec2697a adding narrowing instance for sets
bulwahn
parents: 46032
diff changeset
   373
instantiation set :: (narrowing) narrowing
e5abbec2697a adding narrowing instance for sets
bulwahn
parents: 46032
diff changeset
   374
begin
e5abbec2697a adding narrowing instance for sets
bulwahn
parents: 46032
diff changeset
   375
e5abbec2697a adding narrowing instance for sets
bulwahn
parents: 46032
diff changeset
   376
definition "narrowing_set = Quickcheck_Narrowing.apply (Quickcheck_Narrowing.cons set) narrowing"
e5abbec2697a adding narrowing instance for sets
bulwahn
parents: 46032
diff changeset
   377
e5abbec2697a adding narrowing instance for sets
bulwahn
parents: 46032
diff changeset
   378
instance ..
e5abbec2697a adding narrowing instance for sets
bulwahn
parents: 46032
diff changeset
   379
e5abbec2697a adding narrowing instance for sets
bulwahn
parents: 46032
diff changeset
   380
end
45001
5c8d7d6db682 ensuring that some constants are generated in the source code by adding calls in ensure_testable
bulwahn
parents: 43887
diff changeset
   381
  
43356
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   382
subsection {* Narrowing for integers *}
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   383
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   384
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   385
definition drawn_from :: "'a list => 'a cons"
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   386
where "drawn_from xs = C (SumOfProd (map (%_. []) xs)) (map (%x y. x) xs)"
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   387
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   388
function around_zero :: "int => int list"
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   389
where
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   390
  "around_zero i = (if i < 0 then [] else (if i = 0 then [0] else around_zero (i - 1) @ [i, -i]))"
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   391
by pat_completeness auto
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   392
termination by (relation "measure nat") auto
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   393
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   394
declare around_zero.simps[simp del]
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   395
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   396
lemma length_around_zero:
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   397
  assumes "i >= 0" 
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   398
  shows "length (around_zero i) = 2 * nat i + 1"
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   399
proof (induct rule: int_ge_induct[OF assms])
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   400
  case 1
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   401
  from 1 show ?case by (simp add: around_zero.simps)
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   402
next
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   403
  case (2 i)
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   404
  from 2 show ?case
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   405
    by (simp add: around_zero.simps[of "i + 1"])
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   406
qed
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   407
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   408
instantiation int :: narrowing
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   409
begin
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   410
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   411
definition
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   412
  "narrowing_int d = (let (u :: _ => _ => unit) = conv; i = Quickcheck_Narrowing.int_of d in drawn_from (around_zero i))"
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   413
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   414
instance ..
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   415
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   416
end
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   417
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   418
lemma [code, code del]: "partial_term_of (ty :: int itself) t == undefined"
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   419
by (rule partial_term_of_anything)+
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   420
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   421
lemma [code]:
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   422
  "partial_term_of (ty :: int itself) (Var p t) == Code_Evaluation.Free (STR ''_'') (Typerep.Typerep (STR ''Int.int'') [])"
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   423
  "partial_term_of (ty :: int itself) (Ctr i []) == (if i mod 2 = 0 then
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   424
     Code_Evaluation.term_of (- (int_of i) div 2) else Code_Evaluation.term_of ((int_of i + 1) div 2))"
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   425
by (rule partial_term_of_anything)+
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   426
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   427
text {* Defining integers by positive and negative copy of naturals *}
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   428
(*
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   429
datatype simple_int = Positive nat | Negative nat
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   430
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   431
primrec int_of_simple_int :: "simple_int => int"
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   432
where
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   433
  "int_of_simple_int (Positive n) = int n"
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   434
| "int_of_simple_int (Negative n) = (-1 - int n)"
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   435
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   436
instantiation int :: narrowing
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   437
begin
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   438
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   439
definition narrowing_int :: "code_int => int cons"
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   440
where
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   441
  "narrowing_int d = map_cons int_of_simple_int ((narrowing :: simple_int narrowing) d)"
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   442
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   443
instance ..
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   444
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   445
end
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   446
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   447
text {* printing the partial terms *}
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   448
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   449
lemma [code]:
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   450
  "partial_term_of (ty :: int itself) t == Code_Evaluation.App (Code_Evaluation.Const (STR ''Quickcheck_Narrowing.int_of_simple_int'')
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   451
     (Typerep.Typerep (STR ''fun'') [Typerep.Typerep (STR ''Quickcheck_Narrowing.simple_int'') [], Typerep.Typerep (STR ''Int.int'') []])) (partial_term_of (TYPE(simple_int)) t)"
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   452
by (rule partial_term_of_anything)
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   453
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   454
*)
2dee03f192b7 adding another narrowing strategy for integers
bulwahn
parents: 43341
diff changeset
   455
46589
689311986778 adding new command "find_unused_assms"
bulwahn
parents: 46308
diff changeset
   456
subsection {* The @{text find_unused_assms} command *}
689311986778 adding new command "find_unused_assms"
bulwahn
parents: 46308
diff changeset
   457
689311986778 adding new command "find_unused_assms"
bulwahn
parents: 46308
diff changeset
   458
use "Tools/Quickcheck/find_unused_assms.ML"
689311986778 adding new command "find_unused_assms"
bulwahn
parents: 46308
diff changeset
   459
689311986778 adding new command "find_unused_assms"
bulwahn
parents: 46308
diff changeset
   460
subsection {* Closing up *}
689311986778 adding new command "find_unused_assms"
bulwahn
parents: 46308
diff changeset
   461
43315
893de45ac28d removing unneccessary manual instantiations and dead definitions; hiding more constants and facts
bulwahn
parents: 43314
diff changeset
   462
hide_type code_int narrowing_type narrowing_term cons property
45818
53a697f5454a hiding constants and facts in the Quickcheck_Exhaustive and Quickcheck_Narrowing theory;
bulwahn
parents: 45734
diff changeset
   463
hide_const int_of of_int nat_of map_cons nth error toEnum marker empty C conv nonEmpty ensure_testable all exists drawn_from around_zero
43887
442aceb54969 adding narrowing instances for real and rational
bulwahn
parents: 43702
diff changeset
   464
hide_const (open) Var Ctr "apply" sum cons
43315
893de45ac28d removing unneccessary manual instantiations and dead definitions; hiding more constants and facts
bulwahn
parents: 43314
diff changeset
   465
hide_fact empty_def cons_def conv.simps nonEmpty.simps apply_def sum_def ensure_testable_def all_def exists_def
42022
101ce92333f4 adding a simple datatype for representing functions in Quickcheck_Narrowing
bulwahn
parents: 42021
diff changeset
   466
45001
5c8d7d6db682 ensuring that some constants are generated in the source code by adding calls in ensure_testable
bulwahn
parents: 43887
diff changeset
   467
end