src/HOL/RelPow.thy
author paulson
Fri, 19 Sep 1997 16:12:21 +0200
changeset 3685 5b8c0c8f576e
parent 3370 5c5fdce3a4e4
child 5183 89f162de39cf
permissions -rw-r--r--
Full version of TLS including session resumption, but no Oops

(*  Title:      HOL/RelPow.thy
    ID:         $Id$
    Author:     Tobias Nipkow
    Copyright   1996  TU Muenchen

R^n = R O ... O R, the n-fold composition of R
*)

RelPow = Nat +

primrec "op ^" nat
  "R^0 = id"
  "R^(Suc n) = R O (R^n)"

end