]> gitweb.michael.orlitzky.com - numerical-analysis.git/commitdiff
Add FixedVector and Matrix to the compiled modules.
authorMichael Orlitzky <michael@orlitzky.com>
Sun, 3 Feb 2013 20:08:38 +0000 (15:08 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Sun, 3 Feb 2013 20:08:38 +0000 (15:08 -0500)
Update deps for the new modules.

numerical-analysis.cabal

index 0e6412a585415c3d2a7d4134b02595d3c5707e82..85e2a666ab226a0dea0d54c54914d425c3aeceae 100644 (file)
@@ -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/