-
Notifications
You must be signed in to change notification settings - Fork 145
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 guiding center gamma point bug #223
Conversation
Codecov Report
@@ Coverage Diff @@
## develop #223 +/- ##
===========================================
+ Coverage 61.31% 62.05% +0.73%
===========================================
Files 29 29
Lines 17129 17136 +7
===========================================
+ Hits 10503 10634 +131
+ Misses 6626 6502 -124
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks a lot Jonathan!
I just added 2 comments for a leftover print and the corresponding file - could you remove them?
Then I'll approve and merge!
src/disentangle.F90
Outdated
@@ -533,7 +533,8 @@ subroutine internal_find_u_gamma() | |||
|
|||
u_opt_r(:, :) = real(u_matrix_opt(1:ndimwin(1), 1:num_wann, 1), dp) | |||
|
|||
a_matrix_r(:, :) = real(a_matrix(:, :, 1), kind=dp) | |||
write (77, *) size(a_matrix_r, 1), size(a_matrix, 1) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably this write is a leftover?
@@ -0,0 +1 @@ | |||
21 30 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably this file is not needed and can be removed?
Fix guiding center gamma point bug
Fixes issues #222 Also adds regression test for this bug