src/HOL/Gfp.thy
author paulson
Fri, 29 Nov 1996 18:03:21 +0100
changeset 2284 80ebd1a213fd
parent 1558 9c6ebfab4e05
child 3947 eb707467f8c5
permissions -rw-r--r--
Swapped arguments of Crypt (for clarity and because it is conventional)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1370
diff changeset
     1
(*  Title:      HOL/gfp.thy
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     2
    ID:         $Id$
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1370
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     4
    Copyright   1994  University of Cambridge
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     5
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     6
Greatest fixed points (requires Lfp too!)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     7
*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     8
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     9
Gfp = Lfp +
1558
9c6ebfab4e05 added constdefs section
clasohm
parents: 1475
diff changeset
    10
9c6ebfab4e05 added constdefs section
clasohm
parents: 1475
diff changeset
    11
constdefs
9c6ebfab4e05 added constdefs section
clasohm
parents: 1475
diff changeset
    12
  gfp :: ['a set=>'a set] => 'a set
9c6ebfab4e05 added constdefs section
clasohm
parents: 1475
diff changeset
    13
  "gfp(f) == Union({u. u <= f(u)})"    (*greatest fixed point*)
9c6ebfab4e05 added constdefs section
clasohm
parents: 1475
diff changeset
    14
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    15
end