src/HOL/AxClasses/Semigroups.thy
author paulson
Wed, 10 Jan 2001 11:00:17 +0100
changeset 10840 28a53b68a8c0
parent 10681 ec76e17f73c5
child 12338 de0f4a63baa5
permissions -rw-r--r--
fixed the treatment of Rules and Sets

(*  Title:      HOL/AxClasses/Semigroups.thy
    ID:         $Id$
    Author:     Markus Wenzel, TU Muenchen
    License:    GPL (GNU GENERAL PUBLIC LICENSE)
*)

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