X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=numerical-analysis.cabal;h=61be5c1332b1f04d0d3c736072faa2fb6300566b;hb=35f07ef15c0c2f1198788f0a2f931fb7f3291f18;hp=fe47eadb0c46d0b13b44e96653384f8132773a5c;hpb=e01a21693319ed1bf888d543caf817e1c803a88b;p=numerical-analysis.git diff --git a/numerical-analysis.cabal b/numerical-analysis.cabal index fe47ead..61be5c1 100644 --- a/numerical-analysis.cabal +++ b/numerical-analysis.cabal @@ -18,6 +18,9 @@ data-files: makefile library exposed-modules: + FEM.R1 + FEM.R1.Example1 + Integration.Gaussian, Integration.Simpson, Integration.Trapezoid, Linear.Iteration, @@ -26,15 +29,17 @@ library Linear.System, Linear.Vector, Misc, + Naturals, Normed, ODE.IVP, + Piecewise, Polynomials.Orthogonal, Roots.Simple, Roots.Fast build-depends: base >= 3 && < 5, - fixed-vector == 0.6.*, + fixed-vector == 0.8.*, numbers == 3000.2.*, numeric-prelude == 0.4.* @@ -66,7 +71,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.