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

fix bugs in readHmnR.f90 #143

Merged
merged 2 commits into from
Mar 12, 2024
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
4 changes: 2 additions & 2 deletions src/readHmnR.f90
Original file line number Diff line number Diff line change
Expand Up @@ -797,7 +797,7 @@ subroutine readsparse_overlap
1003 continue
close(13)

if (cpuid.eq.0) write(stdout, '(a, i)')' >> Number of non-zeros splen_overlap_input', splen_overlap_input
if (cpuid.eq.0) write(stdout, '(a, i20)')' >> Number of non-zeros splen_overlap_input', splen_overlap_input
if (cpuid.eq.0) write(stdout, '(a)')' >> Sparse overlap matrix reading finished '

return
Expand Down Expand Up @@ -895,7 +895,7 @@ subroutine readsparse_valley_operator
Nrpts_valley=ir

if (cpuid.eq.0) write(stdout, '(a, i6)')' >> Nrpts_valley is ', Nrpts_valley
if (cpuid.eq.0) write(stdout, '(a)')' >> splen_valley_input', splen_valley_input, j
if (cpuid.eq.0) write(stdout, '(a, 2i10)')' >> splen_valley_input', splen_valley_input, j
if (cpuid.eq.0) write(stdout, '(a)')' >> Valley operator reading finished '

return
Expand Down
Loading