]> gitweb.michael.orlitzky.com - numerical-analysis.git/commitdiff
Update ghci/cabal files to load the new module.
authorMichael Orlitzky <michael@orlitzky.com>
Sun, 21 Jul 2013 14:48:47 +0000 (10:48 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Sun, 21 Jul 2013 14:48:47 +0000 (10:48 -0400)
.ghci
numerical-analysis.cabal

diff --git a/.ghci b/.ghci
index 9a6a4d49e0ad05cabb031daa7bb67678d37e20bb..38ef02d38448b4c8288d4e07e0cf592311973257 100644 (file)
--- a/.ghci
+++ b/.ghci
@@ -6,6 +6,7 @@
 :load src/BigFloat.hs
   src/Integration/Simpson.hs
   src/Integration/Trapezoid.hs
+  src/Linear/Iteration.hs
   src/Linear/Matrix.hs
   src/Linear/System.hs
   src/Linear/Vector.hs
@@ -18,6 +19,7 @@
 import BigFloat
 import Integration.Simpson
 import Integration.Trapezoid
+import Linear.Iteration
 import Linear.Matrix
 import Linear.System
 import Linear.Vector
index 0c2c30e6d3d5d96db0125a6c9e4ea88651fc22c2..7f0379c82ed2fa7ac7342605f3f97b96656d11b1 100644 (file)
@@ -18,8 +18,8 @@ data-files: makefile
 
 library
   exposed-modules: Integration.Simpson, Integration.Trapezoid,
-    Linear.Matrix, Linear.System, Linear.Vector, Misc, Normed, ODE.IVP,
-    Roots.Simple, Roots.Fast
+    Linear.Iteration, Linear.Matrix, Linear.System, Linear.Vector,
+    Misc, Normed, ODE.IVP, Roots.Simple, Roots.Fast
 
   build-depends:
     base              >= 3 && < 5,