| author | webertj |
| Wed, 10 Mar 2004 22:33:48 +0100 | |
| changeset 14456 | cca28ec5f9a6 |
| parent 14169 | 0590de71a016 |
| child 15131 | c69542757a4d |
| permissions | -rw-r--r-- |
| 1475 | 1 |
(* Title: HOL/Lfp.thy |
| 923 | 2 |
ID: $Id$ |
| 1475 | 3 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory |
| 923 | 4 |
Copyright 1992 University of Cambridge |
5 |
||
6 |
The Knaster-Tarski Theorem |
|
7 |
*) |
|
8 |
||
| 14169 | 9 |
theory Lfp = Product_Type: |
| 1558 | 10 |
|
11 |
constdefs |
|
| 14169 | 12 |
lfp :: "['a set \<Rightarrow> 'a set] \<Rightarrow> 'a set" |
| 1558 | 13 |
"lfp(f) == Inter({u. f(u) <= u})" (*least fixed point*)
|
14 |
||
| 923 | 15 |
end |