src/HOL/AxClasses/Group/Monoid.thy
author wenzelm
Tue, 27 May 1997 15:45:07 +0200
changeset 3362 0b268cff9344
parent 1247 18b1441fb603
permissions -rw-r--r--
NJ 1.09.2x as factory default!

(*  Title:      Monoid.thy
    ID:         $Id$
    Author:     Markus Wenzel, TU Muenchen
*)

Monoid = Sigs +

(* monoids *)

axclass
  monoid < times, one
  assoc         "(x * y) * z = x * (y * z)"
  left_unit     "1 * x = x"
  right_unit    "x * 1 = x"

end