src/HOL/AxClasses/Group/Monoid.thy
author paulson
Wed, 05 Aug 1998 10:57:25 +0200
changeset 5253 82a5ca6290aa
parent 1247 18b1441fb603
permissions -rw-r--r--
New record type of programs

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