X-Git-Url: http://gitweb.michael.orlitzky.com/?p=numerical-analysis.git;a=blobdiff_plain;f=numerical-analysis.cabal;h=d9bd7ddef3110b698d6b8b8789f90b4cb2478afc;hp=0e6412a585415c3d2a7d4134b02595d3c5707e82;hb=HEAD;hpb=764b157fb65e4973a6830530e88dd1055a6da718 diff --git a/numerical-analysis.cabal b/numerical-analysis.cabal index 0e6412a..b5e4eeb 100644 --- a/numerical-analysis.cabal +++ b/numerical-analysis.cabal @@ -3,25 +3,46 @@ version: 0.0.0 cabal-version: >= 1.8 author: Michael Orlitzky maintainer: Michael Orlitzky -license: GPL-3 +license: AGPL-3.0-or-later license-file: doc/LICENSE 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, - Misc, ODE.IVP, Roots.Simple, Roots.Fast + exposed-modules: + BigFloat + FEM.R1 + FEM.R1.Example1 + Integration.Gaussian, + Integration.Simpson, + Integration.Trapezoid, + Linear.Iteration, + Linear.Matrix, + Linear.QR, + Linear.System, + Linear.Vector, + Misc, + Naturals, + Normed, + ODE.IVP, + Piecewise, + Polynomials.Orthogonal, + Roots.Simple, + Roots.Fast build-depends: - base >= 3 && < 5, - numbers == 3000.1.* + base >= 3 && < 5, + fixed-vector == 0.8.*, + numbers == 3000.2.*, + numeric-prelude == 0.4.* hs-source-dirs: src/ @@ -51,7 +72,7 @@ test-suite doctests build-depends: base >= 3 && < 5, -- Additional test dependencies. - doctest == 0.9.*, + doctest == 0.*, filemanip == 0.3.6.* -- It's not entirely clear to me why I have to reproduce all of this. @@ -68,5 +89,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