Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

warning uses unexisting variable #880

Merged
merged 1 commit into from
Sep 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/postprocess/band_structure.jl
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
eigres = diagonalize_all_kblocks(eigensolver, ham, n_bands + 3;
n_conv_check=n_bands, tol, show_progress, kwargs...)
if !eigres.converged
@warn "Eigensolver not converged" n_iter=band_data.n_iter
@warn "Eigensolver not converged" n_iter=eigres.n_iter

Check warning on line 98 in src/postprocess/band_structure.jl

View check run for this annotation

Codecov / codecov/patch

src/postprocess/band_structure.jl#L98

Added line #L98 was not covered by tests
end
merge((; basis=bs_basis), select_eigenpairs_all_kblocks(eigres, 1:n_bands))
end
Expand Down
Loading