src/HOL/Gfp.thy
author paulson
Fri, 03 Sep 2004 10:27:05 +0200
changeset 15177 e7616269fdca
parent 15140 322485b816ac
child 15381 780ea4c697f2
permissions -rw-r--r--
new theorem symD
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
15131
c69542757a4d New theory header syntax.
nipkow
parents: 14169
diff changeset
     9
theory Gfp 
15140
322485b816ac import -> imports
nipkow
parents: 15131
diff changeset
    10
imports Lfp
15131
c69542757a4d New theory header syntax.
nipkow
parents: 14169
diff changeset
    11
begin
1558
9c6ebfab4e05 added constdefs section
clasohm
parents: 1475
diff changeset
    12
9c6ebfab4e05 added constdefs section
clasohm
parents: 1475
diff changeset
    13
constdefs
14169
0590de71a016 Converted to new style theories.
skalberg
parents: 8882
diff changeset
    14
  gfp :: "['a set=>'a set] => 'a set"
1558
9c6ebfab4e05 added constdefs section
clasohm
parents: 1475
diff changeset
    15
  "gfp(f) == Union({u. u <= f(u)})"    (*greatest fixed point*)
9c6ebfab4e05 added constdefs section
clasohm
parents: 1475
diff changeset
    16
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    17
end