author | wenzelm |
Fri, 06 Oct 2000 17:35:58 +0200 | |
changeset 10168 | 50be659d4222 |
parent 9436 | 62bb04ab4b01 |
permissions | -rw-r--r-- |
923 | 1 |
(* Title: HOL/Univ.thy |
2 |
ID: $Id$ |
|
3 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory |
|
4 |
Copyright 1993 University of Cambridge |
|
5 |
||
7014
11ee650edcd2
Added some definitions and theorems needed for the
berghofe
parents:
5978
diff
changeset
|
6 |
Declares the type ('a, 'b) node, a subtype of (nat=>'b+nat) * ('a+nat) |
923 | 7 |
|
8 |
Defines "Cartesian Product" and "Disjoint Sum" as set operations. |
|
9 |
Could <*> be generalized to a general summation (Sigma)? |
|
10 |
*) |
|
11 |
||
12 |
Univ = Arith + Sum + |
|
13 |
||
7131 | 14 |
|
923 | 15 |
(** lists, trees will be sets of nodes **) |
16 |
||
1475 | 17 |
typedef (Node) |
7014
11ee650edcd2
Added some definitions and theorems needed for the
berghofe
parents:
5978
diff
changeset
|
18 |
('a, 'b) node = "{p. EX f x k. p = (f::nat=>'b+nat, x::'a+nat) & f k = Inr 0}" |
923 | 19 |
|
20 |
types |
|
7014
11ee650edcd2
Added some definitions and theorems needed for the
berghofe
parents:
5978
diff
changeset
|
21 |
'a item = ('a, unit) node set |
11ee650edcd2
Added some definitions and theorems needed for the
berghofe
parents:
5978
diff
changeset
|
22 |
('a, 'b) dtree = ('a, 'b) node set |
923 | 23 |
|
24 |
consts |
|
25 |
apfst :: "['a=>'c, 'a*'b] => 'c*'b" |
|
7014
11ee650edcd2
Added some definitions and theorems needed for the
berghofe
parents:
5978
diff
changeset
|
26 |
Push :: "[('b + nat), nat => ('b + nat)] => (nat => ('b + nat))" |
923 | 27 |
|
7014
11ee650edcd2
Added some definitions and theorems needed for the
berghofe
parents:
5978
diff
changeset
|
28 |
Push_Node :: "[('b + nat), ('a, 'b) node] => ('a, 'b) node" |
11ee650edcd2
Added some definitions and theorems needed for the
berghofe
parents:
5978
diff
changeset
|
29 |
ndepth :: ('a, 'b) node => nat |
923 | 30 |
|
7014
11ee650edcd2
Added some definitions and theorems needed for the
berghofe
parents:
5978
diff
changeset
|
31 |
Atom :: "('a + nat) => ('a, 'b) dtree" |
11ee650edcd2
Added some definitions and theorems needed for the
berghofe
parents:
5978
diff
changeset
|
32 |
Leaf :: 'a => ('a, 'b) dtree |
11ee650edcd2
Added some definitions and theorems needed for the
berghofe
parents:
5978
diff
changeset
|
33 |
Numb :: nat => ('a, 'b) dtree |
11ee650edcd2
Added some definitions and theorems needed for the
berghofe
parents:
5978
diff
changeset
|
34 |
Scons :: [('a, 'b) dtree, ('a, 'b) dtree] => ('a, 'b) dtree |
11ee650edcd2
Added some definitions and theorems needed for the
berghofe
parents:
5978
diff
changeset
|
35 |
In0,In1 :: ('a, 'b) dtree => ('a, 'b) dtree |
923 | 36 |
|
7014
11ee650edcd2
Added some definitions and theorems needed for the
berghofe
parents:
5978
diff
changeset
|
37 |
Lim :: ('b => ('a, 'b) dtree) => ('a, 'b) dtree |
11ee650edcd2
Added some definitions and theorems needed for the
berghofe
parents:
5978
diff
changeset
|
38 |
Funs :: "'u set => ('t => 'u) set" |
923 | 39 |
|
7014
11ee650edcd2
Added some definitions and theorems needed for the
berghofe
parents:
5978
diff
changeset
|
40 |
ntrunc :: [nat, ('a, 'b) dtree] => ('a, 'b) dtree |
11ee650edcd2
Added some definitions and theorems needed for the
berghofe
parents:
5978
diff
changeset
|
41 |
|
7255 | 42 |
uprod :: [('a, 'b) dtree set, ('a, 'b) dtree set]=> ('a, 'b) dtree set |
43 |
usum :: [('a, 'b) dtree set, ('a, 'b) dtree set]=> ('a, 'b) dtree set |
|
923 | 44 |
|
7255 | 45 |
Split :: [[('a, 'b) dtree, ('a, 'b) dtree]=>'c, ('a, 'b) dtree] => 'c |
46 |
Case :: [[('a, 'b) dtree]=>'c, [('a, 'b) dtree]=>'c, ('a, 'b) dtree] => 'c |
|
923 | 47 |
|
7255 | 48 |
dprod :: "[(('a, 'b) dtree * ('a, 'b) dtree)set, (('a, 'b) dtree * ('a, 'b) dtree)set] |
49 |
=> (('a, 'b) dtree * ('a, 'b) dtree)set" |
|
50 |
dsum :: "[(('a, 'b) dtree * ('a, 'b) dtree)set, (('a, 'b) dtree * ('a, 'b) dtree)set] |
|
51 |
=> (('a, 'b) dtree * ('a, 'b) dtree)set" |
|
923 | 52 |
|
3947 | 53 |
|
923 | 54 |
defs |
55 |
||
56 |
Push_Node_def "Push_Node == (%n x. Abs_Node (apfst (Push n) (Rep_Node x)))" |
|
57 |
||
58 |
(*crude "lists" of nats -- needed for the constructions*) |
|
1396 | 59 |
apfst_def "apfst == (%f (x,y). (f(x),y))" |
7014
11ee650edcd2
Added some definitions and theorems needed for the
berghofe
parents:
5978
diff
changeset
|
60 |
Push_def "Push == (%b h. nat_case b h)" |
923 | 61 |
|
62 |
(** operations on S-expressions -- sets of nodes **) |
|
63 |
||
64 |
(*S-expression constructors*) |
|
7014
11ee650edcd2
Added some definitions and theorems needed for the
berghofe
parents:
5978
diff
changeset
|
65 |
Atom_def "Atom == (%x. {Abs_Node((%k. Inr 0, x))})" |
11ee650edcd2
Added some definitions and theorems needed for the
berghofe
parents:
5978
diff
changeset
|
66 |
Scons_def "Scons M N == (Push_Node (Inr 1) `` M) Un (Push_Node (Inr 2) `` N)" |
923 | 67 |
|
68 |
(*Leaf nodes, with arbitrary or nat labels*) |
|
69 |
Leaf_def "Leaf == Atom o Inl" |
|
70 |
Numb_def "Numb == Atom o Inr" |
|
71 |
||
72 |
(*Injections of the "disjoint sum"*) |
|
5191
8ceaa19f7717
Renamed '$' to 'Scons' because of clashes with constants of the same
berghofe
parents:
3947
diff
changeset
|
73 |
In0_def "In0(M) == Scons (Numb 0) M" |
8ceaa19f7717
Renamed '$' to 'Scons' because of clashes with constants of the same
berghofe
parents:
3947
diff
changeset
|
74 |
In1_def "In1(M) == Scons (Numb 1) M" |
923 | 75 |
|
7014
11ee650edcd2
Added some definitions and theorems needed for the
berghofe
parents:
5978
diff
changeset
|
76 |
(*Function spaces*) |
11ee650edcd2
Added some definitions and theorems needed for the
berghofe
parents:
5978
diff
changeset
|
77 |
Lim_def "Lim f == Union {z. ? x. z = Push_Node (Inl x) `` (f x)}" |
11ee650edcd2
Added some definitions and theorems needed for the
berghofe
parents:
5978
diff
changeset
|
78 |
Funs_def "Funs S == {f. range f <= S}" |
11ee650edcd2
Added some definitions and theorems needed for the
berghofe
parents:
5978
diff
changeset
|
79 |
|
923 | 80 |
(*the set of nodes with depth less than k*) |
7014
11ee650edcd2
Added some definitions and theorems needed for the
berghofe
parents:
5978
diff
changeset
|
81 |
ndepth_def "ndepth(n) == (%(f,x). LEAST k. f k = Inr 0) (Rep_Node n)" |
923 | 82 |
ntrunc_def "ntrunc k N == {n. n:N & ndepth(n)<k}" |
83 |
||
84 |
(*products and sums for the "universe"*) |
|
7255 | 85 |
uprod_def "uprod A B == UN x:A. UN y:B. { Scons x y }" |
86 |
usum_def "usum A B == In0``A Un In1``B" |
|
923 | 87 |
|
88 |
(*the corresponding eliminators*) |
|
5191
8ceaa19f7717
Renamed '$' to 'Scons' because of clashes with constants of the same
berghofe
parents:
3947
diff
changeset
|
89 |
Split_def "Split c M == @u. ? x y. M = Scons x y & u = c x y" |
923 | 90 |
|
1151 | 91 |
Case_def "Case c d M == @u. (? x . M = In0(x) & u = c(x)) |
7255 | 92 |
| (? y . M = In1(y) & u = d(y))" |
923 | 93 |
|
94 |
||
5978
fa2c2dd74f8c
moved diag (diagonal relation) from Univ to Relation
paulson
parents:
5191
diff
changeset
|
95 |
(** equality for the "universe" **) |
923 | 96 |
|
7255 | 97 |
dprod_def "dprod r s == UN (x,x'):r. UN (y,y'):s. {(Scons x y, Scons x' y')}" |
923 | 98 |
|
7255 | 99 |
dsum_def "dsum r s == (UN (x,x'):r. {(In0(x),In0(x'))}) Un |
100 |
(UN (y,y'):s. {(In1(y),In1(y'))})" |
|
923 | 101 |
|
102 |
end |