src/HOL/AxClasses/Product.thy
author wenzelm
Thu, 03 Jul 2008 19:17:29 +0200
changeset 27477 c64736fe2a1f
parent 16417 9bc16273c2d4
permissions -rw-r--r--
more precise dependencies for HOL-Word and HOL-NSA;

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

theory Product imports Main begin

axclass product < type

consts
  product :: "'a::product => 'a => 'a"    (infixl "[*]" 70)


instance bool :: product
  by intro_classes

defs (overloaded)
  product_bool_def: "x [*] y == x & y"

end