src/HOL/Gfp.thy
author clasohm
Mon, 05 Feb 1996 21:29:06 +0100
changeset 1476 608483c2122a
parent 1475 7f5a4cd08209
child 1558 9c6ebfab4e05
permissions -rw-r--r--
expanded tabs; incorporated Konrad's changes

(*  Title:      HOL/gfp.thy
    ID:         $Id$
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
    Copyright   1994  University of Cambridge

Greatest fixed points (requires Lfp too!)
*)

Gfp = Lfp +
consts gfp :: ['a set=>'a set] => 'a set
defs
 (*greatest fixed point*)
 gfp_def "gfp(f) == Union({u. u <= f(u)})"
end