-
Notifications
You must be signed in to change notification settings - Fork 187
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
Implementation of HybridDecomposition #4373
Merged
kodiakhq
merged 4 commits into
espressomd:python
from
pkreissl:hybrid_particle_decomposition
May 11, 2022
Merged
Implementation of HybridDecomposition #4373
kodiakhq
merged 4 commits into
espressomd:python
from
pkreissl:hybrid_particle_decomposition
May 11, 2022
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pkreissl
force-pushed
the
hybrid_particle_decomposition
branch
from
October 20, 2021 11:12
e184ceb
to
d9fb26a
Compare
|
This comment has been minimized.
This comment has been minimized.
>* In the same function, return directly from the if/else branches. No need for a temporary variable.
Had that originally, clion complained as it deems this bad style. I will go back to initial solution if you want me to.
At least initialize the variable to a nullptr then, so it doesn’t look like UB af first glance.
>* In the constructor: The child decompositions (and HybridDecomposition) currently use move on the communicator. I'm not sure that will work. With move, the original can be rendered unusable. You might need copy >semantics
This is also how it is done in DomainDecomposition so I guess it should work.
Yes, but there, it is used only once. You are moving the same constructor twice to the two child decompositions.
|
pkreissl
force-pushed
the
hybrid_particle_decomposition
branch
from
November 9, 2021 13:27
408bc51
to
925d0ab
Compare
pkreissl
force-pushed
the
hybrid_particle_decomposition
branch
from
December 17, 2021 11:06
869f8b5
to
7fb7423
Compare
pkreissl
force-pushed
the
hybrid_particle_decomposition
branch
2 times, most recently
from
February 4, 2022 09:58
063a590
to
c853e63
Compare
pkreissl
force-pushed
the
hybrid_particle_decomposition
branch
from
May 3, 2022 13:28
61e78d6
to
3a92913
Compare
pkreissl
force-pushed
the
hybrid_particle_decomposition
branch
from
May 3, 2022 13:58
3a92913
to
f0d0533
Compare
Ready for review... |
RudolfWeeber
previously approved these changes
May 10, 2022
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.
JN, could you maybe also tae a look?
jngrad
approved these changes
May 10, 2022
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.
I don't have too much expertise in our cell system, but looks good from the technical side
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fixes #4351
Description of changes:
class
(instead ofstruct
)