src/HOL/Product_Type.thy
author wenzelm
Thu, 11 Feb 2010 23:00:22 +0100
changeset 35115 446c5063e4fd
parent 34900 9b12b0824bfe
child 35364 b8c62d60195c
permissions -rw-r--r--
modernized translations; formal markup of @{syntax_const} and @{const_syntax}; minor tuning;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
     1
(*  Title:      HOL/Product_Type.thy
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
     2
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
     3
    Copyright   1992  University of Cambridge
11777
wenzelm
parents: 11602
diff changeset
     4
*)
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
     5
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
     6
header {* Cartesian products *}
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
     7
15131
c69542757a4d New theory header syntax.
nipkow
parents: 14952
diff changeset
     8
theory Product_Type
33959
2afc55e8ed27 bootstrap datatype_rep_proofs in Datatype.thy (avoids unchecked dynamic name references)
haftmann
parents: 33638
diff changeset
     9
imports Typedef Inductive Fun
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
    10
uses
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
    11
  ("Tools/split_rule.ML")
31723
f5cafe803b55 discontinued ancient tradition to suffix certain ML module names with "_package"
haftmann
parents: 31667
diff changeset
    12
  ("Tools/inductive_set.ML")
15131
c69542757a4d New theory header syntax.
nipkow
parents: 14952
diff changeset
    13
begin
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    14
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
    15
subsection {* @{typ bool} is a datatype *}
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
    16
27104
791607529f6d rep_datatype command now takes list of constructors as input arguments
haftmann
parents: 26975
diff changeset
    17
rep_datatype True False by (auto intro: bool_induct)
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
    18
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
    19
declare case_split [cases type: bool]
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
    20
  -- "prefer plain propositional version"
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
    21
28346
b8390cd56b8f discontinued special treatment of op = vs. eq_class.eq
haftmann
parents: 28262
diff changeset
    22
lemma
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 28537
diff changeset
    23
  shows [code]: "eq_class.eq False P \<longleftrightarrow> \<not> P"
4e74209f113e `code func` now just `code`
haftmann
parents: 28537
diff changeset
    24
    and [code]: "eq_class.eq True P \<longleftrightarrow> P" 
4e74209f113e `code func` now just `code`
haftmann
parents: 28537
diff changeset
    25
    and [code]: "eq_class.eq P False \<longleftrightarrow> \<not> P" 
4e74209f113e `code func` now just `code`
haftmann
parents: 28537
diff changeset
    26
    and [code]: "eq_class.eq P True \<longleftrightarrow> P"
28346
b8390cd56b8f discontinued special treatment of op = vs. eq_class.eq
haftmann
parents: 28262
diff changeset
    27
    and [code nbe]: "eq_class.eq P P \<longleftrightarrow> True"
b8390cd56b8f discontinued special treatment of op = vs. eq_class.eq
haftmann
parents: 28262
diff changeset
    28
  by (simp_all add: eq)
25534
d0b74fdd6067 simplified infrastructure for code generator operational equality
haftmann
parents: 25511
diff changeset
    29
28346
b8390cd56b8f discontinued special treatment of op = vs. eq_class.eq
haftmann
parents: 28262
diff changeset
    30
code_const "eq_class.eq \<Colon> bool \<Rightarrow> bool \<Rightarrow> bool"
25534
d0b74fdd6067 simplified infrastructure for code generator operational equality
haftmann
parents: 25511
diff changeset
    31
  (Haskell infixl 4 "==")
d0b74fdd6067 simplified infrastructure for code generator operational equality
haftmann
parents: 25511
diff changeset
    32
d0b74fdd6067 simplified infrastructure for code generator operational equality
haftmann
parents: 25511
diff changeset
    33
code_instance bool :: eq
d0b74fdd6067 simplified infrastructure for code generator operational equality
haftmann
parents: 25511
diff changeset
    34
  (Haskell -)
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
    35
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
    36
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    37
subsection {* Unit *}
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    38
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    39
typedef unit = "{True}"
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    40
proof
20588
c847c56edf0c added operational equality
haftmann
parents: 20415
diff changeset
    41
  show "True : ?unit" ..
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    42
qed
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    43
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
    44
definition
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    45
  Unity :: unit    ("'(')")
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
    46
where
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
    47
  "() = Abs_unit True"
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    48
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 24162
diff changeset
    49
lemma unit_eq [noatp]: "u = ()"
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    50
  by (induct u) (simp add: unit_def Unity_def)
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    51
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    52
text {*
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    53
  Simplification procedure for @{thm [source] unit_eq}.  Cannot use
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    54
  this rule directly --- it loops!
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    55
*}
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    56
26480
544cef16045b replaced 'ML_setup' by 'ML';
wenzelm
parents: 26358
diff changeset
    57
ML {*
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 12338
diff changeset
    58
  val unit_eq_proc =
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
    59
    let val unit_meta_eq = mk_meta_eq @{thm unit_eq} in
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
    60
      Simplifier.simproc @{theory} "unit_eq" ["x::unit"]
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
    61
      (fn _ => fn _ => fn t => if HOLogic.is_unit t then NONE else SOME unit_meta_eq)
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 12338
diff changeset
    62
    end;
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    63
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    64
  Addsimprocs [unit_eq_proc];
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    65
*}
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    66
27104
791607529f6d rep_datatype command now takes list of constructors as input arguments
haftmann
parents: 26975
diff changeset
    67
rep_datatype "()" by simp
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
    68
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    69
lemma unit_all_eq1: "(!!x::unit. PROP P x) == PROP P ()"
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    70
  by simp
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    71
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    72
lemma unit_all_eq2: "(!!x::unit. PROP P) == PROP P"
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    73
  by (rule triv_forall_equality)
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    74
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    75
text {*
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    76
  This rewrite counters the effect of @{text unit_eq_proc} on @{term
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    77
  [source] "%u::unit. f u"}, replacing it by @{term [source]
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    78
  f} rather than by @{term [source] "%u. f ()"}.
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    79
*}
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    80
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 24162
diff changeset
    81
lemma unit_abs_eta_conv [simp,noatp]: "(%u::unit. f ()) = f"
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
    82
  by (rule ext) simp
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
    83
30924
c1ed09f3fbfe default instantiation for unit type
haftmann
parents: 30604
diff changeset
    84
instantiation unit :: default
c1ed09f3fbfe default instantiation for unit type
haftmann
parents: 30604
diff changeset
    85
begin
c1ed09f3fbfe default instantiation for unit type
haftmann
parents: 30604
diff changeset
    86
c1ed09f3fbfe default instantiation for unit type
haftmann
parents: 30604
diff changeset
    87
definition "default = ()"
c1ed09f3fbfe default instantiation for unit type
haftmann
parents: 30604
diff changeset
    88
c1ed09f3fbfe default instantiation for unit type
haftmann
parents: 30604
diff changeset
    89
instance ..
c1ed09f3fbfe default instantiation for unit type
haftmann
parents: 30604
diff changeset
    90
c1ed09f3fbfe default instantiation for unit type
haftmann
parents: 30604
diff changeset
    91
end
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
    92
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
    93
text {* code generator setup *}
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
    94
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 28537
diff changeset
    95
lemma [code]:
28346
b8390cd56b8f discontinued special treatment of op = vs. eq_class.eq
haftmann
parents: 28262
diff changeset
    96
  "eq_class.eq (u\<Colon>unit) v \<longleftrightarrow> True" unfolding eq unit_eq [of u] unit_eq [of v] by rule+
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
    97
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
    98
code_type unit
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
    99
  (SML "unit")
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   100
  (OCaml "unit")
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   101
  (Haskell "()")
34886
873c31d9f10d some syntax setup for Scala
haftmann
parents: 33959
diff changeset
   102
  (Scala "Unit")
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   103
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   104
code_instance unit :: eq
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   105
  (Haskell -)
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   106
28346
b8390cd56b8f discontinued special treatment of op = vs. eq_class.eq
haftmann
parents: 28262
diff changeset
   107
code_const "eq_class.eq \<Colon> unit \<Rightarrow> unit \<Rightarrow> bool"
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   108
  (Haskell infixl 4 "==")
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   109
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   110
code_const Unity
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   111
  (SML "()")
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   112
  (OCaml "()")
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   113
  (Haskell "()")
34886
873c31d9f10d some syntax setup for Scala
haftmann
parents: 33959
diff changeset
   114
  (Scala "()")
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   115
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   116
code_reserved SML
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   117
  unit
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   118
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   119
code_reserved OCaml
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   120
  unit
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   121
34886
873c31d9f10d some syntax setup for Scala
haftmann
parents: 33959
diff changeset
   122
code_reserved Scala
873c31d9f10d some syntax setup for Scala
haftmann
parents: 33959
diff changeset
   123
  Unit
873c31d9f10d some syntax setup for Scala
haftmann
parents: 33959
diff changeset
   124
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   125
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   126
subsection {* Pairs *}
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   127
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   128
subsubsection {* Product type, basic operations and concrete syntax *}
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   129
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   130
definition
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   131
  Pair_Rep :: "'a \<Rightarrow> 'b \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> bool"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   132
where
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   133
  "Pair_Rep a b = (\<lambda>x y. x = a \<and> y = b)"
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   134
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   135
global
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   136
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   137
typedef (Prod)
22838
haftmann
parents: 22744
diff changeset
   138
  ('a, 'b) "*"    (infixr "*" 20)
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   139
    = "{f. \<exists>a b. f = Pair_Rep (a\<Colon>'a) (b\<Colon>'b)}"
11025
a70b796d9af8 converted to Isar therory, adding attributes complete_split and split_format
oheimb
parents: 10289
diff changeset
   140
proof
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   141
  fix a b show "Pair_Rep a b \<in> ?Prod"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   142
    by rule+
11025
a70b796d9af8 converted to Isar therory, adding attributes complete_split and split_format
oheimb
parents: 10289
diff changeset
   143
qed
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   144
12114
a8e860c86252 eliminated old "symbols" syntax, use "xsymbols" instead;
wenzelm
parents: 11966
diff changeset
   145
syntax (xsymbols)
15422
cbdddc0efadf added print translation for split: split f --> %(x,y). f x y
schirmer
parents: 15404
diff changeset
   146
  "*"      :: "[type, type] => type"         ("(_ \<times>/ _)" [21, 20] 20)
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   147
syntax (HTML output)
15422
cbdddc0efadf added print translation for split: split f --> %(x,y). f x y
schirmer
parents: 15404
diff changeset
   148
  "*"      :: "[type, type] => type"         ("(_ \<times>/ _)" [21, 20] 20)
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   149
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   150
consts
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   151
  Pair     :: "'a \<Rightarrow> 'b \<Rightarrow> 'a \<times> 'b"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   152
  fst      :: "'a \<times> 'b \<Rightarrow> 'a"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   153
  snd      :: "'a \<times> 'b \<Rightarrow> 'b"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   154
  split    :: "('a \<Rightarrow> 'b \<Rightarrow> 'c) \<Rightarrow> 'a \<times> 'b \<Rightarrow> 'c"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   155
  curry    :: "('a \<times> 'b \<Rightarrow> 'c) \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'c"
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   156
11777
wenzelm
parents: 11602
diff changeset
   157
local
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   158
19535
e4fdeb32eadf replaced syntax/translations by abbreviation;
wenzelm
parents: 19179
diff changeset
   159
defs
e4fdeb32eadf replaced syntax/translations by abbreviation;
wenzelm
parents: 19179
diff changeset
   160
  Pair_def:     "Pair a b == Abs_Prod (Pair_Rep a b)"
e4fdeb32eadf replaced syntax/translations by abbreviation;
wenzelm
parents: 19179
diff changeset
   161
  fst_def:      "fst p == THE a. EX b. p = Pair a b"
e4fdeb32eadf replaced syntax/translations by abbreviation;
wenzelm
parents: 19179
diff changeset
   162
  snd_def:      "snd p == THE b. EX a. p = Pair a b"
24162
8dfd5dd65d82 split off theory Option for benefit of code generator
haftmann
parents: 23247
diff changeset
   163
  split_def:    "split == (%c p. c (fst p) (snd p))"
