src/HOLCF/ex/Fix2.thy
author kleing
Fri, 27 May 2005 01:09:44 +0200
changeset 16095 f6af6b265d20
parent 14981 e73f8140af78
child 17291 94f6113fe9ed
permissions -rw-r--r--
put global isatest settings in one file, sourced by the other scripts

(*  Title:      HOLCF/ex/Fix2.thy
    ID:         $Id$
    Author:     Franz Regensburger

Show that fix is the unique least fixed-point operator. 
From axioms gix1_def,gix2_def it follows that fix = gix
*)

Fix2 = Fix + 

consts

     gix     :: "('a->'a)->'a"

rules

gix1_def "F$(gix$F) = gix$F"
gix2_def "F$y=y ==> gix$F << y"

end