X-Git-Url: http://gitweb.michael.orlitzky.com/?p=numerical-analysis.git;a=blobdiff_plain;f=numerical-analysis.cabal;h=e459791a107b894a9475d99e0e4477b8e48959ae;hp=708644fbcd0ee4169a3daeabebc5470f8b8cb574;hb=c22f72ffaa4edec587b28a7c22aa07330349fd73;hpb=898622d362b9dad42296af6298e20bc9f8410b63 diff --git a/numerical-analysis.cabal b/numerical-analysis.cabal index 708644f..e459791 100644 --- a/numerical-analysis.cabal +++ b/numerical-analysis.cabal @@ -9,22 +9,23 @@ 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 + exposed-modules: Integration.Simpson, Integration.Trapezoid, + Linear.Matrix, Linear.System, Linear.Vector, Misc, Normed, ODE.IVP, + Roots.Simple, Roots.Fast 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.*, + numeric-prelude == 0.3.* hs-source-dirs: src/ @@ -52,9 +53,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 +72,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