ex/LexProd.thy
author nipkow
Wed, 31 Aug 1994 16:25:19 +0200
changeset 132 47be9d22a0d6
parent 0 7949f97df77a
child 249 492493334e0f
permissions -rw-r--r--
Renamed a few types and vars

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