src/HOLCF/ex/Fix2.thy
author wenzelm
Thu, 23 Oct 1997 12:13:15 +0200
changeset 3975 ddeb5a0fd08d
parent 2570 24d7e8fb8261
child 10835 f4745d77e620
permissions -rw-r--r--
hide id, stamps; added stamp_names_of, name_of; replaced make_draft by prep_ext; improved print_sg; tuned;

(*  Title:      HOLCF/ex/Fix2.thy
    ID:         $Id$
    Author:     Franz Regensburger
    Copyright   1995 Technische Universitaet Muenchen

 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