author | oheimb |
Tue, 23 Apr 1996 16:58:21 +0200 | |
changeset 1672 | 2c109cd2fdd0 |
parent 1660 | 8cb42cd97579 |
child 1674 | 33aff4d854e4 |
permissions | -rw-r--r-- |
923 | 1 |
(* Title: HOL/Prod.thy |
2 |
ID: Prod.thy,v 1.5 1994/08/19 09:04:27 lcp Exp |
|
3 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory |
|
4 |
Copyright 1992 University of Cambridge |
|
5 |
||
6 |
Ordered Pairs and the Cartesian product type. |
|
7 |
The unit type. |
|
8 |
*) |
|
9 |
||
10 |
Prod = Fun + |
|
11 |
||
12 |
(** Products **) |
|
13 |
||
14 |
(* type definition *) |
|
15 |
||
1558 | 16 |
constdefs |
1370
7361ac9b024d
removed quotes from types in consts and syntax sections
clasohm
parents:
1273
diff
changeset
|
17 |
Pair_Rep :: ['a, 'b] => ['a, 'b] => bool |
1558 | 18 |
"Pair_Rep == (%a b. %x y. x=a & y=b)" |
923 | 19 |
|
1475 | 20 |
typedef (Prod) |
923 | 21 |
('a, 'b) "*" (infixr 20) |
22 |
= "{f. ? a b. f = Pair_Rep (a::'a) (b::'b)}" |
|
23 |
||
24 |
||
25 |
(* abstract constants and syntax *) |
|
26 |
||
27 |
consts |
|
28 |
fst :: "'a * 'b => 'a" |
|
29 |
snd :: "'a * 'b => 'b" |
|
30 |
split :: "[['a, 'b] => 'c, 'a * 'b] => 'c" |
|
31 |
prod_fun :: "['a => 'b, 'c => 'd, 'a * 'c] => 'b * 'd" |
|
32 |
Pair :: "['a, 'b] => 'a * 'b" |
|
33 |
Sigma :: "['a set, 'a => 'b set] => ('a * 'b) set" |
|
34 |
||
1068 | 35 |
(** Patterns -- extends pre-defined type "pttrn" used in abstractions **) |
36 |
types pttrns |
|
37 |
||
923 | 38 |
syntax |
972
e61b058d58d2
changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents:
967
diff
changeset
|
39 |
"@Tuple" :: "['a, args] => 'a * 'b" ("(1'(_,/ _'))") |
923 | 40 |
|
1370
7361ac9b024d
removed quotes from types in consts and syntax sections
clasohm
parents:
1273
diff
changeset
|
41 |
"@pttrn" :: [pttrn,pttrns] => pttrn ("'(_,/_')") |
7361ac9b024d
removed quotes from types in consts and syntax sections
clasohm
parents:
1273
diff
changeset
|
42 |
"" :: pttrn => pttrns ("_") |
7361ac9b024d
removed quotes from types in consts and syntax sections
clasohm
parents:
1273
diff
changeset
|
43 |
"@pttrns" :: [pttrn,pttrns] => pttrns ("_,/_") |
1068 | 44 |
|
1636 | 45 |
"@Sigma" :: "[idt,'a set,'b set] => ('a * 'b)set" |
46 |
("(3SIGMA _:_./ _)" 10) |
|
47 |
"@Times" :: "['a set, 'a => 'b set] => ('a * 'b) set" |
|
48 |
("_ Times _" [81,80] 80) |
|
49 |
||
923 | 50 |
translations |
972
e61b058d58d2
changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents:
967
diff
changeset
|
51 |
"(x, y, z)" == "(x, (y, z))" |
e61b058d58d2
changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents:
967
diff
changeset
|
52 |
"(x, y)" == "Pair x y" |
923 | 53 |
|
1114 | 54 |
"%(x,y,zs).b" == "split(%x (y,zs).b)" |
55 |
"%(x,y).b" == "split(%x y.b)" |
|
1660 | 56 |
(*<<<<<<< Prod.thy*) |
57 |
(* The <= direction fails if split has more than one argument because |
|
58 |
ast-matching fails. Otherwise it would work fine *) |
|
59 |
||
60 |
(*=======*) |
|
1068 | 61 |
|
1636 | 62 |
"SIGMA x:A. B" => "Sigma A (%x.B)" |
63 |
"A Times B" => "Sigma A (_K B)" |
|
64 |
||
1660 | 65 |
(*>>>>>>> 1.13*) |
923 | 66 |
defs |
67 |
Pair_def "Pair a b == Abs_Prod(Pair_Rep a b)" |
|
972
e61b058d58d2
changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents:
967
diff
changeset
|
68 |
fst_def "fst(p) == @a. ? b. p = (a, b)" |
e61b058d58d2
changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents:
967
diff
changeset
|
69 |
snd_def "snd(p) == @b. ? a. p = (a, b)" |
1655 | 70 |
split_def "split == (%c p. c (fst p) (snd p))" |
972
e61b058d58d2
changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents:
967
diff
changeset
|
71 |
prod_fun_def "prod_fun f g == split(%x y.(f(x), g(y)))" |
e61b058d58d2
changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents:
967
diff
changeset
|
72 |
Sigma_def "Sigma A B == UN x:A. UN y:B(x). {(x, y)}" |
923 | 73 |
|
74 |
(** Unit **) |
|
75 |
||
1475 | 76 |
typedef (Unit) |
923 | 77 |
unit = "{p. p = True}" |
78 |
||
79 |
consts |
|
1370
7361ac9b024d
removed quotes from types in consts and syntax sections
clasohm
parents:
1273
diff
changeset
|
80 |
"()" :: unit ("'(')") |
923 | 81 |
|
82 |
defs |
|
972
e61b058d58d2
changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents:
967
diff
changeset
|
83 |
Unity_def "() == Abs_Unit(True)" |
923 | 84 |
|
1273 | 85 |
(* start 8bit 1 *) |
1672
2c109cd2fdd0
repaired critical proofs depending on the order inside non-confluent SimpSets,
oheimb
parents:
1660
diff
changeset
|
86 |
types |
2c109cd2fdd0
repaired critical proofs depending on the order inside non-confluent SimpSets,
oheimb
parents:
1660
diff
changeset
|
87 |
|
2c109cd2fdd0
repaired critical proofs depending on the order inside non-confluent SimpSets,
oheimb
parents:
1660
diff
changeset
|
88 |
('a, 'b) "ò" (infixr 20) |
2c109cd2fdd0
repaired critical proofs depending on the order inside non-confluent SimpSets,
oheimb
parents:
1660
diff
changeset
|
89 |
|
2c109cd2fdd0
repaired critical proofs depending on the order inside non-confluent SimpSets,
oheimb
parents:
1660
diff
changeset
|
90 |
translations |
2c109cd2fdd0
repaired critical proofs depending on the order inside non-confluent SimpSets,
oheimb
parents:
1660
diff
changeset
|
91 |
|
2c109cd2fdd0
repaired critical proofs depending on the order inside non-confluent SimpSets,
oheimb
parents:
1660
diff
changeset
|
92 |
(type) "x ò y" == (type) "x * y" |
2c109cd2fdd0
repaired critical proofs depending on the order inside non-confluent SimpSets,
oheimb
parents:
1660
diff
changeset
|
93 |
|
2c109cd2fdd0
repaired critical proofs depending on the order inside non-confluent SimpSets,
oheimb
parents:
1660
diff
changeset
|
94 |
"³(x,y,zs).b" == "split(³x.³(y,zs).b)" |
2c109cd2fdd0
repaired critical proofs depending on the order inside non-confluent SimpSets,
oheimb
parents:
1660
diff
changeset
|
95 |
"³(x,y).b" == "split(³x y.b)" |
2c109cd2fdd0
repaired critical proofs depending on the order inside non-confluent SimpSets,
oheimb
parents:
1660
diff
changeset
|
96 |
|
1273 | 97 |
(* end 8bit 1 *) |
98 |
||
923 | 99 |
end |
1660 | 100 |
(*<<<<<<< Prod.thy*) |
101 |
(* |
|
102 |
ML |
|
103 |
||
104 |
local open Syntax |
|
105 |
||
106 |
fun pttrn(_ $ s $ t) = const"@pttrn" $ s $ t; |
|
107 |
fun pttrns s t = const"@pttrns" $ s $ t; |
|
108 |
||
109 |
fun split2(Abs(x,T,t)) = |
|
110 |
let val (pats,u) = split1 t |
|
111 |
in (pttrns (Free(x,T)) pats, subst_bounds([free x],u)) end |
|
112 |
| split2(Const("split",_) $ r) = |
|
113 |
let val (pats,s) = split2(r) |
|
114 |
val (pats2,t) = split1(s) |
|
115 |
in (pttrns (pttrn pats) pats2, t) end |
|
116 |
and split1(Abs(x,T,t)) = (Free(x,T), subst_bounds([free x],t)) |
|
117 |
| split1(Const("split",_)$t) = split2(t); |
|
118 |
||
119 |
fun split_tr'(t::args) = |
|
120 |
let val (pats,ft) = split2(t) |
|
121 |
in list_comb(const"_lambda" $ pttrn pats $ ft, args) end; |
|
122 |
||
123 |
in |
|
124 |
||
125 |
val print_translation = [("split", split_tr')]; |
|
126 |
||
127 |
end; |
|
128 |
*) |
|
129 |
(*=======*) |
|
1636 | 130 |
|
131 |
ML |
|
132 |
||
133 |
val print_translation = [("Sigma", dependent_tr' ("@Sigma", "@Times"))]; |
|
134 |
||
1660 | 135 |
(*>>>>>>> 1.13*) |