ex/rec.thy
author lcp
Tue, 08 Nov 1994 11:21:33 +0100
changeset 166 c59c471126ab
parent 0 7949f97df77a
permissions -rw-r--r--
HOL/ROOT/HOL_dup_cs: removed as obsolete HOL/ROOT: now passes "classical" to Classical_Fun HOL/ROOT: no longer proves rev_cut_eq for hyp_subst_tac

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