src/HOL/Gfp.thy
author berghofe
Fri, 09 Jul 2004 16:29:10 +0200
changeset 15030 1be2cce95318
parent 14169 0590de71a016
child 15131 c69542757a4d
permissions -rw-r--r--
- Expressed infer_derivs' in terms of infer_deriv - Eta-expanded function instantiate to delay evaluation (avoids inefficiencies when proof terms are switched off)

(*  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!)
*)

theory Gfp = Lfp:

constdefs
  gfp :: "['a set=>'a set] => 'a set"
  "gfp(f) == Union({u. u <= f(u)})"    (*greatest fixed point*)

end