src/HOL/AxClasses/Tutorial/Xor.thy
author oheimb
Mon, 03 Jan 2000 14:07:10 +0100
changeset 8083 f0d4165bc534
parent 2907 0e272e4c7cb2
permissions -rw-r--r--
removed inj_eq from the default simpset again

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