author | nipkow |
Fri, 04 Apr 1997 16:33:28 +0200 | |
changeset 2912 | 3fac3e8d5d3e |
parent 0 | a5a9c433f639 |
permissions | -rw-r--r-- |
0 | 1 |
(* Title: HOL/lfp.thy |
2 |
ID: $Id$ |
|
3 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory |
|
4 |
Copyright 1992 University of Cambridge |
|
5 |
||
6 |
The Knaster-Tarski Theorem |
|
7 |
*) |
|
8 |
||
9 |
Lfp = Set + |
|
10 |
consts lfp :: "['a set=>'a set] => 'a set" |
|
11 |
rules |
|
12 |
(*least fixed point*) |
|
13 |
lfp_def "lfp(f) == Inter({u. f(u) <= u})" |
|
14 |
end |