8dfd5dd65d82 split off theory Option for benefit of code generator
haftmann
parents: 23247
diff changeset
   164
  curry_def:    "curry == (%c x y. c (Pair x y))"
19535
e4fdeb32eadf replaced syntax/translations by abbreviation;
wenzelm
parents: 19179
diff changeset
   165
11777
wenzelm
parents: 11602
diff changeset
   166
text {*
wenzelm
parents: 11602
diff changeset
   167
  Patterns -- extends pre-defined type @{typ pttrn} used in
wenzelm
parents: 11602
diff changeset
   168
  abstractions.
wenzelm
parents: 11602
diff changeset
   169
*}
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   170
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   171
nonterminals
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   172
  tuple_args patterns
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   173
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   174
syntax
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   175
  "_tuple"      :: "'a => tuple_args => 'a * 'b"        ("(1'(_,/ _'))")
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   176
  "_tuple_arg"  :: "'a => tuple_args"                   ("_")
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   177
  "_tuple_args" :: "'a => tuple_args => tuple_args"     ("_,/ _")
11025
a70b796d9af8 converted to Isar therory, adding attributes complete_split and split_format
oheimb
parents: 10289
diff changeset
   178
  "_pattern"    :: "[pttrn, patterns] => pttrn"         ("'(_,/ _')")
a70b796d9af8 converted to Isar therory, adding attributes complete_split and split_format
oheimb
parents: 10289
diff changeset
   179
  ""            :: "pttrn => patterns"                  ("_")
a70b796d9af8 converted to Isar therory, adding attributes complete_split and split_format
oheimb
parents: 10289
diff changeset
   180
  "_patterns"   :: "[pttrn, patterns] => patterns"      ("_,/ _")
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   181
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   182
translations
35115
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   183
  "(x, y)" == "CONST Pair x y"
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   184
  "_tuple x (_tuple_args y z)" == "_tuple x (_tuple_arg (_tuple y z))"
