X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=numerical-analysis.cabal;h=7f0379c82ed2fa7ac7342605f3f97b96656d11b1;hb=eb2fb001d7b7a7769844b6e5c3623e7501a7ac12;hp=85e2a666ab226a0dea0d54c54914d425c3aeceae;hpb=6cef8c88b8d81e08790d3222c3745b7cb8a54cb4;p=numerical-analysis.git diff --git a/numerical-analysis.cabal b/numerical-analysis.cabal index 85e2a66..7f0379c 100644 --- a/numerical-analysis.cabal +++ b/numerical-analysis.cabal @@ -9,21 +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: Integration.Simpson, Integration.Trapezoid, FixedVector, - Matrix, Misc, ODE.IVP, Roots.Simple, Roots.Fast + exposed-modules: Integration.Simpson, Integration.Trapezoid, + Linear.Iteration, Linear.Matrix, Linear.System, Linear.Vector, + Misc, Normed, ODE.IVP, Roots.Simple, Roots.Fast build-depends: base >= 3 && < 5, - fixed-vector == 0.1.*, + fixed-vector == 0.4.*, numbers == 3000.1.*, - vector == 0.10.* + numeric-prelude == 0.4.* hs-source-dirs: src/ @@ -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