summaryrefslogtreecommitdiff
path: root/lib/Numeric/LinearAlgebra/Algorithms.hs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Numeric/LinearAlgebra/Algorithms.hs')
-rw-r--r--lib/Numeric/LinearAlgebra/Algorithms.hs4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Numeric/LinearAlgebra/Algorithms.hs b/lib/Numeric/LinearAlgebra/Algorithms.hs
index 0f2ccef..d0f533b 100644
--- a/lib/Numeric/LinearAlgebra/Algorithms.hs
+++ b/lib/Numeric/LinearAlgebra/Algorithms.hs
@@ -129,7 +129,11 @@ instance Field Double where
129 multiply' = multiplyR 129 multiply' = multiplyR
130 130
131instance Field (Complex Double) where 131instance Field (Complex Double) where
132#ifdef NOZGESDD
133 svd' = svdC
134#else
132 svd' = svdCd 135 svd' = svdCd
136#endif
133 thinSVD' = thinSVDCd 137 thinSVD' = thinSVDCd
134 sv' = svC 138 sv' = svC
135 luPacked' = luC 139 luPacked' = luC