Fix indentation
This commit is contained in:
parent
34ff8a6ab9
commit
93d4687b8f
@ -72,7 +72,7 @@ void jacobi_eigensolver(const arma::mat& A,
|
|||||||
|
|
||||||
// Use a do while so that max_offdiag gets a value before doing a comparison
|
// Use a do while so that max_offdiag gets a value before doing a comparison
|
||||||
do {
|
do {
|
||||||
max_offdiag = max_offdiag_symmetric(A_m, k, l);
|
max_offdiag = max_offdiag_symmetric(A_m, k, l);
|
||||||
jacobi_rotate(A_m, R, k, l);
|
jacobi_rotate(A_m, R, k, l);
|
||||||
|
|
||||||
} while (max_offdiag >= eps && ++iterations < maxiter);
|
} while (max_offdiag >= eps && ++iterations < maxiter);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user