X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=numerical-analysis.cabal;h=88455aa6b969bb16ec38bb2517079de432390ea7;hb=b5bc0c0bc71915093d0883e2fd923808ada4db6c;hp=7bd0fb409795c36257f88e0393ecb439b0e298de;hpb=61dcb661ee35ff693a9d64d4d21a65791a480a52;p=numerical-analysis.git diff --git a/numerical-analysis.cabal b/numerical-analysis.cabal index 7bd0fb4..88455aa 100644 --- a/numerical-analysis.cabal +++ b/numerical-analysis.cabal @@ -9,22 +9,22 @@ bug-reports: mailto:michael@orlitzky.com build-type: Simple category: Text synopsis: - A library of numerical analysis functions for UMBC's MATH620. + A library of numerical analysis functions. description: - Haskell implementations of algorithms from UMBC's Numerical - Analysis course, MATH620. + Haskell implementations of algorithms from numerical + analysis. Includes fixed arbitrary-length vectors and + arbitrary-precision real numbers where possible. data-files: makefile library - exposed-modules: Roots.Simple, Roots.Fast + exposed-modules: Integration.Simpson, Integration.Trapezoid, Matrix + Misc, Normed, ODE.IVP, Roots.Simple, Roots.Fast, Vector build-depends: - base == 4.5.*, - HUnit == 1.2.*, - QuickCheck == 2.*, - test-framework == 0.6.*, - test-framework-hunit == 0.2.*, - test-framework-quickcheck2 == 0.2.* + base >= 3 && < 5, + fixed-vector == 0.2.*, + numbers == 3000.1.*, + vector == 0.10.* hs-source-dirs: src/ @@ -52,9 +52,10 @@ test-suite doctests hs-source-dirs: test main-is: Doctests.hs build-depends: - base == 4.5.*, + base >= 3 && < 5, -- Additional test dependencies. - doctest == 0.7.* + doctest == 0.9.*, + filemanip == 0.3.6.* -- It's not entirely clear to me why I have to reproduce all of this. ghc-options: @@ -70,5 +71,5 @@ test-suite doctests source-repository head type: git - location: http://git.michael.orlitzky.com/umbc/math620.git + location: http://michael.orlitzky.com/git/numerical-analysis.git branch: master