packages feed

intervals-0.1.2: intervals.cabal

Name:              intervals
Version:           0.1.2
Synopsis:          Interval Arithmetic
Description:
    A 'Numeric.Interval.Interval' is a closed, convex set of floating point values.
    .
    This package is careful to manage the rounding direction of each floating point
    operation to ensure that the resulting interval is conservative. Effectively the lower bound of each computation is always rounded down, and the upper bound is rounded up.

Homepage:          http://patch-tag.com/r/ekmett/intervals
License:           BSD3
License-file:      LICENSE
Author:            Edward Kmett
Maintainer:        ekmett@gmail.com
Category:          Math
Build-type:        Simple
Cabal-version:     >=1.6

Library
  Exposed-modules: Numeric.Interval
  Build-depends:   base >= 4 && < 5,
                   array >= 0.3.0 && < 0.4,
                   numeric-extras >= 0.0.1 && < 0.1,
                   rounding >= 0.3.0 && < 0.4
  GHC-Options:     -Wall