]> gitweb.michael.orlitzky.com - numerical-analysis.git/blobdiff - numerical-analysis.cabal
Add FixedVector and Matrix to the compiled modules.
[numerical-analysis.git] / numerical-analysis.cabal
index e08978da2f5c53827524e832f9afc50534c012cf..85e2a666ab226a0dea0d54c54914d425c3aeceae 100644 (file)
@@ -16,17 +16,14 @@ description:
 data-files: makefile
 
 library
-  exposed-modules: Roots.Simple, Roots.Fast
+  exposed-modules: Integration.Simpson, Integration.Trapezoid, FixedVector,
+    Matrix, Misc, ODE.IVP, Roots.Simple, Roots.Fast
 
   build-depends:
-    base                        == 4.5.*,
-    numbers                     == 3000.1.*,
-    -- Test deps
-    HUnit                       == 1.2.*,
-    QuickCheck                  == 2.*,
-    test-framework              == 0.6.*,
-    test-framework-hunit        == 0.2.*,
-    test-framework-quickcheck2  == 0.2.*
+    base              >= 3 && < 5,
+    fixed-vector      == 0.1.*,
+    numbers           == 3000.1.*,
+    vector            == 0.10.*
 
   hs-source-dirs:
     src/
@@ -54,8 +51,7 @@ test-suite doctests
   hs-source-dirs: test
   main-is: Doctests.hs
   build-depends:
-    base      == 4.5.*,
-    numbers   == 3000.1.*,
+    base      >= 3 && < 5,
     -- Additional test dependencies.
     doctest   == 0.9.*,
     filemanip == 0.3.6.*