Skip to content

Commit

Permalink
minor update
Browse files Browse the repository at this point in the history
  • Loading branch information
j-otsuki committed Sep 10, 2024
1 parent 8182d52 commit bc190ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/dcore/impurity_solvers/scipy_sparse.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def solve(self, rot, mpirun_command, params_kw):
# parameters from input
n_eigen = params_kw.get('n_eigen', 10) # number of eigenstates to be computed
dim_full_diag = params_kw.get('dim_full_diag', 1000)
ncv = params_kw.get('ncv', 100)
ncv = params_kw.get('ncv', None)
# np = params_kw.get('np', 1) # MPI
gf_solver = params_kw.get('gf_solver', 'bicgstab')
# gf_rtol = params_kw.get('gf_rtol', 1e-5)
Expand Down
3 changes: 1 addition & 2 deletions src/dcore/impurity_solvers/scipy_sparse_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
import time
from itertools import product
from collections import namedtuple
# from .lanczos import LanczosEigenSolver
from dcore.impurity_solvers.lanczos import LanczosEigenSolver
# from dcore.impurity_solvers.lanczos import LanczosEigenSolver


# Sparse solvers for linear equations
Expand Down

0 comments on commit bc190ca

Please sign in to comment.