src/HOL/ex/Rec.thy
author clasohm
Wed, 06 Mar 1996 14:12:24 +0100
changeset 1556 2fd82cec17d4
parent 1476 608483c2122a
permissions -rw-r--r--
added constdefs section
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