-
Notifications
You must be signed in to change notification settings - Fork 189
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
Fixes for parallel collision detection #2195
Merged
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
41a3cc9
Fix parallelization of collision detection schemes
RudolfWeeber 930dd97
Fix parallelization of collision detection schemes
RudolfWeeber 45834fd
Merge branch 'coldet_par_fix' of ssh://github.com/RudolfWeeber/espres…
RudolfWeeber 4afe110
testsuite: enable parallel testing of collision_detection
RudolfWeeber ee64c17
clang format collision.cpp before merge
RudolfWeeber 2ddcbd7
Merge branch 'python' of git://github.com/espressomd/espresso into co…
RudolfWeeber 1cdfd6c
Coldet: Use p_old if resolving cell fails
hirschsn 80003b4
autopep8
RudolfWeeber 981e1f4
Revert "autopep8"
RudolfWeeber c09e8c0
Autopep8
RudolfWeeber 7b2d107
Merge branch 'python' of git://github.com/espressomd/espresso into co…
RudolfWeeber c20875c
coldet: feature guard + clang sanitizer
RudolfWeeber c285cc6
collision.cpp: static analysis
RudolfWeeber ffecb6b
Coldet: static analysis
RudolfWeeber 09543fa
coldet: Review comments + bunch of consts
RudolfWeeber 2f9af26
Clang format
RudolfWeeber 2f0788b
coldet: Also skip pairs if only one particle is accessible
RudolfWeeber 01dd20e
coldet: static analysis
RudolfWeeber 894e5fb
coldet: handle case of changed storage location for particles
RudolfWeeber 0f316f0
Formatting
RudolfWeeber eb13189
coldet: More particle storage location updates
RudolfWeeber 00cff13
Formatting
RudolfWeeber File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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.
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 think the two
!px
in theand
are now superfluous. This should be equivalent to:if (!p1 || !p2 || (p1->l.ghost && p2->l.ghost))