src/HOL/RelPow.thy
author clasohm
Mon, 19 Feb 1996 13:54:15 +0100
changeset 1514 3e262b1c0b6c
parent 1496 c443b2adaf52
child 1824 44254696843a
permissions -rw-r--r--
fixed bug in init_data (put was only invoked for the first date)

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

consts
  "^" :: "('a * 'a) set => nat => ('a * 'a) set" (infixr 100)
defs
  rel_pow_def "R^n == nat_rec n id (%m S. R O S)"
end