Fix indentation

This commit is contained in:
Cory Balaton 2023-09-26 12:11:40 +02:00
parent 34ff8a6ab9
commit 93d4687b8f
No known key found for this signature in database
GPG Key ID: 3E5FCEBFD80F432B

View File

@ -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);