]> gitweb.michael.orlitzky.com - numerical-analysis.git/blobdiff - numerical-analysis.cabal
src/Integration/Simpson.hs: fix monomorphism restriction warnings.
[numerical-analysis.git] / numerical-analysis.cabal
index 2bc74688ae23cb5bdb010f625204f8bdcfec2b9d..d9bd7ddef3110b698d6b8b8789f90b4cb2478afc 100644 (file)
@@ -17,14 +17,30 @@ description:
 data-files: makefile
 
 library
-  exposed-modules: Integration.Simpson, Integration.Trapezoid,
-    Linear.Iteration, Linear.Matrix, Linear.System, Linear.Vector,
-    Misc, Normed, ODE.IVP, Polynomials.Orthogonal, Roots.Simple,
+  exposed-modules:
+    BigFloat
+    FEM.R1
+    FEM.R1.Example1
+    Integration.Gaussian,
+    Integration.Simpson,
+    Integration.Trapezoid,
+    Linear.Iteration,
+    Linear.Matrix,
+    Linear.QR,
+    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.*
 
@@ -56,7 +72,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.