Skip to content
Snippets Groups Projects
Commit 7de51a3d authored by Tom Fischer's avatar Tom Fischer Committed by Dmitri Naumov
Browse files

Reformatting.

parent fe8f6532
No related branches found
No related tags found
No related merge requests found
......@@ -37,7 +37,8 @@ GaussAlgorithm<MAT_T, typename MAT_T::FP_T*>::GaussAlgorithm (MAT_T &A) :
// exchange rows
if (_perm[k] != k) {
for (j=0; j<nc; j++) std::swap (_mat(_perm[k],j), _mat(k,j));
for (j=0; j<nc; j++)
std::swap (_mat(_perm[k],j), _mat(k,j));
}
// eliminate
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment