diff options
Diffstat (limited to 'packages/base/src/Numeric')
-rw-r--r-- | packages/base/src/Numeric/LinearAlgebra.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/base/src/Numeric/LinearAlgebra.hs b/packages/base/src/Numeric/LinearAlgebra.hs index 2e6b8ca..e899445 100644 --- a/packages/base/src/Numeric/LinearAlgebra.hs +++ b/packages/base/src/Numeric/LinearAlgebra.hs | |||
@@ -77,6 +77,7 @@ module Numeric.LinearAlgebra ( | |||
77 | linearSolveLS, | 77 | linearSolveLS, |
78 | linearSolveSVD, | 78 | linearSolveSVD, |
79 | luSolve, | 79 | luSolve, |
80 | luSolve', | ||
80 | cholSolve, | 81 | cholSolve, |
81 | cgSolve, | 82 | cgSolve, |
82 | cgSolve', | 83 | cgSolve', |
@@ -158,7 +159,7 @@ import Numeric.Vector() | |||
158 | import Internal.Matrix | 159 | import Internal.Matrix |
159 | import Internal.Container hiding ((<>)) | 160 | import Internal.Container hiding ((<>)) |
160 | import Internal.Numeric hiding (mul) | 161 | import Internal.Numeric hiding (mul) |
161 | import Internal.Algorithms hiding (linearSolve,Normed,orth,luPacked',linearSolve') | 162 | import Internal.Algorithms hiding (linearSolve,Normed,orth,luPacked',linearSolve',luSolve') |
162 | import qualified Internal.Algorithms as A | 163 | import qualified Internal.Algorithms as A |
163 | import Internal.Util | 164 | import Internal.Util |
164 | import Internal.Random | 165 | import Internal.Random |