src/LCF/ex/Ex2.thy
author wenzelm
Mon, 29 Nov 1999 15:52:49 +0100
changeset 8039 a901bafe4578
parent 4905 be73ddff6c5a
child 17248 81bf91654e73
permissions -rw-r--r--
Goal: tuned pris;


(***  Example 3.8  ***)

Ex2 = LCF +

consts
  P	:: "'a => tr"
  F	:: "'a => 'a"
  G	:: "'a => 'a"
  H	:: "'a => 'b => 'b"
  K	:: "('a => 'b => 'b) => ('a => 'b => 'b)"

rules
  F_strict	"F(UU) = UU"
  K		"K = (%h x y. P(x) => y | F(h(G(x),y)))"
  H		"H = FIX(K)"

end