src/HOL/RelPow.thy
author paulson
Wed, 19 Jul 2000 12:33:19 +0200
changeset 9391 a6ab3a442da6
parent 8844 db71c334e854
permissions -rw-r--r--
changed / to // for quotienting; general tidying

(*  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 +

instance
  set :: (term) {power}   (* only ('a * 'a) set should be in power! *)

primrec (relpow)
  "R^0 = Id"
  "R^(Suc n) = R O (R^n)"

end