Fix indentation

This commit is contained in:
2023-09-26 12:11:40 +02:00
parent 34ff8a6ab9
commit 93d4687b8f

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
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);
} while (max_offdiag >= eps && ++iterations < maxiter);