| author | wenzelm | 
| Wed, 18 Oct 2000 23:26:42 +0200 | |
| changeset 10246 | d8c968e6329a | 
| parent 10134 | 537206cc738f | 
| child 10681 | ec76e17f73c5 | 
| permissions | -rw-r--r-- | 
(* Title: HOL/AxClasses/Semigroups.thy ID: $Id$ Author: Markus Wenzel, TU Muenchen *) theory Semigroups = Main: consts times :: "'a => 'a => 'a" (infixl "[*]" 70) axclass semigroup < "term" assoc: "(x [*] y) [*] z = x [*] (y [*] z)" consts plus :: "'a => 'a => 'a" (infixl "[+]" 70) axclass plus_semigroup < "term" assoc: "(x [+] y) [+] z = x [+] (y [+] z)" end