X-Git-Url: http://gitweb.michael.orlitzky.com/?p=numerical-analysis.git;a=blobdiff_plain;f=numerical-analysis.cabal;h=d9bd7ddef3110b698d6b8b8789f90b4cb2478afc;hp=88455aa6b969bb16ec38bb2517079de432390ea7;hb=HEAD;hpb=b5bc0c0bc71915093d0883e2fd923808ada4db6c diff --git a/numerical-analysis.cabal b/numerical-analysis.cabal index 88455aa..b5e4eeb 100644 --- a/numerical-analysis.cabal +++ b/numerical-analysis.cabal @@ -3,7 +3,7 @@ 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 @@ -17,14 +17,32 @@ description: data-files: makefile library - exposed-modules: Integration.Simpson, Integration.Trapezoid, Matrix - Misc, Normed, ODE.IVP, Roots.Simple, Roots.Fast, Vector + 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, - fixed-vector == 0.2.*, - numbers == 3000.1.*, - vector == 0.10.* + fixed-vector == 0.8.*, + numbers == 3000.2.*, + numeric-prelude == 0.4.* hs-source-dirs: src/ @@ -54,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.