Commit ad64c286 authored by Davis King's avatar Davis King
Browse files

Fixed the code so that it works properly with the new row vector

range() rather than the previous column vector range().

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%402901
parent aa76eec3
...@@ -111,7 +111,7 @@ namespace dlib ...@@ -111,7 +111,7 @@ namespace dlib
// Use a "left-looking", dot-product, Crout/Doolittle algorithm. // Use a "left-looking", dot-product, Crout/Doolittle algorithm.
piv = range(0,m-1); piv = trans(range(0,m-1));
pivsign = 1; pivsign = 1;
column_vector_type LUcolj(m); column_vector_type LUcolj(m);
......
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