src/ZF/Trancl.thy
author paulson
Mon, 16 Dec 1996 10:40:14 +0100
changeset 2414 13df7d6c5c3b
parent 1478 2b8c2a7547ab
child 2469 b50b8c0eec01
permissions -rw-r--r--
intro_tacsf: replaced ORELSE by APPEND in order to stop errors that arise when unconstrained equalities appear in the premises. Could cause runtimes to increase...

(*  Title:      ZF/trancl.thy
    ID:         $Id$
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
    Copyright   1992  University of Cambridge

Transitive closure of a relation
*)

Trancl = Fixedpt + Perm + "mono" + Rel + 
consts
    rtrancl :: i=>i  ("(_^*)" [100] 100)  (*refl/transitive closure*)
    trancl  :: i=>i  ("(_^+)" [100] 100)  (*transitive closure*)

defs
    rtrancl_def "r^* == lfp(field(r)*field(r), %s. id(field(r)) Un (r O s))"
    trancl_def  "r^+ == r O r^*"
end