src/HOL/SetInterval.thy
author wenzelm
Tue, 25 Jul 2000 00:06:46 +0200
changeset 9436 62bb04ab4b01
parent 8957 26b6e8f43305
child 10212 33fe2d701ddd
permissions -rw-r--r--
rearranged setup of arithmetic procedures, avoiding global reference values;

(*  Title:      HOL/SetInterval.thy
    ID:         $Id$
    Author:     Tobias Nipkow
    Copyright   2000  TU Muenchen

lessThan, greaterThan, atLeast, atMost
*)

SetInterval = equalities + Arith + 

constdefs
 lessThan    :: "('a::ord) => 'a set"	("(1{.._'(})")
"{..u(} == {x. x<u}"

 atMost      :: "('a::ord) => 'a set"	("(1{.._})")
"{..u} == {x. x<=u}"

 greaterThan :: "('a::ord) => 'a set"	("(1{')_..})")
"{)l..} == {x. l<x}"

 atLeast     :: "('a::ord) => 'a set"	("(1{_..})")
"{l..} == {x. l<=x}"

end