X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=numerical-analysis.cabal;h=d9bd7ddef3110b698d6b8b8789f90b4cb2478afc;hb=84bf90406341348a41c7cc57c3d365238690a930;hp=0c2c30e6d3d5d96db0125a6c9e4ea88651fc22c2;hpb=04f56a8882bb0c574b603f8c3fed9481ea934f7f;p=numerical-analysis.git diff --git a/numerical-analysis.cabal b/numerical-analysis.cabal index 0c2c30e..d9bd7dd 100644 --- a/numerical-analysis.cabal +++ b/numerical-analysis.cabal @@ -17,14 +17,31 @@ description: data-files: makefile library - exposed-modules: Integration.Simpson, Integration.Trapezoid, - Linear.Matrix, Linear.System, Linear.Vector, Misc, Normed, 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, - fixed-vector == 0.4.*, - numbers == 3000.1.*, + fixed-vector == 0.8.*, + numbers == 3000.2.*, numeric-prelude == 0.4.* hs-source-dirs: @@ -55,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.