Skip to content

Commit

Permalink
updated arguments of eigh
Browse files Browse the repository at this point in the history
  • Loading branch information
PGelss authored Jul 24, 2024
1 parent 087fd35 commit 739032e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scikit_tt/solvers/evp.py
Original file line number Diff line number Diff line change
Expand Up @@ -433,8 +433,8 @@ def __update_core(i: int, micro_op: np.ndarray,

if solver == 'eigh':
eigenvalues, eigenvectors = lin.eigh(micro_op, b=micro_op_gevp, overwrite_a=True, overwrite_b=True,
check_finite=False,
eigvals=(micro_op.shape[0] - number_ev, micro_op.shape[0] - 1))
check_finite=False,
subset_by_index=(micro_op.shape[0] - number_ev, micro_op.shape[0] - 1))
eigenvalues = eigenvalues[::-1]
eigenvectors = eigenvectors[:, ::-1]

Expand Down

0 comments on commit 739032e

Please sign in to comment.