src/HOL/AxClasses/Product.thy
author nipkow
Tue, 17 Oct 2000 08:00:46 +0200
changeset 10228 e653cb933293
parent 10134 537206cc738f
child 10681 ec76e17f73c5
permissions -rw-r--r--
added intermediate value thms

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

theory Product = Main:

axclass product < "term"

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


instance bool :: product
  by intro_classes

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

end