src/HOL/ex/Rec.thy
author paulson
Thu, 18 Jan 1996 10:38:29 +0100
changeset 1444 23ceb1dc9755
parent 1376 92f83b9d17e1
child 1476 608483c2122a
permissions -rw-r--r--
trivial updates
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
1376
92f83b9d17e1 removed quotes from consts and syntax sections
clasohm
parents: 969
diff changeset
     3
fix	:: ('a=>'a) => 'a
92f83b9d17e1 removed quotes from consts and syntax sections
clasohm
parents: 969
diff changeset
     4
Dom	:: (('a=>'b) => ('a=>'b)) => 'a set
92f83b9d17e1 removed quotes from consts and syntax sections
clasohm
parents: 969
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