]> gitweb.michael.orlitzky.com - numerical-analysis.git/blobdiff - numerical-analysis.cabal
Get determinants working.
[numerical-analysis.git] / numerical-analysis.cabal
index 0e6412a585415c3d2a7d4134b02595d3c5707e82..e459791a107b894a9475d99e0e4477b8e48959ae 100644 (file)
@@ -9,19 +9,23 @@ bug-reports:    mailto:michael@orlitzky.com
 build-type:     Simple
 category: Text
 synopsis:
-  A library of numerical analysis functions for UMBC's MATH620.
+  A library of numerical analysis functions.
 description:
-  Haskell implementations of algorithms from UMBC's Numerical
-  Analysis course, MATH620.
+  Haskell implementations of algorithms from numerical
+  analysis. Includes fixed arbitrary-length vectors and
+  arbitrary-precision real numbers where possible.
 data-files: makefile
 
 library
   exposed-modules: Integration.Simpson, Integration.Trapezoid,
-    Misc, ODE.IVP, Roots.Simple, Roots.Fast
+    Linear.Matrix, Linear.System, Linear.Vector, Misc, Normed, ODE.IVP,
+    Roots.Simple, Roots.Fast
 
   build-depends:
-    base                        >= 3 && < 5,
-    numbers                     == 3000.1.*
+    base              >= 3 && < 5,
+    fixed-vector      == 0.2.*,
+    numbers           == 3000.1.*,
+    numeric-prelude   == 0.3.*
 
   hs-source-dirs:
     src/
@@ -68,5 +72,5 @@ test-suite doctests
 
 source-repository head
   type: git
-  location: http://git.michael.orlitzky.com/umbc/math620.git
+  location: http://michael.orlitzky.com/git/numerical-analysis.git
   branch: master