src/HOL/ex/LexProd.thy
author paulson
Mon, 14 Aug 1995 13:42:27 +0200
changeset 1228 7d6b0241afab
parent 1151 c820b3cc3df0
child 1476 608483c2122a
permissions -rw-r--r--
updated version number to revision 4

(*  Title: 	HOL/ex/lex-prod.thy
    ID:         $Id$
    Author: 	Tobias Nipkow, TU Munich
    Copyright   1993  TU Munich

The lexicographic product of two relations.
*)

LexProd = WF + Prod +
consts "**" :: "[('a*'a)set, ('b*'b)set] => (('a*'b)*('a*'b))set" (infixl 70)
rules
lex_prod_def "ra**rb == {p. ? a a' b b'. 
	p = ((a,b),(a',b')) & ((a,a') : ra | a=a' & (b,b') : rb)}"
end