src/HOL/RelPow.thy
author paulson
Tue, 16 Jul 1996 15:49:46 +0200
changeset 1868 836950047d85
parent 1824 44254696843a
child 2740 2c549ae2563b
permissions -rw-r--r--
Put in minimal simpset to avoid excessive simplification, just as in revision 1.9 of HOL/indrule.ML

(*  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 id (%m S. R O S) n"
end