-
Notifications
You must be signed in to change notification settings - Fork 188
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
Max cut #3053
Max cut #3053
Conversation
Codecov Report
@@ Coverage Diff @@
## python #3053 +/- ##
======================================
- Coverage 82% 82% -1%
======================================
Files 529 529
Lines 26086 26072 -14
======================================
- Hits 21445 21432 -13
+ Misses 4641 4640 -1
Continue to review full report at Codecov.
|
we should probably deactivate this clang-tidy warning... |
I think the point is valid. |
LGTM, except one doxygen thing
Please add doxygen for range |
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.
bors r+
@RudolfWeeber there is a merge conflict, |
Canceled |
bors retry |
3053: Max cut r=RudolfWeeber a=fweik Description of changes: - Replaced some globals related to cutoff calculation - Store range limits in cell_structure - Consistently use `INACTIVE_CUTOFF`/`-1.` for cutoffs of disabled kernels. Further refactoring is blocked by the fact that the short-range kernels with different cutoffs are fused together, and by the unclear resposibility for the verlet list. The performance hacks that mix everything together also do not help. Co-authored-by: Florian Weik <[email protected]> Co-authored-by: Jean-Noël Grad <[email protected]>
Build succeeded |
Description of changes:
INACTIVE_CUTOFF
/-1.
for cutoffsof disabled kernels.
Further refactoring is blocked by the fact that the short-range kernels
with different cutoffs are fused together, and by the unclear resposibility
for the verlet list. The performance hacks that mix everything together
also do not help.