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 17, 2024
1 parent eee763f commit 11e3d42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scikit_tt/solvers/evp.py
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ 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))
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 11e3d42

Please sign in to comment.