35115
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   185
  "%(x, y, zs). b" == "CONST split (%x (y, zs). b)"
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   186
  "%(x, y). b" == "CONST split (%x y. b)"
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   187
  "_abs (CONST Pair x y) t" => "%(x, y). t"
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   188
  (* The last rule accommodates tuples in `case C ... (x,y) ... => ...'
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   189
     The (x,y) is parsed as `Pair x y' because it is logic, not pttrn *)
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   190
35115
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   191
(*reconstruct pattern from (nested) splits, avoiding eta-contraction of body;
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   192
  works best with enclosing "let", if "let" does not avoid eta-contraction*)
14359
3d9948163018 Added print translation for pairs
schirmer
parents: 14337
diff changeset
   193
print_translation {*
35115
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   194
let
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   195
  fun split_tr' [Abs (x, T, t as (Abs abs))] =
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   196
        (* split (%x y. t) => %(x,y) t *)
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   197
        let
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   198
          val (y, t') = atomic_abs_tr' abs;
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   199
          val (x', t'') = atomic_abs_tr' (x, T, t');
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   200
        in
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   201
          Syntax.const @{syntax_const "_abs"} $
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   202
            (Syntax.const @{syntax_const "_pattern"} $ x' $ y) $ t''
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   203
        end
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   204
    | split_tr' [Abs (x, T, (s as Const (@{const_syntax split}, _) $ t))] =
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   205
        (* split (%x. (split (%y z. t))) => %(x,y,z). t *)
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   206
        let
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   207
          val Const (@{syntax_const "_abs"}, _) $
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   208
            (Const (@{syntax_const "_pattern"}, _) $ y $ z) $ t' = split_tr' [t];
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   209
          val (x', t'') = atomic_abs_tr' (x, T, t');
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   210
        in
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   211
          Syntax.const @{syntax_const "_abs"} $
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   212
            (Syntax.const @{syntax_const "_pattern"} $ x' $
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   213
              (Syntax.const @{syntax_const "_patterns"} $ y $ z)) $ t''
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   214
        end
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   215
    | split_tr' [Const (@{const_syntax split}, _) $ t] =
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   216
        (* split (split (%x y z. t)) => %((x, y), z). t *)
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   217
        split_tr' [(split_tr' [t])] (* inner split_tr' creates next pattern *)
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   218
    | split_tr' [Const (@{syntax_const "_abs"}, _) $ x_y $ Abs abs] =
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   219
        (* split (%pttrn z. t) => %(pttrn,z). t *)
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   220
        let val (z, t) = atomic_abs_tr' abs in
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   221
          Syntax.const @{syntax_const "_abs"} $
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   222
            (Syntax.const @{syntax_const "_pattern"} $ x_y $ z) $ t
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   223
        end
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   224
    | split_tr' _ = raise Match;
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   225
in [(@{const_syntax split}, split_tr')] end
14359
3d9948163018 Added print translation for pairs
schirmer
parents: 14337
diff changeset
   226
*}
3d9948163018 Added print translation for pairs
schirmer
parents: 14337
diff changeset
   227
15422
cbdddc0efadf added print translation for split: split f --> %(x,y). f x y
schirmer
parents: 15404
diff changeset
   228
(* print "split f" as "\<lambda>(x,y). f x y" and "split (\<lambda>x. f x)" as "\<lambda>(x,y). f x y" *) 
cbdddc0efadf added print translation for split: split f --> %(x,y). f x y
schirmer
parents: 15404
diff changeset
   229
typed_print_translation {*
cbdddc0efadf added print translation for split: split f --> %(x,y). f x y
schirmer
parents: 15404
diff changeset
   230
let
35115
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   231
  fun split_guess_names_tr' _ T [Abs (x, _, Abs _)] = raise Match
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   232
    | split_guess_names_tr' _ T [Abs (x, xT, t)] =
15422
cbdddc0efadf added print translation for split: split f --> %(x,y). f x y
schirmer
parents: 15404
diff changeset
   233
        (case (head_of t) of
35115
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   234
          Const (@{const_syntax split}, _) => raise Match
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   235
        | _ =>
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   236
          let 
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   237
            val (_ :: yT :: _) = binder_types (domain_type T) handle Bind => raise Match;
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   238
            val (y, t') = atomic_abs_tr' ("y", yT, incr_boundvars 1 t $ Bound 0);
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   239
            val (x', t'') = atomic_abs_tr' (x, xT, t');
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   240
          in
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   241
            Syntax.const @{syntax_const "_abs"} $
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   242
              (Syntax.const @{syntax_const "_pattern"} $ x' $ y) $ t''
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   243
          end)
15422
cbdddc0efadf added print translation for split: split f --> %(x,y). f x y
schirmer
parents: 15404
diff changeset
   244
    | split_guess_names_tr' _ T [t] =
35115
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   245
        (case head_of t of
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   246
          Const (@{const_syntax split}, _) => raise Match
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   247
        | _ =>
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   248
          let
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   249
            val (xT :: yT :: _) = binder_types (domain_type T) handle Bind => raise Match;
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   250
            val (y, t') = atomic_abs_tr' ("y", yT, incr_boundvars 2 t $ Bound 1 $ Bound 0);
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   251
            val (x', t'') = atomic_abs_tr' ("x", xT, t');
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   252
          in
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   253
            Syntax.const @{syntax_const "_abs"} $
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   254
              (Syntax.const @{syntax_const "_pattern"} $ x' $ y) $ t''
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   255
          end)
15422
cbdddc0efadf added print translation for split: split f --> %(x,y). f x y
schirmer
parents: 15404
diff changeset
   256
    | split_guess_names_tr' _ _ _ = raise Match;
35115
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   257
in [(@{const_syntax split}, split_guess_names_tr')] end
15422
cbdddc0efadf added print translation for split: split f --> %(x,y). f x y
schirmer
parents: 15404
diff changeset
   258
*}
cbdddc0efadf added print translation for split: split f --> %(x,y). f x y
schirmer
parents: 15404
diff changeset
   259
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   260
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   261
text {* Towards a datatype declaration *}
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   262
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   263
lemma surj_pair [simp]: "EX x y. p = (x, y)"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   264
  apply (unfold Pair_def)
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   265
  apply (rule Rep_Prod [unfolded Prod_def, THEN CollectE])
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   266
  apply (erule exE, erule exE, rule exI, rule exI)
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   267
  apply (rule Rep_Prod_inverse [symmetric, THEN trans])
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   268
  apply (erule arg_cong)
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   269
  done
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   270
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   271
lemma PairE [cases type: *]:
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   272
  obtains x y where "p = (x, y)"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   273
  using surj_pair [of p] by blast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   274
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   275
lemma ProdI: "Pair_Rep a b \<in> Prod"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   276
  unfolding Prod_def by rule+
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   277
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   278
lemma Pair_Rep_inject: "Pair_Rep a b = Pair_Rep a' b' \<Longrightarrow> a = a' \<and> b = b'"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   279
  unfolding Pair_Rep_def by (drule fun_cong, drule fun_cong) blast
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   280
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   281
lemma inj_on_Abs_Prod: "inj_on Abs_Prod Prod"
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   282
  apply (rule inj_on_inverseI)
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   283
  apply (erule Abs_Prod_inverse)
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   284
  done
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   285
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   286
lemma Pair_inject:
18372
2bffdf62fe7f tuned proofs;
wenzelm
parents: 18334
diff changeset
   287
  assumes "(a, b) = (a', b')"
2bffdf62fe7f tuned proofs;
wenzelm
parents: 18334
diff changeset
   288
    and "a = a' ==> b = b' ==> R"
2bffdf62fe7f tuned proofs;
wenzelm
parents: 18334
diff changeset
   289
  shows R
2bffdf62fe7f tuned proofs;
wenzelm
parents: 18334
diff changeset
   290
  apply (insert prems [unfolded Pair_def])
2bffdf62fe7f tuned proofs;
wenzelm
parents: 18334
diff changeset
   291
  apply (rule inj_on_Abs_Prod [THEN inj_onD, THEN Pair_Rep_inject, THEN conjE])
2bffdf62fe7f tuned proofs;
wenzelm
parents: 18334
diff changeset
   292
  apply (assumption | rule ProdI)+
2bffdf62fe7f tuned proofs;
wenzelm
parents: 18334
diff changeset
   293
  done
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   294
27104
791607529f6d rep_datatype command now takes list of constructors as input arguments
haftmann
parents: 26975
diff changeset
   295
rep_datatype (prod) Pair
791607529f6d rep_datatype command now takes list of constructors as input arguments
haftmann
parents: 26975
diff changeset
   296
proof -
791607529f6d rep_datatype command now takes list of constructors as input arguments
haftmann
parents: 26975
diff changeset
   297
  fix P p
791607529f6d rep_datatype command now takes list of constructors as input arguments
haftmann
parents: 26975
diff changeset
   298
  assume "\<And>x y. P (x, y)"
791607529f6d rep_datatype command now takes list of constructors as input arguments
haftmann
parents: 26975
diff changeset
   299
  then show "P p" by (cases p) simp
791607529f6d rep_datatype command now takes list of constructors as input arguments
haftmann
parents: 26975
diff changeset
   300
qed (auto elim: Pair_inject)
791607529f6d rep_datatype command now takes list of constructors as input arguments
haftmann
parents: 26975
diff changeset
   301
791607529f6d rep_datatype command now takes list of constructors as input arguments
haftmann
parents: 26975
diff changeset
   302
lemmas Pair_eq = prod.inject
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   303
22886
cdff6ef76009 moved recfun_codegen.ML to Code_Generator.thy
haftmann
parents: 22838
diff changeset
   304
lemma fst_conv [simp, code]: "fst (a, b) = a"
19535
e4fdeb32eadf replaced syntax/translations by abbreviation;
wenzelm
parents: 19179
diff changeset
   305
  unfolding fst_def by blast
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   306
22886
cdff6ef76009 moved recfun_codegen.ML to Code_Generator.thy
haftmann
parents: 22838
diff changeset
   307
lemma snd_conv [simp, code]: "snd (a, b) = b"
19535
e4fdeb32eadf replaced syntax/translations by abbreviation;
wenzelm
parents: 19179
diff changeset
   308
  unfolding snd_def by blast
11025
a70b796d9af8 converted to Isar therory, adding attributes complete_split and split_format
oheimb
parents: 10289
diff changeset
   309
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   310
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   311
subsubsection {* Basic rules and proof tools *}
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   312
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   313
lemma fst_eqD: "fst (x, y) = a ==> x = a"
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   314
  by simp
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   315
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   316
lemma snd_eqD: "snd (x, y) = a ==> y = a"
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   317
  by simp
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   318
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   319
lemma pair_collapse [simp]: "(fst p, snd p) = p"
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   320
  by (cases p) simp
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   321
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   322
lemmas surjective_pairing = pair_collapse [symmetric]
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   323
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   324
lemma split_paired_all: "(!!x. PROP P x) == (!!a b. PROP P (a, b))"
11820
015a82d4ee96 proper proof of split_paired_all (presently unused);
wenzelm
parents: 11777
diff changeset
   325
proof
015a82d4ee96 proper proof of split_paired_all (presently unused);
wenzelm
parents: 11777
diff changeset
   326
  fix a b
015a82d4ee96 proper proof of split_paired_all (presently unused);
wenzelm
parents: 11777
diff changeset
   327
  assume "!!x. PROP P x"
19535
e4fdeb32eadf replaced syntax/translations by abbreviation;
wenzelm
parents: 19179
diff changeset
   328
  then show "PROP P (a, b)" .
11820
015a82d4ee96 proper proof of split_paired_all (presently unused);
wenzelm
parents: 11777
diff changeset
   329
next
015a82d4ee96 proper proof of split_paired_all (presently unused);
wenzelm
parents: 11777
diff changeset
   330
  fix x
015a82d4ee96 proper proof of split_paired_all (presently unused);
wenzelm
parents: 11777
diff changeset
   331
  assume "!!a b. PROP P (a, b)"
19535
e4fdeb32eadf replaced syntax/translations by abbreviation;
wenzelm
parents: 19179
diff changeset
   332
  from `PROP P (fst x, snd x)` show "PROP P x" by simp
11820
015a82d4ee96 proper proof of split_paired_all (presently unused);
wenzelm
parents: 11777
diff changeset
   333
qed
015a82d4ee96 proper proof of split_paired_all (presently unused);
wenzelm
parents: 11777
diff changeset
   334
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   335
text {*
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   336
  The rule @{thm [source] split_paired_all} does not work with the
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   337
  Simplifier because it also affects premises in congrence rules,
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   338
  where this can lead to premises of the form @{text "!!a b. ... =
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   339
  ?P(a, b)"} which cannot be solved by reflexivity.
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   340
*}
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   341
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   342
lemmas split_tupled_all = split_paired_all unit_all_eq2
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   343
26480
544cef16045b replaced 'ML_setup' by 'ML';
wenzelm
parents: 26358
diff changeset
   344
ML {*
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   345
  (* replace parameters of product type by individual component parameters *)
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   346
  val safe_full_simp_tac = generic_simp_tac true (true, false, false);
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   347
  local (* filtering with exists_paired_all is an essential optimization *)
16121
wenzelm
parents: 15570
diff changeset
   348
    fun exists_paired_all (Const ("all", _) $ Abs (_, T, t)) =
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   349
          can HOLogic.dest_prodT T orelse exists_paired_all t
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   350
      | exists_paired_all (t $ u) = exists_paired_all t orelse exists_paired_all u
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   351
      | exists_paired_all (Abs (_, _, t)) = exists_paired_all t
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   352
      | exists_paired_all _ = false;
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   353
    val ss = HOL_basic_ss
26340
a85fe32e7b2f more antiquotations;
wenzelm
parents: 26143
diff changeset
   354
      addsimps [@{thm split_paired_all}, @{thm unit_all_eq2}, @{thm unit_abs_eta_conv}]
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   355
      addsimprocs [unit_eq_proc];
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   356
  in
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   357
    val split_all_tac = SUBGOAL (fn (t, i) =>
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   358
      if exists_paired_all t then safe_full_simp_tac ss i else no_tac);
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   359
    val unsafe_split_all_tac = SUBGOAL (fn (t, i) =>
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   360
      if exists_paired_all t then full_simp_tac ss i else no_tac);
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   361
    fun split_all th =
26340
a85fe32e7b2f more antiquotations;
wenzelm
parents: 26143
diff changeset
   362
   if exists_paired_all (Thm.prop_of th) then full_simplify ss th else th;
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   363
  end;
26340
a85fe32e7b2f more antiquotations;
wenzelm
parents: 26143
diff changeset
   364
*}
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   365
26340
a85fe32e7b2f more antiquotations;
wenzelm
parents: 26143
diff changeset
   366
declaration {* fn _ =>
a85fe32e7b2f more antiquotations;
wenzelm
parents: 26143
diff changeset
   367
  Classical.map_cs (fn cs => cs addSbefore ("split_all_tac", split_all_tac))
16121
wenzelm
parents: 15570
diff changeset
   368
*}
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   369
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   370
lemma split_paired_All [simp]: "(ALL x. P x) = (ALL a b. P (a, b))"
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   371
  -- {* @{text "[iff]"} is not a good idea because it makes @{text blast} loop *}
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   372
  by fast
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   373
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   374
lemma split_paired_Ex [simp]: "(EX x. P x) = (EX a b. P (a, b))"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   375
  by fast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   376
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   377
lemma Pair_fst_snd_eq: "s = t \<longleftrightarrow> fst s = fst t \<and> snd s = snd t"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   378
  by (cases s, cases t) simp
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   379
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   380
lemma prod_eqI [intro?]: "fst p = fst q \<Longrightarrow> snd p = snd q \<Longrightarrow> p = q"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   381
  by (simp add: Pair_fst_snd_eq)
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   382
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   383
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   384
subsubsection {* @{text split} and @{text curry} *}
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   385
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 28537
diff changeset
   386
lemma split_conv [simp, code]: "split f (a, b) = f a b"
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   387
  by (simp add: split_def)
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   388
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 28537
diff changeset
   389
lemma curry_conv [simp, code]: "curry f a b = f (a, b)"
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   390
  by (simp add: curry_def)
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   391
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   392
lemmas split = split_conv  -- {* for backwards compatibility *}
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   393
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   394
lemma splitI: "f a b \<Longrightarrow> split f (a, b)"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   395
  by (rule split_conv [THEN iffD2])
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   396
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   397
lemma splitD: "split f (a, b) \<Longrightarrow> f a b"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   398
  by (rule split_conv [THEN iffD1])
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   399
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   400
lemma curryI [intro!]: "f (a, b) \<Longrightarrow> curry f a b"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   401
  by (simp add: curry_def)
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   402
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   403
lemma curryD [dest!]: "curry f a b \<Longrightarrow> f (a, b)"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   404
  by (simp add: curry_def)
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   405
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   406
lemma curryE: "curry f a b \<Longrightarrow> (f (a, b) \<Longrightarrow> Q) \<Longrightarrow> Q"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   407
  by (simp add: curry_def)
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   408
14189
de58f4d939e1 Added the constant "curry".
skalberg
parents: 14101
diff changeset
   409
lemma curry_split [simp]: "curry (split f) = f"
de58f4d939e1 Added the constant "curry".
skalberg
parents: 14101
diff changeset
   410
  by (simp add: curry_def split_def)
de58f4d939e1 Added the constant "curry".
skalberg
parents: 14101
diff changeset
   411
de58f4d939e1 Added the constant "curry".
skalberg
parents: 14101
diff changeset
   412
lemma split_curry [simp]: "split (curry f) = f"
de58f4d939e1 Added the constant "curry".
skalberg
parents: 14101
diff changeset
   413
  by (simp add: curry_def split_def)
de58f4d939e1 Added the constant "curry".
skalberg
parents: 14101
diff changeset
   414
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   415
lemma split_Pair [simp]: "(\<lambda>(x, y). (x, y)) = id"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   416
  by (simp add: split_def id_def)
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   417
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   418
lemma split_eta: "(\<lambda>(x, y). f (x, y)) = f"
31775
2b04504fcb69 uniformly capitialized names for subdirectories
haftmann
parents: 31723
diff changeset
   419
  -- {* Subsumes the old @{text split_Pair} when @{term f} is the identity Datatype. *}
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   420
  by (rule ext) auto
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   421
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   422
lemma split_comp: "split (f \<circ> g) x = f (g (fst x)) (snd x)"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   423
  by (cases x) simp
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   424
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   425
lemma split_twice: "split f (split g p) = split (\<lambda>x y. split f (g x y)) p"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   426
  unfolding split_def ..
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   427
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   428
lemma split_paired_The: "(THE x. P x) = (THE (a, b). P (a, b))"
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   429
  -- {* Can't be added to simpset: loops! *}
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   430
  by (simp add: split_eta)
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   431
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   432
lemma The_split: "The (split P) = (THE xy. P (fst xy) (snd xy))"
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   433
  by (simp add: split_def)
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   434
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   435
lemma split_weak_cong: "p = q \<Longrightarrow> split c p = split c q"
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   436
  -- {* Prevents simplification of @{term c}: much faster *}
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   437
  by (erule arg_cong)
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   438
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   439
lemma cond_split_eta: "(!!x y. f x y = g (x, y)) ==> (%(x, y). f x y) = g"
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   440
  by (simp add: split_eta)
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   441
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   442
text {*
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   443
  Simplification procedure for @{thm [source] cond_split_eta}.  Using
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   444
  @{thm [source] split_eta} as a rewrite rule is not general enough,
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   445
  and using @{thm [source] cond_split_eta} directly would render some
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   446
  existing proofs very inefficient; similarly for @{text
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   447
  split_beta}.
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   448
*}
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   449
26480
544cef16045b replaced 'ML_setup' by 'ML';
wenzelm
parents: 26358
diff changeset
   450
ML {*
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   451
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   452
local
18328
841261f303a1 simprocs: static evaluation of simpset;
wenzelm
parents: 18220
diff changeset
   453
  val cond_split_eta_ss = HOL_basic_ss addsimps [thm "cond_split_eta"]
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   454
  fun  Pair_pat k 0 (Bound m) = (m = k)
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   455
  |    Pair_pat k i (Const ("Pair",  _) $ Bound m $ t) = i > 0 andalso
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   456
                        m = k+i andalso Pair_pat k (i-1) t
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   457
  |    Pair_pat _ _ _ = false;
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   458
  fun no_args k i (Abs (_, _, t)) = no_args (k+1) i t
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   459
  |   no_args k i (t $ u) = no_args k i t andalso no_args k i u
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   460
  |   no_args k i (Bound m) = m < k orelse m > k+i
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   461
  |   no_args _ _ _ = true;
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   462
  fun split_pat tp i (Abs  (_,_,t)) = if tp 0 i t then SOME (i,t) else NONE
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   463
  |   split_pat tp i (Const ("split", _) $ Abs (_, _, t)) = split_pat tp (i+1) t
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   464
  |   split_pat tp i _ = NONE;
20044
92cc2f4c7335 simprocs: no theory argument -- use simpset context instead;
wenzelm
parents: 19656
diff changeset
   465
  fun metaeq ss lhs rhs = mk_meta_eq (Goal.prove (Simplifier.the_context ss) [] []
13480
bb72bd43c6c3 use Tactic.prove instead of prove_goalw_cterm in internal proofs!
wenzelm
parents: 13462
diff changeset
   466
        (HOLogic.mk_Trueprop (HOLogic.mk_eq (lhs,rhs)))
18328
841261f303a1 simprocs: static evaluation of simpset;
wenzelm
parents: 18220
diff changeset
   467
        (K (simp_tac (Simplifier.inherit_context ss cond_split_eta_ss) 1)));
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   468
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   469
  fun beta_term_pat k i (Abs (_, _, t)) = beta_term_pat (k+1) i t
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   470
  |   beta_term_pat k i (t $ u) = Pair_pat k i (t $ u) orelse
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   471
                        (beta_term_pat k i t andalso beta_term_pat k i u)
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   472
  |   beta_term_pat k i t = no_args k i t;
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   473
  fun  eta_term_pat k i (f $ arg) = no_args k i f andalso Pair_pat k i arg
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   474
  |    eta_term_pat _ _ _ = false;
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   475
  fun subst arg k i (Abs (x, T, t)) = Abs (x, T, subst arg (k+1) i t)
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   476
  |   subst arg k i (t $ u) = if Pair_pat k i (t $ u) then incr_boundvars k arg
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   477
                              else (subst arg k i t $ subst arg k i u)
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   478
  |   subst arg k i t = t;
20044
92cc2f4c7335 simprocs: no theory argument -- use simpset context instead;
wenzelm
parents: 19656
diff changeset
   479
  fun beta_proc ss (s as Const ("split", _) $ Abs (_, _, t) $ arg) =
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   480
        (case split_pat beta_term_pat 1 t of
20044
92cc2f4c7335 simprocs: no theory argument -- use simpset context instead;
wenzelm
parents: 19656
diff changeset
   481
        SOME (i,f) => SOME (metaeq ss s (subst arg 0 i f))
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   482
        | NONE => NONE)
20044
92cc2f4c7335 simprocs: no theory argument -- use simpset context instead;
wenzelm
parents: 19656
diff changeset
   483
  |   beta_proc _ _ = NONE;
92cc2f4c7335 simprocs: no theory argument -- use simpset context instead;
wenzelm
parents: 19656
diff changeset
   484
  fun eta_proc ss (s as Const ("split", _) $ Abs (_, _, t)) =
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   485
        (case split_pat eta_term_pat 1 t of
20044
92cc2f4c7335 simprocs: no theory argument -- use simpset context instead;
wenzelm
parents: 19656
diff changeset
   486
          SOME (_,ft) => SOME (metaeq ss s (let val (f $ arg) = ft in f end))
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   487
        | NONE => NONE)
20044
92cc2f4c7335 simprocs: no theory argument -- use simpset context instead;
wenzelm
parents: 19656
diff changeset
   488
  |   eta_proc _ _ = NONE;
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   489
in
32010
cb1a1c94b4cd more antiquotations;
wenzelm
parents: 31775
diff changeset
   490
  val split_beta_proc = Simplifier.simproc @{theory} "split_beta" ["split f z"] (K beta_proc);
cb1a1c94b4cd more antiquotations;
wenzelm
parents: 31775
diff changeset
   491
  val split_eta_proc = Simplifier.simproc @{theory} "split_eta" ["split f"] (K eta_proc);
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   492
end;
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   493
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   494
Addsimprocs [split_beta_proc, split_eta_proc];
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   495
*}
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   496
26798
a9134a089106 split_beta is now declared as monotonicity rule, to allow bounded
berghofe
parents: 26588
diff changeset
   497
lemma split_beta [mono]: "(%(x, y). P x y) z = P (fst z) (snd z)"
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   498
  by (subst surjective_pairing, rule split_conv)
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   499
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 24162
diff changeset
   500
lemma split_split [noatp]: "R(split c p) = (ALL x y. p = (x, y) --> R(c x y))"
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   501
  -- {* For use with @{text split} and the Simplifier. *}
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents: 15422
diff changeset
   502
  by (insert surj_pair [of p], clarify, simp)
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   503
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   504
text {*
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   505
  @{thm [source] split_split} could be declared as @{text "[split]"}
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   506
  done after the Splitter has been speeded up significantly;
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   507
  precompute the constants involved and don't do anything unless the
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   508
  current goal contains one of those constants.
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   509
*}
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   510
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 24162
diff changeset
   511
lemma split_split_asm [noatp]: "R (split c p) = (~(EX x y. p = (x, y) & (~R (c x y))))"
14208
144f45277d5a misc tidying
paulson
parents: 14190
diff changeset
   512
by (subst split_split, simp)
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   513
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   514
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   515
text {*
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   516
  \medskip @{term split} used as a logical connective or set former.
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   517
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   518
  \medskip These rules are for use with @{text blast}; could instead
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   519
  call @{text simp} using @{thm [source] split} as rewrite. *}
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   520
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   521
lemma splitI2: "!!p. [| !!a b. p = (a, b) ==> c a b |] ==> split c p"
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   522
  apply (simp only: split_tupled_all)
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   523
  apply (simp (no_asm_simp))
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   524
  done
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   525
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   526
lemma splitI2': "!!p. [| !!a b. (a, b) = p ==> c a b x |] ==> split c p x"
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   527
  apply (simp only: split_tupled_all)
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   528
  apply (simp (no_asm_simp))
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   529
  done
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   530
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   531
lemma splitE: "split c p ==> (!!x y. p = (x, y) ==> c x y ==> Q) ==> Q"
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   532
  by (induct p) (auto simp add: split_def)
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   533
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   534
lemma splitE': "split c p z ==> (!!x y. p = (x, y) ==> c x y z ==> Q) ==> Q"
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   535
  by (induct p) (auto simp add: split_def)
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   536
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   537
lemma splitE2:
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   538
  "[| Q (split P z);  !!x y. [|z = (x, y); Q (P x y)|] ==> R |] ==> R"
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   539
proof -
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   540
  assume q: "Q (split P z)"
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   541
  assume r: "!!x y. [|z = (x, y); Q (P x y)|] ==> R"
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   542
  show R
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   543
    apply (rule r surjective_pairing)+
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   544
    apply (rule split_beta [THEN subst], rule q)
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   545
    done
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   546
qed
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   547
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   548
lemma splitD': "split R (a,b) c ==> R a b c"
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   549
  by simp
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   550
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   551
lemma mem_splitI: "z: c a b ==> z: split c (a, b)"
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   552
  by simp
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   553
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   554
lemma mem_splitI2: "!!p. [| !!a b. p = (a, b) ==> z: c a b |] ==> z: split c p"
14208
144f45277d5a misc tidying
paulson
parents: 14190
diff changeset
   555
by (simp only: split_tupled_all, simp)
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   556
18372
2bffdf62fe7f tuned proofs;
wenzelm
parents: 18334
diff changeset
   557
lemma mem_splitE:
2bffdf62fe7f tuned proofs;
wenzelm
parents: 18334
diff changeset
   558
  assumes major: "z: split c p"
2bffdf62fe7f tuned proofs;
wenzelm
parents: 18334
diff changeset
   559
    and cases: "!!x y. [| p = (x,y); z: c x y |] ==> Q"
2bffdf62fe7f tuned proofs;
wenzelm
parents: 18334
diff changeset
   560
  shows Q
2bffdf62fe7f tuned proofs;
wenzelm
parents: 18334
diff changeset
   561
  by (rule major [unfolded split_def] cases surjective_pairing)+
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   562
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   563
declare mem_splitI2 [intro!] mem_splitI [intro!] splitI2' [intro!] splitI2 [intro!] splitI [intro!]
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   564
declare mem_splitE [elim!] splitE' [elim!] splitE [elim!]
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   565
26340
a85fe32e7b2f more antiquotations;
wenzelm
parents: 26143
diff changeset
   566
ML {*
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   567
local (* filtering with exists_p_split is an essential optimization *)
16121
wenzelm
parents: 15570
diff changeset
   568
  fun exists_p_split (Const ("split",_) $ _ $ (Const ("Pair",_)$_$_)) = true
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   569
    | exists_p_split (t $ u) = exists_p_split t orelse exists_p_split u
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   570
    | exists_p_split (Abs (_, _, t)) = exists_p_split t
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   571
    | exists_p_split _ = false;
16121
wenzelm
parents: 15570
diff changeset
   572
  val ss = HOL_basic_ss addsimps [thm "split_conv"];
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   573
in
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   574
val split_conv_tac = SUBGOAL (fn (t, i) =>
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   575
    if exists_p_split t then safe_full_simp_tac ss i else no_tac);
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   576
end;
26340
a85fe32e7b2f more antiquotations;
wenzelm
parents: 26143
diff changeset
   577
*}
a85fe32e7b2f more antiquotations;
wenzelm
parents: 26143
diff changeset
   578
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   579
(* This prevents applications of splitE for already splitted arguments leading
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   580
   to quite time-consuming computations (in particular for nested tuples) *)
26340
a85fe32e7b2f more antiquotations;
wenzelm
parents: 26143
diff changeset
   581
declaration {* fn _ =>
a85fe32e7b2f more antiquotations;
wenzelm
parents: 26143
diff changeset
   582
  Classical.map_cs (fn cs => cs addSbefore ("split_conv_tac", split_conv_tac))
16121
wenzelm
parents: 15570
diff changeset
   583
*}
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   584
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 24162
diff changeset
   585
lemma split_eta_SetCompr [simp,noatp]: "(%u. EX x y. u = (x, y) & P (x, y)) = P"
18372
2bffdf62fe7f tuned proofs;
wenzelm
parents: 18334
diff changeset
   586
  by (rule ext) fast
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   587
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 24162
diff changeset
   588
lemma split_eta_SetCompr2 [simp,noatp]: "(%u. EX x y. u = (x, y) & P x y) = split P"
18372
2bffdf62fe7f tuned proofs;
wenzelm
parents: 18334
diff changeset
   589
  by (rule ext) fast
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   590
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   591
lemma split_part [simp]: "(%(a,b). P & Q a b) = (%ab. P & split Q ab)"
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   592
  -- {* Allows simplifications of nested splits in case of independent predicates. *}
18372
2bffdf62fe7f tuned proofs;
wenzelm
parents: 18334
diff changeset
   593
  by (rule ext) blast
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   594
14337
e13731554e50 undid split_comp_eq[simp] because it leads to nontermination together with split_def!
nipkow
parents: 14208
diff changeset
   595
(* Do NOT make this a simp rule as it
e13731554e50 undid split_comp_eq[simp] because it leads to nontermination together with split_def!
nipkow
parents: 14208
diff changeset
   596
   a) only helps in special situations
e13731554e50 undid split_comp_eq[simp] because it leads to nontermination together with split_def!
nipkow
parents: 14208
diff changeset
   597
   b) can lead to nontermination in the presence of split_def
e13731554e50 undid split_comp_eq[simp] because it leads to nontermination together with split_def!
nipkow
parents: 14208
diff changeset
   598
*)
e13731554e50 undid split_comp_eq[simp] because it leads to nontermination together with split_def!
nipkow
parents: 14208
diff changeset
   599
lemma split_comp_eq: 
20415
e3d2d7b01279 explicit type variables prevent empty sorts
paulson
parents: 20380
diff changeset
   600
  fixes f :: "'a => 'b => 'c" and g :: "'d => 'a"
e3d2d7b01279 explicit type variables prevent empty sorts
paulson
parents: 20380
diff changeset
   601
  shows "(%u. f (g (fst u)) (snd u)) = (split (%x. f (g x)))"
18372
2bffdf62fe7f tuned proofs;
wenzelm
parents: 18334
diff changeset
   602
  by (rule ext) auto
14101
d25c23e46173 added upd_fst, upd_snd, some thms
oheimb
parents: 13480
diff changeset
   603
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   604
lemma pair_imageI [intro]: "(a, b) : A ==> f a b : (%(a, b). f a b) ` A"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   605
  apply (rule_tac x = "(a, b)" in image_eqI)
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   606
   apply auto
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   607
  done
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   608
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   609
lemma The_split_eq [simp]: "(THE (x',y'). x = x' & y = y') = (x, y)"
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   610
  by blast
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   611
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   612
(*
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   613
the following  would be slightly more general,
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   614
but cannot be used as rewrite rule:
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   615
### Cannot add premise as rewrite rule because it contains (type) unknowns:
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   616
### ?y = .x
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   617
Goal "[| P y; !!x. P x ==> x = y |] ==> (@(x',y). x = x' & P y) = (x,y)"
14208
144f45277d5a misc tidying
paulson
parents: 14190
diff changeset
   618
by (rtac some_equality 1)
144f45277d5a misc tidying
paulson
parents: 14190
diff changeset
   619
by ( Simp_tac 1)
144f45277d5a misc tidying
paulson
parents: 14190
diff changeset
   620
by (split_all_tac 1)
144f45277d5a misc tidying
paulson
parents: 14190
diff changeset
   621
by (Asm_full_simp_tac 1)
11838
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   622
qed "The_split_eq";
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   623
*)
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   624
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   625
text {*
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   626
  Setup of internal @{text split_rule}.
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   627
*}
02d75712061d got rid of ML proof scripts for Product_Type;
wenzelm
parents: 11820
diff changeset
   628
25511
54db9b5080b8 more canonical attribute application
haftmann
parents: 24844
diff changeset
   629
definition
54db9b5080b8 more canonical attribute application
haftmann
parents: 24844
diff changeset
   630
  internal_split :: "('a \<Rightarrow> 'b \<Rightarrow> 'c) \<Rightarrow> 'a \<times> 'b \<Rightarrow> 'c"
54db9b5080b8 more canonical attribute application
haftmann
parents: 24844
diff changeset
   631
where
11032
83f723e86dac added hidden internal_split constant;
wenzelm
parents: 11025
diff changeset
   632
  "internal_split == split"
83f723e86dac added hidden internal_split constant;
wenzelm
parents: 11025
diff changeset
   633
83f723e86dac added hidden internal_split constant;
wenzelm
parents: 11025
diff changeset
   634
lemma internal_split_conv: "internal_split c (a, b) = c a b"
83f723e86dac added hidden internal_split constant;
wenzelm
parents: 11025
diff changeset
   635
  by (simp only: internal_split_def split_conv)
83f723e86dac added hidden internal_split constant;
wenzelm
parents: 11025
diff changeset
   636
83f723e86dac added hidden internal_split constant;
wenzelm
parents: 11025
diff changeset
   637
hide const internal_split
83f723e86dac added hidden internal_split constant;
wenzelm
parents: 11025
diff changeset
   638
11025
a70b796d9af8 converted to Isar therory, adding attributes complete_split and split_format
oheimb
parents: 10289
diff changeset
   639
use "Tools/split_rule.ML"
11032
83f723e86dac added hidden internal_split constant;
wenzelm
parents: 11025
diff changeset
   640
setup SplitRule.setup
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
   641
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   642
lemmas prod_caseI = prod.cases [THEN iffD2, standard]
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   643
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   644
lemma prod_caseI2: "!!p. [| !!a b. p = (a, b) ==> c a b |] ==> prod_case c p"
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   645
  by auto
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   646
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   647
lemma prod_caseI2': "!!p. [| !!a b. (a, b) = p ==> c a b x |] ==> prod_case c p x"
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   648
  by (auto simp: split_tupled_all)
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   649
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   650
lemma prod_caseE: "prod_case c p ==> (!!x y. p = (x, y) ==> c x y ==> Q) ==> Q"
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   651
  by (induct p) auto
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   652
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   653
lemma prod_caseE': "prod_case c p z ==> (!!x y. p = (x, y) ==> c x y z ==> Q) ==> Q"
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   654
  by (induct p) auto
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   655
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   656
lemma prod_case_unfold: "prod_case = (%c p. c (fst p) (snd p))"
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   657
  by (simp add: expand_fun_eq)
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   658
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   659
declare prod_caseI2' [intro!] prod_caseI2 [intro!] prod_caseI [intro!]
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   660
declare prod_caseE' [elim!] prod_caseE [elim!]
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   661
24844
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24699
diff changeset
   662
lemma prod_case_split:
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   663
  "prod_case = split"
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   664
  by (auto simp add: expand_fun_eq)
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   665
26143
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 25885
diff changeset
   666
lemma prod_case_beta:
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 25885
diff changeset
   667
  "prod_case f p = f (fst p) (snd p)"
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 25885
diff changeset
   668
  unfolding prod_case_split split_beta ..
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 25885
diff changeset
   669
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   670
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   671
subsection {* Further cases/induct rules for tuples *}
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   672
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   673
lemma prod_cases3 [cases type]:
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   674
  obtains (fields) a b c where "y = (a, b, c)"
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   675
  by (cases y, case_tac b) blast
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   676
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   677
lemma prod_induct3 [case_names fields, induct type]:
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   678
    "(!!a b c. P (a, b, c)) ==> P x"
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   679
  by (cases x) blast
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   680
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   681
lemma prod_cases4 [cases type]:
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   682
  obtains (fields) a b c d where "y = (a, b, c, d)"
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   683
  by (cases y, case_tac c) blast
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   684
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   685
lemma prod_induct4 [case_names fields, induct type]:
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   686
    "(!!a b c d. P (a, b, c, d)) ==> P x"
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   687
  by (cases x) blast
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   688
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   689
lemma prod_cases5 [cases type]:
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   690
  obtains (fields) a b c d e where "y = (a, b, c, d, e)"
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   691
  by (cases y, case_tac d) blast
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   692
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   693
lemma prod_induct5 [case_names fields, induct type]:
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   694
    "(!!a b c d e. P (a, b, c, d, e)) ==> P x"
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   695
  by (cases x) blast
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   696
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   697
lemma prod_cases6 [cases type]:
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   698
  obtains (fields) a b c d e f where "y = (a, b, c, d, e, f)"
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   699
  by (cases y, case_tac e) blast
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   700
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   701
lemma prod_induct6 [case_names fields, induct type]:
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   702
    "(!!a b c d e f. P (a, b, c, d, e, f)) ==> P x"
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   703
  by (cases x) blast
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   704
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   705
lemma prod_cases7 [cases type]:
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   706
  obtains (fields) a b c d e f g where "y = (a, b, c, d, e, f, g)"
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   707
  by (cases y, case_tac f) blast
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   708
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   709
lemma prod_induct7 [case_names fields, induct type]:
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   710
    "(!!a b c d e f g. P (a, b, c, d, e, f, g)) ==> P x"
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   711
  by (cases x) blast
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   712
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
   713
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   714
subsubsection {* Derived operations *}
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   715
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   716
text {*
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   717
  The composition-uncurry combinator.
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   718
*}
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   719
26588
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26480
diff changeset
   720
notation fcomp (infixl "o>" 60)
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   721
26588
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26480
diff changeset
   722
definition
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26480
diff changeset
   723
  scomp :: "('a \<Rightarrow> 'b \<times> 'c) \<Rightarrow> ('b \<Rightarrow> 'c \<Rightarrow> 'd) \<Rightarrow> 'a \<Rightarrow> 'd" (infixl "o\<rightarrow>" 60)
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26480
diff changeset
   724
where
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26480
diff changeset
   725
  "f o\<rightarrow> g = (\<lambda>x. split g (f x))"
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   726
26588
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26480
diff changeset
   727
lemma scomp_apply:  "(f o\<rightarrow> g) x = split g (f x)"
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26480
diff changeset
   728
  by (simp add: scomp_def)
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   729
26588
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26480
diff changeset
   730
lemma Pair_scomp: "Pair x o\<rightarrow> f = f x"
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26480
diff changeset
   731
  by (simp add: expand_fun_eq scomp_apply)
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   732
26588
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26480
diff changeset
   733
lemma scomp_Pair: "x o\<rightarrow> Pair = x"
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26480
diff changeset
   734
  by (simp add: expand_fun_eq scomp_apply)
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   735
26588
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26480
diff changeset
   736
lemma scomp_scomp: "(f o\<rightarrow> g) o\<rightarrow> h = f o\<rightarrow> (\<lambda>x. g x o\<rightarrow> h)"
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26480
diff changeset
   737
  by (simp add: expand_fun_eq split_twice scomp_def)
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   738
26588
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26480
diff changeset
   739
lemma scomp_fcomp: "(f o\<rightarrow> g) o> h = f o\<rightarrow> (\<lambda>x. g x o> h)"
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26480
diff changeset
   740
  by (simp add: expand_fun_eq scomp_apply fcomp_def split_def)
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   741
26588
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26480
diff changeset
   742
lemma fcomp_scomp: "(f o> g) o\<rightarrow> h = f o> (g o\<rightarrow> h)"
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26480
diff changeset
   743
  by (simp add: expand_fun_eq scomp_apply fcomp_apply)
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   744
31202
52d332f8f909 pretty printing of functional combinators for evaluation code
haftmann
parents: 30924
diff changeset
   745
code_const scomp
52d332f8f909 pretty printing of functional combinators for evaluation code
haftmann
parents: 30924
diff changeset
   746
  (Eval infixl 3 "#->")
52d332f8f909 pretty printing of functional combinators for evaluation code
haftmann
parents: 30924
diff changeset
   747
26588
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26480
diff changeset
   748
no_notation fcomp (infixl "o>" 60)
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26480
diff changeset
   749
no_notation scomp (infixl "o\<rightarrow>" 60)
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   750
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   751
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   752
text {*
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   753
  @{term prod_fun} --- action of the product functor upon
31775
2b04504fcb69 uniformly capitialized names for subdirectories
haftmann
parents: 31723
diff changeset
   754
  Datatypes.
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   755
*}
21195
0cca8d19557d two further lemmas on split
haftmann
parents: 21046
diff changeset
   756
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   757
definition prod_fun :: "('a \<Rightarrow> 'c) \<Rightarrow> ('b \<Rightarrow> 'd) \<Rightarrow> 'a \<times> 'b \<Rightarrow> 'c \<times> 'd" where
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 28537
diff changeset
   758
  [code del]: "prod_fun f g = (\<lambda>(x, y). (f x, g y))"
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   759
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 28537
diff changeset
   760
lemma prod_fun [simp, code]: "prod_fun f g (a, b) = (f a, g b)"
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   761
  by (simp add: prod_fun_def)
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   762
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   763
lemma prod_fun_compose: "prod_fun (f1 o f2) (g1 o g2) = (prod_fun f1 g1 o prod_fun f2 g2)"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   764
  by (rule ext) auto
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   765
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   766
lemma prod_fun_ident [simp]: "prod_fun (%x. x) (%y. y) = (%z. z)"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   767
  by (rule ext) auto
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   768
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   769
lemma prod_fun_imageI [intro]: "(a, b) : r ==> (f a, g b) : prod_fun f g ` r"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   770
  apply (rule image_eqI)
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   771
  apply (rule prod_fun [symmetric], assumption)
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   772
  done
21195
0cca8d19557d two further lemmas on split
haftmann
parents: 21046
diff changeset
   773
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   774
lemma prod_fun_imageE [elim!]:
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   775
  assumes major: "c: (prod_fun f g)`r"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   776
    and cases: "!!x y. [| c=(f(x),g(y));  (x,y):r |] ==> P"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   777
  shows P
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   778
  apply (rule major [THEN imageE])
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   779
  apply (rule_tac p = x in PairE)
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   780
  apply (rule cases)
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   781
   apply (blast intro: prod_fun)
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   782
  apply blast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   783
  done
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   784
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   785
definition
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   786
  apfst :: "('a \<Rightarrow> 'c) \<Rightarrow> 'a \<times> 'b \<Rightarrow> 'c \<times> 'b"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   787
where
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 28537
diff changeset
   788
  [code del]: "apfst f = prod_fun f id"
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   789
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   790
definition
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   791
  apsnd :: "('b \<Rightarrow> 'c) \<Rightarrow> 'a \<times> 'b \<Rightarrow> 'a \<times> 'c"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   792
where
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 28537
diff changeset
   793
  [code del]: "apsnd f = prod_fun id f"
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   794
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   795
lemma apfst_conv [simp, code]:
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   796
  "apfst f (x, y) = (f x, y)" 
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   797
  by (simp add: apfst_def)
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   798
33638
548a34929e98 Renamed upd_snd_conv to apsnd_conv to be consistent with apfst_conv; Added apsnd_apfst_commute
hoelzl
parents: 33594
diff changeset
   799
lemma apsnd_conv [simp, code]:
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   800
  "apsnd f (x, y) = (x, f y)" 
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   801
  by (simp add: apsnd_def)
21195
0cca8d19557d two further lemmas on split
haftmann
parents: 21046
diff changeset
   802
33594
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   803
lemma fst_apfst [simp]:
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   804
  "fst (apfst f x) = f (fst x)"
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   805
  by (cases x) simp
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   806
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   807
lemma fst_apsnd [simp]:
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   808
  "fst (apsnd f x) = fst x"
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   809
  by (cases x) simp
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   810
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   811
lemma snd_apfst [simp]:
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   812
  "snd (apfst f x) = snd x"
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   813
  by (cases x) simp
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   814
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   815
lemma snd_apsnd [simp]:
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   816
  "snd (apsnd f x) = f (snd x)"
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   817
  by (cases x) simp
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   818
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   819
lemma apfst_compose:
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   820
  "apfst f (apfst g x) = apfst (f \<circ> g) x"
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   821
  by (cases x) simp
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   822
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   823
lemma apsnd_compose:
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   824
  "apsnd f (apsnd g x) = apsnd (f \<circ> g) x"
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   825
  by (cases x) simp
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   826
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   827
lemma apfst_apsnd [simp]:
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   828
  "apfst f (apsnd g x) = (f (fst x), g (snd x))"
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   829
  by (cases x) simp
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   830
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   831
lemma apsnd_apfst [simp]:
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   832
  "apsnd f (apfst g x) = (g (fst x), f (snd x))"
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   833
  by (cases x) simp
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   834
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   835
lemma apfst_id [simp] :
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   836
  "apfst id = id"
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   837
  by (simp add: expand_fun_eq)
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   838
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   839
lemma apsnd_id [simp] :
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   840
  "apsnd id = id"
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   841
  by (simp add: expand_fun_eq)
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   842
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   843
lemma apfst_eq_conv [simp]:
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   844
  "apfst f x = apfst g x \<longleftrightarrow> f (fst x) = g (fst x)"
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   845
  by (cases x) simp
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   846
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   847
lemma apsnd_eq_conv [simp]:
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   848
  "apsnd f x = apsnd g x \<longleftrightarrow> f (snd x) = g (snd x)"
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   849
  by (cases x) simp
357f74e0090c lemmas about apfst and apsnd
haftmann
parents: 33275
diff changeset
   850
33638
548a34929e98 Renamed upd_snd_conv to apsnd_conv to be consistent with apfst_conv; Added apsnd_apfst_commute
hoelzl
parents: 33594
diff changeset
   851
lemma apsnd_apfst_commute:
548a34929e98 Renamed upd_snd_conv to apsnd_conv to be consistent with apfst_conv; Added apsnd_apfst_commute
hoelzl
parents: 33594
diff changeset
   852
  "apsnd f (apfst g p) = apfst g (apsnd f p)"
548a34929e98 Renamed upd_snd_conv to apsnd_conv to be consistent with apfst_conv; Added apsnd_apfst_commute
hoelzl
parents: 33594
diff changeset
   853
  by simp
21195
0cca8d19557d two further lemmas on split
haftmann
parents: 21046
diff changeset
   854
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   855
text {*
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   856
  Disjoint union of a family of sets -- Sigma.
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   857
*}
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   858
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   859
definition  Sigma :: "['a set, 'a => 'b set] => ('a \<times> 'b) set" where
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   860
  Sigma_def: "Sigma A B == UN x:A. UN y:B x. {Pair x y}"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   861
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   862
abbreviation
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   863
  Times :: "['a set, 'b set] => ('a * 'b) set"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   864
    (infixr "<*>" 80) where
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   865
  "A <*> B == Sigma A (%_. B)"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   866
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   867
notation (xsymbols)
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   868
  Times  (infixr "\<times>" 80)
15394
a2c34e6ca4f8 New code generator for let and split.
berghofe
parents: 15140
diff changeset
   869
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   870
notation (HTML output)
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   871
  Times  (infixr "\<times>" 80)
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   872
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   873
syntax
35115
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   874
  "_Sigma" :: "[pttrn, 'a set, 'b set] => ('a * 'b) set"  ("(3SIGMA _:_./ _)" [0, 0, 10] 10)
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   875
translations
35115
446c5063e4fd modernized translations;
wenzelm
parents: 34900
diff changeset
   876
  "SIGMA x:A. B" == "CONST Sigma A (%x. B)"
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   877
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   878
lemma SigmaI [intro!]: "[| a:A;  b:B(a) |] ==> (a,b) : Sigma A B"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   879
  by (unfold Sigma_def) blast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   880
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   881
lemma SigmaE [elim!]:
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   882
    "[| c: Sigma A B;
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   883
        !!x y.[| x:A;  y:B(x);  c=(x,y) |] ==> P
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   884
     |] ==> P"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   885
  -- {* The general elimination rule. *}
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   886
  by (unfold Sigma_def) blast
20588
c847c56edf0c added operational equality
haftmann
parents: 20415
diff changeset
   887
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   888
text {*
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   889
  Elimination of @{term "(a, b) : A \<times> B"} -- introduces no
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   890
  eigenvariables.
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   891
*}
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   892
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   893
lemma SigmaD1: "(a, b) : Sigma A B ==> a : A"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   894
  by blast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   895
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   896
lemma SigmaD2: "(a, b) : Sigma A B ==> b : B a"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   897
  by blast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   898
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   899
lemma SigmaE2:
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   900
    "[| (a, b) : Sigma A B;
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   901
        [| a:A;  b:B(a) |] ==> P
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   902
     |] ==> P"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   903
  by blast
20588
c847c56edf0c added operational equality
haftmann
parents: 20415
diff changeset
   904
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   905
lemma Sigma_cong:
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   906
     "\<lbrakk>A = B; !!x. x \<in> B \<Longrightarrow> C x = D x\<rbrakk>
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   907
      \<Longrightarrow> (SIGMA x: A. C x) = (SIGMA x: B. D x)"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   908
  by auto
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   909
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   910
lemma Sigma_mono: "[| A <= C; !!x. x:A ==> B x <= D x |] ==> Sigma A B <= Sigma C D"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   911
  by blast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   912
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   913
lemma Sigma_empty1 [simp]: "Sigma {} B = {}"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   914
  by blast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   915
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   916
lemma Sigma_empty2 [simp]: "A <*> {} = {}"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   917
  by blast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   918
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   919
lemma UNIV_Times_UNIV [simp]: "UNIV <*> UNIV = UNIV"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   920
  by auto
21908
d02ba728cd56 moved code generator product setup here
haftmann
parents: 21454
diff changeset
   921
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   922
lemma Compl_Times_UNIV1 [simp]: "- (UNIV <*> A) = UNIV <*> (-A)"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   923
  by auto
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   924
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   925
lemma Compl_Times_UNIV2 [simp]: "- (A <*> UNIV) = (-A) <*> UNIV"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   926
  by auto
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   927
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   928
lemma mem_Sigma_iff [iff]: "((a,b): Sigma A B) = (a:A & b:B(a))"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   929
  by blast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   930
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   931
lemma Times_subset_cancel2: "x:C ==> (A <*> C <= B <*> C) = (A <= B)"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   932
  by blast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   933
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   934
lemma Times_eq_cancel2: "x:C ==> (A <*> C = B <*> C) = (A = B)"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   935
  by (blast elim: equalityE)
20588
c847c56edf0c added operational equality
haftmann
parents: 20415
diff changeset
   936
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   937
lemma SetCompr_Sigma_eq:
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   938
    "Collect (split (%x y. P x & Q x y)) = (SIGMA x:Collect P. Collect (Q x))"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   939
  by blast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   940
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   941
lemma Collect_split [simp]: "{(a,b). P a & Q b} = Collect P <*> Collect Q"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   942
  by blast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   943
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   944
lemma UN_Times_distrib:
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   945
  "(UN (a,b):(A <*> B). E a <*> F b) = (UNION A E) <*> (UNION B F)"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   946
  -- {* Suggested by Pierre Chartier *}
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   947
  by blast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   948
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   949
lemma split_paired_Ball_Sigma [simp,noatp]:
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   950
    "(ALL z: Sigma A B. P z) = (ALL x:A. ALL y: B x. P(x,y))"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   951
  by blast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   952
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   953
lemma split_paired_Bex_Sigma [simp,noatp]:
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   954
    "(EX z: Sigma A B. P z) = (EX x:A. EX y: B x. P(x,y))"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   955
  by blast
21908
d02ba728cd56 moved code generator product setup here
haftmann
parents: 21454
diff changeset
   956
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   957
lemma Sigma_Un_distrib1: "(SIGMA i:I Un J. C(i)) = (SIGMA i:I. C(i)) Un (SIGMA j:J. C(j))"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   958
  by blast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   959
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   960
lemma Sigma_Un_distrib2: "(SIGMA i:I. A(i) Un B(i)) = (SIGMA i:I. A(i)) Un (SIGMA i:I. B(i))"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   961
  by blast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   962
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   963
lemma Sigma_Int_distrib1: "(SIGMA i:I Int J. C(i)) = (SIGMA i:I. C(i)) Int (SIGMA j:J. C(j))"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   964
  by blast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   965
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   966
lemma Sigma_Int_distrib2: "(SIGMA i:I. A(i) Int B(i)) = (SIGMA i:I. A(i)) Int (SIGMA i:I. B(i))"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   967
  by blast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   968
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   969
lemma Sigma_Diff_distrib1: "(SIGMA i:I - J. C(i)) = (SIGMA i:I. C(i)) - (SIGMA j:J. C(j))"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   970
  by blast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   971
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   972
lemma Sigma_Diff_distrib2: "(SIGMA i:I. A(i) - B(i)) = (SIGMA i:I. A(i)) - (SIGMA i:I. B(i))"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   973
  by blast
21908
d02ba728cd56 moved code generator product setup here
haftmann
parents: 21454
diff changeset
   974
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   975
lemma Sigma_Union: "Sigma (Union X) B = (UN A:X. Sigma A B)"
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   976
  by blast
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   977
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   978
text {*
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   979
  Non-dependent versions are needed to avoid the need for higher-order
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   980
  matching, especially when the rules are re-oriented.
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   981
*}
21908
d02ba728cd56 moved code generator product setup here
haftmann
parents: 21454
diff changeset
   982
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   983
lemma Times_Un_distrib1: "(A Un B) <*> C = (A <*> C) Un (B <*> C)"
28719
01e04e41cc7b added lemma
nipkow
parents: 28562
diff changeset
   984
by blast
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   985
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   986
lemma Times_Int_distrib1: "(A Int B) <*> C = (A <*> C) Int (B <*> C)"
28719
01e04e41cc7b added lemma
nipkow
parents: 28562
diff changeset
   987
by blast
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   988
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   989
lemma Times_Diff_distrib1: "(A - B) <*> C = (A <*> C) - (B <*> C)"
28719
01e04e41cc7b added lemma
nipkow
parents: 28562
diff changeset
   990
by blast
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   991
28719
01e04e41cc7b added lemma
nipkow
parents: 28562
diff changeset
   992
lemma insert_times_insert[simp]:
01e04e41cc7b added lemma
nipkow
parents: 28562
diff changeset
   993
  "insert a A \<times> insert b B =
01e04e41cc7b added lemma
nipkow
parents: 28562
diff changeset
   994
   insert (a,b) (A \<times> insert b B \<union> insert a A \<times> B)"
01e04e41cc7b added lemma
nipkow
parents: 28562
diff changeset
   995
by blast
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
   996
33271
7be66dee1a5a New theory Probability, which contains a development of measure theory
paulson
parents: 33089
diff changeset
   997
lemma vimage_Times: "f -` (A \<times> B) = ((fst \<circ> f) -` A) \<inter> ((snd \<circ> f) -` B)"
7be66dee1a5a New theory Probability, which contains a development of measure theory
paulson
parents: 33089
diff changeset
   998
  by (auto, rule_tac p = "f x" in PairE, auto)
7be66dee1a5a New theory Probability, which contains a development of measure theory
paulson
parents: 33089
diff changeset
   999
26358
d6a508c16908 Product_Type.apfst and Product_Type.apsnd; mbind combinator; tuned
haftmann
parents: 26340
diff changeset
  1000
subsubsection {* Code generator setup *}
21908
d02ba728cd56 moved code generator product setup here
haftmann
parents: 21454
diff changeset
  1001
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 28537
diff changeset
  1002
lemma [code]:
28346
b8390cd56b8f discontinued special treatment of op = vs. eq_class.eq
haftmann
parents: 28262
diff changeset
  1003
  "eq_class.eq (x1\<Colon>'a\<Colon>eq, y1\<Colon>'b\<Colon>eq) (x2, y2) \<longleftrightarrow> x1 = x2 \<and> y1 = y2" by (simp add: eq)
20588
c847c56edf0c added operational equality
haftmann
parents: 20415
diff changeset
  1004
24844
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24699
diff changeset
  1005
lemma split_case_cert:
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24699
diff changeset
  1006
  assumes "CASE \<equiv> split f"
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24699
diff changeset
  1007
  shows "CASE (a, b) \<equiv> f a b"
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24699
diff changeset
  1008
  using assms by simp
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24699
diff changeset
  1009
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24699
diff changeset
  1010
setup {*
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24699
diff changeset
  1011
  Code.add_case @{thm split_case_cert}
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24699
diff changeset
  1012
*}
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24699
diff changeset
  1013
21908
d02ba728cd56 moved code generator product setup here
haftmann
parents: 21454
diff changeset
  1014
code_type *
d02ba728cd56 moved code generator product setup here
haftmann
parents: 21454
diff changeset
  1015
  (SML infix 2 "*")
d02ba728cd56 moved code generator product setup here
haftmann
parents: 21454
diff changeset
  1016
  (OCaml infix 2 "*")
d02ba728cd56 moved code generator product setup here
haftmann
parents: 21454
diff changeset
  1017
  (Haskell "!((_),/ (_))")
34900
9b12b0824bfe tuned for products vs. tupled functions
haftmann
parents: 34886
diff changeset
  1018
  (Scala "((_),/ (_))")
21908
d02ba728cd56 moved code generator product setup here
haftmann
parents: 21454
diff changeset
  1019
20588
c847c56edf0c added operational equality
haftmann
parents: 20415
diff changeset
  1020
code_instance * :: eq
c847c56edf0c added operational equality
haftmann
parents: 20415
diff changeset
  1021
  (Haskell -)
c847c56edf0c added operational equality
haftmann
parents: 20415
diff changeset
  1022
28346
b8390cd56b8f discontinued special treatment of op = vs. eq_class.eq
haftmann
parents: 28262
diff changeset
  1023
code_const "eq_class.eq \<Colon> 'a\<Colon>eq \<times> 'b\<Colon>eq \<Rightarrow> 'a \<times> 'b \<Rightarrow> bool"
20588
c847c56edf0c added operational equality
haftmann
parents: 20415
diff changeset
  1024
  (Haskell infixl 4 "==")
c847c56edf0c added operational equality
haftmann
parents: 20415
diff changeset
  1025
21908
d02ba728cd56 moved code generator product setup here
haftmann
parents: 21454
diff changeset
  1026
code_const Pair
d02ba728cd56 moved code generator product setup here
haftmann
parents: 21454
diff changeset
  1027
  (SML "!((_),/ (_))")
d02ba728cd56 moved code generator product setup here
haftmann
parents: 21454
diff changeset
  1028
  (OCaml "!((_),/ (_))")
d02ba728cd56 moved code generator product setup here
haftmann
parents: 21454
diff changeset
  1029
  (Haskell "!((_),/ (_))")
34886
873c31d9f10d some syntax setup for Scala
haftmann
parents: 33959
diff changeset
  1030
  (Scala "!((_),/ (_))")
20588
c847c56edf0c added operational equality
haftmann
parents: 20415
diff changeset
  1031
22389
bdf16741d039 using "fst" "snd" for Haskell code
haftmann
parents: 22349
diff changeset
  1032
code_const fst and snd
bdf16741d039 using "fst" "snd" for Haskell code
haftmann
parents: 22349
diff changeset
  1033
  (Haskell "fst" and "snd")
bdf16741d039 using "fst" "snd" for Haskell code
haftmann
parents: 22349
diff changeset
  1034
15394
a2c34e6ca4f8 New code generator for let and split.
berghofe
parents: 15140
diff changeset
  1035
types_code
a2c34e6ca4f8 New code generator for let and split.
berghofe
parents: 15140
diff changeset
  1036
  "*"     ("(_ */ _)")
16770
1f1b1fae30e4 Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents: 16634
diff changeset
  1037
attach (term_of) {*
25885
6fbc3f54f819 New interface for test data generators.
berghofe
parents: 25534
diff changeset
  1038
fun term_of_id_42 aF aT bF bT (x, y) = HOLogic.pair_const aT bT $ aF x $ bF y;
16770
1f1b1fae30e4 Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents: 16634
diff changeset
  1039
*}
1f1b1fae30e4 Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents: 16634
diff changeset
  1040
attach (test) {*
25885
6fbc3f54f819 New interface for test data generators.
berghofe
parents: 25534
diff changeset
  1041
fun gen_id_42 aG aT bG bT i =
6fbc3f54f819 New interface for test data generators.
berghofe
parents: 25534
diff changeset
  1042
  let
6fbc3f54f819 New interface for test data generators.
berghofe
parents: 25534
diff changeset
  1043
    val (x, t) = aG i;
6fbc3f54f819 New interface for test data generators.
berghofe
parents: 25534
diff changeset
  1044
    val (y, u) = bG i
6fbc3f54f819 New interface for test data generators.
berghofe
parents: 25534
diff changeset
  1045
  in ((x, y), fn () => HOLogic.pair_const aT bT $ t () $ u ()) end;
16770
1f1b1fae30e4 Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents: 16634
diff changeset
  1046
*}
15394
a2c34e6ca4f8 New code generator for let and split.
berghofe
parents: 15140
diff changeset
  1047
18706
1e7562c7afe6 Re-inserted consts_code declaration accidentally deleted
berghofe
parents: 18702
diff changeset
  1048
consts_code
1e7562c7afe6 Re-inserted consts_code declaration accidentally deleted
berghofe
parents: 18702
diff changeset
  1049
  "Pair"    ("(_,/ _)")
1e7562c7afe6 Re-inserted consts_code declaration accidentally deleted
berghofe
parents: 18702
diff changeset
  1050
21908
d02ba728cd56 moved code generator product setup here
haftmann
parents: 21454
diff changeset
  1051
setup {*
d02ba728cd56 moved code generator product setup here
haftmann
parents: 21454
diff changeset
  1052
d02ba728cd56 moved code generator product setup here
haftmann
parents: 21454
diff changeset
  1053
let
18013
3f5d0acdfdba added extraction interface for code generator
haftmann
parents: 17956
diff changeset
  1054
19039
8eae46249628 added theory of executable rational numbers
haftmann
parents: 19008
diff changeset
  1055
fun strip_abs_split 0 t = ([], t)
8eae46249628 added theory of executable rational numbers
haftmann
parents: 19008
diff changeset
  1056
  | strip_abs_split i (Abs (s, T, t)) =
18013
3f5d0acdfdba added extraction interface for code generator
haftmann
parents: 17956
diff changeset
  1057
      let
3f5d0acdfdba added extraction interface for code generator
haftmann
parents: 17956
diff changeset
  1058
        val s' = Codegen.new_name t s;
3f5d0acdfdba added extraction interface for code generator
haftmann
parents: 17956
diff changeset
  1059
        val v = Free (s', T)
19039
8eae46249628 added theory of executable rational numbers
haftmann
parents: 19008
diff changeset
  1060
      in apfst (cons v) (strip_abs_split (i-1) (subst_bound (v, t))) end
8eae46249628 added theory of executable rational numbers
haftmann
parents: 19008
diff changeset
  1061
  | strip_abs_split i (u as Const ("split", _) $ t) = (case strip_abs_split (i+1) t of
15394
a2c34e6ca4f8 New code generator for let and split.
berghofe
parents: 15140
diff changeset
  1062
        (v :: v' :: vs, u) => (HOLogic.mk_prod (v, v') :: vs, u)
a2c34e6ca4f8 New code generator for let and split.
berghofe
parents: 15140
diff changeset
  1063
      | _ => ([], u))
30604
2a9911f4b0a3 split_codegen now eta-expands terms on-the-fly.
berghofe
parents: 28719
diff changeset
  1064
  | strip_abs_split i t =
2a9911f4b0a3 split_codegen now eta-expands terms on-the-fly.
berghofe
parents: 28719
diff changeset
  1065
      strip_abs_split i (Abs ("x", hd (binder_types (fastype_of t)), t $ Bound 0));
18013
3f5d0acdfdba added extraction interface for code generator
haftmann
parents: 17956
diff changeset
  1066
28537
1e84256d1a8a established canonical argument order in SML code generators
haftmann
parents: 28346
diff changeset
  1067
fun let_codegen thy defs dep thyname brack t gr = (case strip_comb t of
16634
f19d58cfb47a Adapted to new interface of code generator.
berghofe
parents: 16417
diff changeset
  1068
    (t1 as Const ("Let", _), t2 :: t3 :: ts) =>
15394
a2c34e6ca4f8 New code generator for let and split.
berghofe
parents: 15140
diff changeset
  1069
    let
a2c34e6ca4f8 New code generator for let and split.
berghofe
parents: 15140
diff changeset
  1070
      fun dest_let (l as Const ("Let", _) $ t $ u) =
19039
8eae46249628 added theory of executable rational numbers
haftmann
parents: 19008
diff changeset
  1071
          (case strip_abs_split 1 u of
15394
a2c34e6ca4f8 New code generator for let and split.
berghofe
parents: 15140
diff changeset
  1072
             ([p], u') => apfst (cons (p, t)) (dest_let u')
a2c34e6ca4f8 New code generator for let and split.
berghofe
parents: 15140
diff changeset
  1073
           | _ => ([], l))
a2c34e6ca4f8 New code generator for let and split.
berghofe
parents: 15140
diff changeset
  1074
        | dest_let t = ([], t);
28537
1e84256d1a8a established canonical argument order in SML code generators
haftmann
parents: 28346
diff changeset
  1075
      fun mk_code (l, r) gr =
15394
a2c34e6ca4f8 New code generator for let and split.
berghofe
parents: 15140
diff changeset
  1076
        let
28537
1e84256d1a8a established canonical argument order in SML code generators
haftmann
parents: 28346
diff changeset
  1077
          val (pl, gr1) = Codegen.invoke_codegen thy defs dep thyname false l gr;
1e84256d1a8a established canonical argument order in SML code generators
haftmann
parents: 28346
diff changeset
  1078
          val (pr, gr2) = Codegen.invoke_codegen thy defs dep thyname false r gr1;
1e84256d1a8a established canonical argument order in SML code generators
haftmann
parents: 28346
diff changeset
  1079
        in ((pl, pr), gr2) end
16634
f19d58cfb47a Adapted to new interface of code generator.
berghofe
parents: 16417
diff changeset
  1080
    in case dest_let (t1 $ t2 $ t3) of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
  1081
        ([], _) => NONE
15394
a2c34e6ca4f8 New code generator for let and split.
berghofe
parents: 15140
diff changeset
  1082
      | (ps, u) =>
a2c34e6ca4f8 New code generator for let and split.
berghofe
parents: 15140
diff changeset
  1083
          let
28537
1e84256d1a8a established canonical argument order in SML code generators
haftmann
parents: 28346
diff changeset
  1084
            val (qs, gr1) = fold_map mk_code ps gr;
1e84256d1a8a established canonical argument order in SML code generators
haftmann
parents: 28346
diff changeset
  1085
            val (pu, gr2) = Codegen.invoke_codegen thy defs dep thyname false u gr1;
1e84256d1a8a established canonical argument order in SML code generators
haftmann
parents: 28346
diff changeset
  1086
            val (pargs, gr3) = fold_map
1e84256d1a8a established canonical argument order in SML code generators
haftmann
parents: 28346
diff changeset
  1087
              (Codegen.invoke_codegen thy defs dep thyname true) ts gr2
15394
a2c34e6ca4f8 New code generator for let and split.
berghofe
parents: 15140
diff changeset
  1088
          in
28537
1e84256d1a8a established canonical argument order in SML code generators
haftmann
parents: 28346
diff changeset
  1089
            SOME (Codegen.mk_app brack
32952
aeb1e44fbc19 replaced String.concat by implode;
wenzelm
parents: 32010
diff changeset
  1090
              (Pretty.blk (0, [Codegen.str "let ", Pretty.blk (0, flat
26975
103dca19ef2e Replaced Pretty.str and Pretty.string_of by specific functions (from Codegen) that
berghofe
parents: 26798
diff changeset
  1091
                  (separate [Codegen.str ";", Pretty.brk 1] (map (fn (pl, pr) =>
103dca19ef2e Replaced Pretty.str and Pretty.string_of by specific functions (from Codegen) that
berghofe
parents: 26798
diff changeset
  1092
                    [Pretty.block [Codegen.str "val ", pl, Codegen.str " =",
16634
f19d58cfb47a Adapted to new interface of code generator.
berghofe
parents: 16417
diff changeset
  1093
                       Pretty.brk 1, pr]]) qs))),
26975
103dca19ef2e Replaced Pretty.str and Pretty.string_of by specific functions (from Codegen) that
berghofe
parents: 26798
diff changeset
  1094
                Pretty.brk 1, Codegen.str "in ", pu,
28537
1e84256d1a8a established canonical argument order in SML code generators
haftmann
parents: 28346
diff changeset
  1095
                Pretty.brk 1, Codegen.str "end"])) pargs, gr3)
15394
a2c34e6ca4f8 New code generator for let and split.
berghofe
parents: 15140
diff changeset
  1096
          end
a2c34e6ca4f8 New code generator for let and split.
berghofe
parents: 15140
diff changeset
  1097
    end
16634
f19d58cfb47a Adapted to new interface of code generator.
berghofe
parents: 16417
diff changeset
  1098
  | _ => NONE);
15394
a2c34e6ca4f8 New code generator for let and split.
berghofe
parents: 15140
diff changeset
  1099
28537
1e84256d1a8a established canonical argument order in SML code generators
haftmann
parents: 28346
diff changeset
  1100
fun split_codegen thy defs dep thyname brack t gr = (case strip_comb t of
16634
f19d58cfb47a Adapted to new interface of code generator.
berghofe
parents: 16417
diff changeset
  1101
    (t1 as Const ("split", _), t2 :: ts) =>
30604
2a9911f4b0a3 split_codegen now eta-expands terms on-the-fly.
berghofe
parents: 28719
diff changeset
  1102
      let
2a9911f4b0a3 split_codegen now eta-expands terms on-the-fly.
berghofe
parents: 28719
diff changeset
  1103
        val ([p], u) = strip_abs_split 1 (t1 $ t2);
2a9911f4b0a3 split_codegen now eta-expands terms on-the-fly.
berghofe
parents: 28719
diff changeset
  1104
        val (q, gr1) = Codegen.invoke_codegen thy defs dep thyname false p gr;
2a9911f4b0a3 split_codegen now eta-expands terms on-the-fly.
berghofe
parents: 28719
diff changeset
  1105
        val (pu, gr2) = Codegen.invoke_codegen thy defs dep thyname false u gr1;
2a9911f4b0a3 split_codegen now eta-expands terms on-the-fly.
berghofe
parents: 28719
diff changeset
  1106
        val (pargs, gr3) = fold_map
2a9911f4b0a3 split_codegen now eta-expands terms on-the-fly.
berghofe
parents: 28719
diff changeset
  1107
          (Codegen.invoke_codegen thy defs dep thyname true) ts gr2
2a9911f4b0a3 split_codegen now eta-expands terms on-the-fly.
berghofe
parents: 28719
diff changeset
  1108
      in
2a9911f4b0a3 split_codegen now eta-expands terms on-the-fly.
berghofe
parents: 28719
diff changeset
  1109
        SOME (Codegen.mk_app brack
2a9911f4b0a3 split_codegen now eta-expands terms on-the-fly.
berghofe
parents: 28719
diff changeset
  1110
          (Pretty.block [Codegen.str "(fn ", q, Codegen.str " =>",
2a9911f4b0a3 split_codegen now eta-expands terms on-the-fly.
berghofe
parents: 28719
diff changeset
  1111
            Pretty.brk 1, pu, Codegen.str ")"]) pargs, gr2)
2a9911f4b0a3 split_codegen now eta-expands terms on-the-fly.
berghofe
parents: 28719
diff changeset
  1112
      end
16634
f19d58cfb47a Adapted to new interface of code generator.
berghofe
parents: 16417
diff changeset
  1113
  | _ => NONE);
15394
a2c34e6ca4f8 New code generator for let and split.
berghofe
parents: 15140
diff changeset
  1114
21908
d02ba728cd56 moved code generator product setup here
haftmann
parents: 21454
diff changeset
  1115
in
d02ba728cd56 moved code generator product setup here
haftmann
parents: 21454
diff changeset
  1116
20105
454f4be984b7 adaptions in codegen
haftmann
parents: 20044
diff changeset
  1117
  Codegen.add_codegen "let_codegen" let_codegen
454f4be984b7 adaptions in codegen
haftmann
parents: 20044
diff changeset
  1118
  #> Codegen.add_codegen "split_codegen" split_codegen
15394
a2c34e6ca4f8 New code generator for let and split.
berghofe
parents: 15140
diff changeset
  1119
21908
d02ba728cd56 moved code generator product setup here
haftmann
parents: 21454
diff changeset
  1120
end
15394
a2c34e6ca4f8 New code generator for let and split.
berghofe
parents: 15140
diff changeset
  1121
*}
a2c34e6ca4f8 New code generator for let and split.
berghofe
parents: 15140
diff changeset
  1122
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
  1123
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
  1124
subsection {* Legacy bindings *}
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
  1125
21908
d02ba728cd56 moved code generator product setup here
haftmann
parents: 21454
diff changeset
  1126
ML {*
15404
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1127
val Collect_split = thm "Collect_split";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1128
val Compl_Times_UNIV1 = thm "Compl_Times_UNIV1";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1129
val Compl_Times_UNIV2 = thm "Compl_Times_UNIV2";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1130
val PairE = thm "PairE";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1131
val Pair_Rep_inject = thm "Pair_Rep_inject";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1132
val Pair_def = thm "Pair_def";
27104
791607529f6d rep_datatype command now takes list of constructors as input arguments
haftmann
parents: 26975
diff changeset
  1133
val Pair_eq = @{thm "prod.inject"};
15404
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1134
val Pair_fst_snd_eq = thm "Pair_fst_snd_eq";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1135
val ProdI = thm "ProdI";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1136
val SetCompr_Sigma_eq = thm "SetCompr_Sigma_eq";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1137
val SigmaD1 = thm "SigmaD1";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1138
val SigmaD2 = thm "SigmaD2";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1139
val SigmaE = thm "SigmaE";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1140
val SigmaE2 = thm "SigmaE2";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1141
val SigmaI = thm "SigmaI";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1142
val Sigma_Diff_distrib1 = thm "Sigma_Diff_distrib1";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1143
val Sigma_Diff_distrib2 = thm "Sigma_Diff_distrib2";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1144
val Sigma_Int_distrib1 = thm "Sigma_Int_distrib1";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1145
val Sigma_Int_distrib2 = thm "Sigma_Int_distrib2";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1146
val Sigma_Un_distrib1 = thm "Sigma_Un_distrib1";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1147
val Sigma_Un_distrib2 = thm "Sigma_Un_distrib2";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1148
val Sigma_Union = thm "Sigma_Union";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1149
val Sigma_def = thm "Sigma_def";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1150
val Sigma_empty1 = thm "Sigma_empty1";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1151
val Sigma_empty2 = thm "Sigma_empty2";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1152
val Sigma_mono = thm "Sigma_mono";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1153
val The_split = thm "The_split";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1154
val The_split_eq = thm "The_split_eq";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1155
val The_split_eq = thm "The_split_eq";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1156
val Times_Diff_distrib1 = thm "Times_Diff_distrib1";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1157
val Times_Int_distrib1 = thm "Times_Int_distrib1";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1158
val Times_Un_distrib1 = thm "Times_Un_distrib1";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1159
val Times_eq_cancel2 = thm "Times_eq_cancel2";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1160
val Times_subset_cancel2 = thm "Times_subset_cancel2";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1161
val UNIV_Times_UNIV = thm "UNIV_Times_UNIV";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1162
val UN_Times_distrib = thm "UN_Times_distrib";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1163
val Unity_def = thm "Unity_def";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1164
val cond_split_eta = thm "cond_split_eta";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1165
val fst_conv = thm "fst_conv";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1166
val fst_def = thm "fst_def";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1167
val fst_eqD = thm "fst_eqD";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1168
val inj_on_Abs_Prod = thm "inj_on_Abs_Prod";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1169
val mem_Sigma_iff = thm "mem_Sigma_iff";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1170
val mem_splitE = thm "mem_splitE";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1171
val mem_splitI = thm "mem_splitI";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1172
val mem_splitI2 = thm "mem_splitI2";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1173
val prod_eqI = thm "prod_eqI";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1174
val prod_fun = thm "prod_fun";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1175
val prod_fun_compose = thm "prod_fun_compose";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1176
val prod_fun_def = thm "prod_fun_def";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1177
val prod_fun_ident = thm "prod_fun_ident";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1178
val prod_fun_imageE = thm "prod_fun_imageE";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1179
val prod_fun_imageI = thm "prod_fun_imageI";
27104
791607529f6d rep_datatype command now takes list of constructors as input arguments
haftmann
parents: 26975
diff changeset
  1180
val prod_induct = thm "prod.induct";
15404
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1181
val snd_conv = thm "snd_conv";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1182
val snd_def = thm "snd_def";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1183
val snd_eqD = thm "snd_eqD";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1184
val split = thm "split";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1185
val splitD = thm "splitD";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1186
val splitD' = thm "splitD'";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1187
val splitE = thm "splitE";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1188
val splitE' = thm "splitE'";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1189
val splitE2 = thm "splitE2";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1190
val splitI = thm "splitI";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1191
val splitI2 = thm "splitI2";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1192
val splitI2' = thm "splitI2'";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1193
val split_beta = thm "split_beta";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1194
val split_conv = thm "split_conv";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1195
val split_def = thm "split_def";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1196
val split_eta = thm "split_eta";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1197
val split_eta_SetCompr = thm "split_eta_SetCompr";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1198
val split_eta_SetCompr2 = thm "split_eta_SetCompr2";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1199
val split_paired_All = thm "split_paired_All";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1200
val split_paired_Ball_Sigma = thm "split_paired_Ball_Sigma";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1201
val split_paired_Bex_Sigma = thm "split_paired_Bex_Sigma";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1202
val split_paired_Ex = thm "split_paired_Ex";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1203
val split_paired_The = thm "split_paired_The";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1204
val split_paired_all = thm "split_paired_all";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1205
val split_part = thm "split_part";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1206
val split_split = thm "split_split";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1207
val split_split_asm = thm "split_split_asm";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1208
val split_tupled_all = thms "split_tupled_all";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1209
val split_weak_cong = thm "split_weak_cong";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1210
val surj_pair = thm "surj_pair";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1211
val surjective_pairing = thm "surjective_pairing";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1212
val unit_abs_eta_conv = thm "unit_abs_eta_conv";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1213
val unit_all_eq1 = thm "unit_all_eq1";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1214
val unit_all_eq2 = thm "unit_all_eq2";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1215
val unit_eq = thm "unit_eq";
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1216
*}
a9a762f586b5 removal of NatArith.ML and Product_Type.ML
paulson
parents: 15394
diff changeset
  1217
31723
f5cafe803b55 discontinued ancient tradition to suffix certain ML module names with "_package"
haftmann
parents: 31667
diff changeset
  1218
use "Tools/inductive_set.ML"
f5cafe803b55 discontinued ancient tradition to suffix certain ML module names with "_package"
haftmann
parents: 31667
diff changeset
  1219
setup Inductive_Set.setup
24699
c6674504103f datatype interpretators for size and datatype_realizer
haftmann
parents: 24286
diff changeset
  1220
10213
01c2744a3786 *** empty log message ***
nipkow
parents:
diff changeset
  1221
end