src/HOL/ex/Rec.thy
author clasohm
Wed, 21 Jun 1995 15:47:10 +0200
changeset 1151 c820b3cc3df0
parent 969 b051e2fc2e34
child 1376 92f83b9d17e1
permissions -rw-r--r--
removed \...\ inside strings
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
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
     3
fix	:: "('a=>'a) => 'a"
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
     4
Dom	:: "(('a=>'b) => ('a=>'b)) => 'a set"
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
     5
Domf	:: "(('a=>'b) => ('a=>'b)) => 'a set => 'a set"
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