o

tip.lattices

IntervalLattice

object IntervalLattice extends LatticeWithOps

The interval lattice.

Linear Supertypes
LatticeWithOps, Lattice, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. IntervalLattice
  2. LatticeWithOps
  3. Lattice
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type Element = (Num, Num)

    The element of the IntervalLattice.

    The element of the IntervalLattice. An interval of the form (x, y) ranges from x to y (x < y), x and y included. The interval (PInf, MInf) is the canonical empty interval, i.e. the bottom element. The interval (MInf, PInf) is the top element.

    Definition Classes
    IntervalLatticeLattice
  2. case class IntNum(i: Int) extends Num with Product with Serializable
  3. sealed trait Num extends Ordered[Num]

    A Num is an int, +infinity, or -infinity.

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val EmptyInterval: Element
  5. val FullInterval: Element
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. val bottom: Element

    The bottom element of this lattice.

    The bottom element of this lattice.

    Definition Classes
    IntervalLatticeLattice
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @IntrinsicCandidate()
  9. def div(a: Element, b: Element): Element

    Abstract / on intervals.

    Abstract / on intervals.

    Definition Classes
    IntervalLatticeLatticeWithOps
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def eqq(a: Element, b: Element): Element

    Abstract == on intervals;

    Abstract == on intervals;

    Definition Classes
    IntervalLatticeLatticeWithOps
  12. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  13. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  14. def gt(a: Element, b: Element): Element

    Abstract > on intervals;

    Abstract > on intervals;

    Definition Classes
    IntervalLatticeLatticeWithOps
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  16. implicit def int2num(i: Int): IntNum
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. def leq(x: Element, y: Element): Boolean

    Returns true whenever x <= y.

    Returns true whenever x <= y.

    Definition Classes
    Lattice
  19. def lub(x: Element, y: Element): Element

    The least upper bound of x and y.

    The least upper bound of x and y.

    Definition Classes
    IntervalLatticeLattice
  20. def max(s: Set[Num]): Num

    Finds the maximum of the given set of Num values.

  21. def min(s: Set[Num]): Num

    Finds the minimum of the given set of Num values.

  22. def minus(a: Element, b: Element): Element

    Abstract binary - on intervals.

    Abstract binary - on intervals.

    Definition Classes
    IntervalLatticeLatticeWithOps
  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  26. def num(i: Int): Element

    Number as interval.

    Number as interval.

    Definition Classes
    IntervalLatticeLatticeWithOps
  27. def plus(a: Element, b: Element): Element

    Abstract binary + on intervals.

    Abstract binary + on intervals.

    Definition Classes
    IntervalLatticeLatticeWithOps
  28. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  29. def times(a: Element, b: Element): Element

    Abstract * on intervals;

    Abstract * on intervals;

    Definition Classes
    IntervalLatticeLatticeWithOps
  30. def toString(): String
    Definition Classes
    AnyRef → Any
  31. def top: Element

    The top element of this lattice.

    The top element of this lattice. Default: not implemented.

    Definition Classes
    IntervalLatticeLattice
  32. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  34. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. object MInf extends Num with Product with Serializable
  36. object PInf extends Num with Product with Serializable

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from LatticeWithOps

Inherited from Lattice

Inherited from AnyRef

Inherited from Any

Ungrouped