src/HOL/AxClasses/Group/Monoid.thy
author clasohm
Tue, 21 Nov 1995 13:46:47 +0100
changeset 1357 dac9989eb88f
parent 1247 18b1441fb603
permissions -rw-r--r--
replaced exit_use by exit_use_dir

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