src/HOL/UNITY/FP.thy
author oheimb
Fri, 11 Dec 1998 18:56:30 +0100
changeset 6027 9dd06eeda95c
parent 5648 fe887910e32e
child 13796 19f50fa807ae
permissions -rw-r--r--
added new print_mode "xsymbols" for extended symbol support (e.g. genuiely long arrows)

(*  Title:      HOL/UNITY/FP
    ID:         $Id$
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
    Copyright   1998  University of Cambridge

Fixed Point of a Program

From Misra, "A Logic for Concurrent Programming", 1994
*)

FP = UNITY +

constdefs

  FP_Orig :: "'a program => 'a set"
    "FP_Orig F == Union{A. ALL B. F : stable (A Int B)}"

  FP :: "'a program => 'a set"
    "FP F == {s. F : stable {s}}"

end