Commit e4b392f1 authored by Davis King's avatar Davis King

Changed code to avoid compile time bug.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403830
parent 6f55c648
...@@ -1456,7 +1456,7 @@ convergence: ...@@ -1456,7 +1456,7 @@ convergence:
COMPILE_TIME_ASSERT(NC == 0 || wN == 0 || NC == wN); COMPILE_TIME_ASSERT(NC == 0 || wN == 0 || NC == wN);
COMPILE_TIME_ASSERT(NC == 0 || vN == 0 || NC == vN); COMPILE_TIME_ASSERT(NC == 0 || vN == 0 || NC == vN);
matrix<T,matrix_exp<EXP>::NC,1,MM1> W; matrix<T,matrix_exp<EXP>::NC,1,MM1, L1> W;
svd3(m,u,W,v); svd3(m,u,W,v);
w = diagm(W); w = diagm(W);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment