From 40d36d56c1320b5ab38841e9e154c4edcbef7d12 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Mon, 4 Feb 2013 20:42:10 -0500 Subject: [PATCH] Fix import and module list names. --- .ghci | 2 ++ numerical-analysis.cabal | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.ghci b/.ghci index 47792b8..2578080 100644 --- a/.ghci +++ b/.ghci @@ -8,6 +8,7 @@ src/Integration/Trapezoid.hs src/Matrix.hs src/Misc.hs + src/Normed.hs src/ODE/IVP.hs src/Roots/Simple.hs src/Vector.hs @@ -21,6 +22,7 @@ import Integration.Simpson import Integration.Trapezoid import Matrix import Misc +import Normed import ODE.IVP import Roots.Simple import Vector diff --git a/numerical-analysis.cabal b/numerical-analysis.cabal index 85e2a66..df2d383 100644 --- a/numerical-analysis.cabal +++ b/numerical-analysis.cabal @@ -16,8 +16,8 @@ description: data-files: makefile library - exposed-modules: Integration.Simpson, Integration.Trapezoid, FixedVector, - Matrix, Misc, ODE.IVP, Roots.Simple, Roots.Fast + exposed-modules: Integration.Simpson, Integration.Trapezoid, Matrix + Misc, Normed, ODE.IVP, Roots.Simple, Roots.Fast, Vector build-depends: base >= 3 && < 5, -- 2.43.2