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

Rec = Fixedpt +
consts
fix     :: ('a=>'a) => 'a
Dom     :: (('a=>'b) => ('a=>'b)) => 'a set
Domf    :: (('a=>'b) => ('a=>'b)) => 'a set => 'a set
rules
Domf_def "Domf(F,D) == {y . !f g. (!x:D. f(x)=g(x)) --> F(f,y)=F(g,y)}"
Dom_def  "Dom(F) == lfp(Domf(F))"
end