From: Michael Orlitzky Date: Sun, 3 Feb 2013 20:08:38 +0000 (-0500) Subject: Add FixedVector and Matrix to the compiled modules. X-Git-Url: http://gitweb.michael.orlitzky.com/?p=numerical-analysis.git;a=commitdiff_plain;h=6cef8c88b8d81e08790d3222c3745b7cb8a54cb4 Add FixedVector and Matrix to the compiled modules. Update deps for the new modules. --- diff --git a/numerical-analysis.cabal b/numerical-analysis.cabal index 0e6412a..85e2a66 100644 --- a/numerical-analysis.cabal +++ b/numerical-analysis.cabal @@ -16,12 +16,14 @@ description: data-files: makefile library - exposed-modules: Integration.Simpson, Integration.Trapezoid, - Misc, ODE.IVP, Roots.Simple, Roots.Fast + exposed-modules: Integration.Simpson, Integration.Trapezoid, FixedVector, + Matrix, Misc, ODE.IVP, Roots.Simple, Roots.Fast build-depends: - base >= 3 && < 5, - numbers == 3000.1.* + base >= 3 && < 5, + fixed-vector == 0.1.*, + numbers == 3000.1.*, + vector == 0.10.* hs-source-dirs: src/