src/HOL/AxClasses/Tutorial/Xor.thy
author wenzelm
Fri, 21 Nov 1997 15:29:56 +0100
changeset 4271 3a82492e70c5
parent 2907 0e272e4c7cb2
permissions -rw-r--r--
changed Pure/Sequence interface -- isatool fixseq;

(*  Title:      HOL/AxClasses/Tutorial/Xor.thy
    ID:         $Id$
    Author:     Markus Wenzel, TU Muenchen

Define overloaded constants "<*>", "inverse", "1" on type "bool".
*)

Xor = Group +

defs
  prod_bool_def     "x <*> y   == x ~= (y::bool)"
  inverse_bool_def  "inverse x == x::bool"
  unit_bool_def     "1         == False"

end