src/HOL/ex/Rec.thy
author paulson
Fri, 29 Mar 1996 13:19:01 +0100
changeset 1633 9cb70937b426
parent 1476 608483c2122a
permissions -rw-r--r--
Simplified proof of tiling_UnI
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
     1
Rec = Fixedpt +
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
     2
consts
1476
608483c2122a expanded tabs; incorporated Konrad's changes
clasohm
parents: 1376
diff changeset
     3
fix     :: ('a=>'a) => 'a
608483c2122a expanded tabs; incorporated Konrad's changes
clasohm
parents: 1376
diff changeset
     4
Dom     :: (('a=>'b) => ('a=>'b)) => 'a set
608483c2122a expanded tabs; incorporated Konrad's changes
clasohm
parents: 1376
diff changeset
     5
Domf    :: (('a=>'b) => ('a=>'b)) => 'a set => 'a set
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
     6
rules
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
     7
Domf_def "Domf(F,D) == {y . !f g. (!x:D. f(x)=g(x)) --> F(f,y)=F(g,y)}"
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
     8
Dom_def  "Dom(F) == lfp(Domf(F))"
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
     9
end