src/HOL/SetInterval.thy
author nipkow
Mon, 06 Aug 2001 13:43:24 +0200
changeset 11464 ddea204de5bc
parent 10214 77349ed89f45
child 11609 3f3d1add4d94
permissions -rw-r--r--
turned translation for 1::nat into def. introduced 1' and replaced most occurrences of 1 by 1'.

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

lessThan, greaterThan, atLeast, atMost
*)

SetInterval = equalities + NatArith + 

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