Skip to content

Commit 8002aeb

Browse files
committed
Update docs
1 parent bdc9ba6 commit 8002aeb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/module_hsolver/diago_david.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,14 @@ class DiagoDavid : public DiagH<T, Device>
6969
using SPsiFunc = std::function<void(T*, T*, const int, const int, const int)>;
7070

7171
int diag(
72-
const HPsiFunc& hpsi_func, // function void hpsi(T*, T*, const int, const int, const int, const int)
72+
const HPsiFunc& hpsi_func, // function void hpsi(T*, T*, const int, const int)
7373
const SPsiFunc& spsi_func, // function void spsi(T*, T*, const int, const int, const int)
7474
const int ldPsi, // Leading dimension of the psi input
7575
T *psi_in, // Pointer to eigenvectors
7676
Real* eigenvalue_in, // Pointer to store the resulting eigenvalues
7777
const Real david_diag_thr, // Convergence threshold for the Davidson iteration
7878
const int david_maxiter, // Maximum allowed iterations for the Davidson method
79-
const int ntry_max = 5, // Maximum number of diagonalization attempts (default is 5)
79+
const int ntry_max = 5, // Maximum number of diagonalization attempts (5 by default)
8080
const int notconv_max = 0); // Maximum number of allowed non-converged eigenvectors
8181

8282
private:

0 commit comments

Comments
 (0)