src/HOL/SetInterval.thy
author paulson
Mon, 05 Mar 2001 15:25:11 +0100
changeset 11193 851c90b23a9e
parent 10214 77349ed89f45
child 11609 3f3d1add4d94
permissions -rw-r--r--
reorganization of HOL/UNITY, moving examples to subdirectories Simple and Comp

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