packages feed

roots-0.1: roots.cabal

name:                   roots
version:                0.1
stability:              experimental

cabal-version:          >= 1.6
build-type:             Simple

author:                 James Cook <mokus@deepbondi.net>
maintainer:             James Cook <mokus@deepbondi.net>
license:                PublicDomain
homepage:               /dev/null

category:               Math, Numerical
synopsis:               Root-finding algorithms (1-dimensional)
description:            Framework for and a few implementations of
                        (1-dimensional) numerical root-finding algorithms.

tested-with:            GHC == 6.8.3,
                        GHC == 6.10.4,
                        GHC == 6.12.1, GHC == 6.12.3

source-repository head
  type: darcs
  location: http://code.haskell.org/~mokus/roots

Library
  ghc-options:          -Wall
  hs-source-dirs:       src
  exposed-modules:      Math.Root.Bracket
                        Math.Root.Finder
                        Math.Root.Finder.Bisection
                        Math.Root.Finder.Brent
                        Math.Root.Finder.Dekker
                        Math.Root.Finder.FalsePosition
                        Math.Root.Finder.InverseQuadratic
                        Math.Root.Finder.Newton
                        Math.Root.Finder.Ridders
                        Math.Root.Finder.Secant
                        
  build-depends:        base >= 3 && <5, tagged