-
Notifications
You must be signed in to change notification settings - Fork 824
Added capped function for grid search #2008
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
Merged
Merged
Changes from all commits
Commits
Show all changes
48 commits
Select commit
Hold shift + click to select a range
c04301a
First commit for gridded method
ayushsuhane c3e227a
removed the parallel handler to remove hard dependency on omp.h, can …
ayushsuhane 007d47d
added the license header
ayushsuhane fc61e5e
Added MDAnalysis header file to c_gridsearch.pyx
seb-buch 4b273a9
Corrected C (de)allocation in c_gridsearch.pyx. Should fix memory leak
seb-buch 02b5819
Added Tests for grid search. Added grid in MDAnalysis.lib.__init__
seb-buch 0f35031
Removed pointer to nsgrid structure to avoid need to free it
seb-buch bdad5e3
Removed abort() from c_gridsearch.pyx
seb-buch f65e32b
grid allocation moved to FastNS method
seb-buch ff33b2f
NSResults object added to store results from NS. Started documentation
seb-buch 579fa00
Corrected Memory Leak
seb-buch 0239d14
Added MDAnalysis/lib/c_search.pyx for Grid NS search
ayushsuhane 5e9fe31
removed the parallel handler to remove hard dependency on omp.h, can …
ayushsuhane 97d07fe
Added MDAnalysis header file to c_gridsearch.pyx
seb-buch a26f437
Corrected C (de)allocation in c_gridsearch.pyx. Should fix memory leak
seb-buch 2855400
Removed pointer to nsgrid structure to avoid need to free it
seb-buch 4d4a415
Removed abort() from c_gridsearch.pyx and grid allocation moved to Fa…
seb-buch c6339c5
NSResults object added to store results from NS. Started documentation
seb-buch 7f4a176
Memory allocation changed to PyMem to enhance speed in c_gridsearch.pyx
seb-buch 8650509
Unneeded code removed from c_gridsearch.pyx
seb-buch 1a0e150
Module MDAnalysis/lib/c_gridsearch.pyx renamed to nsgrid.pyx
seb-buch a1e03dd
Tests written for FastNS
seb-buch 8a75a5f
Removed all references to c_gridsearch.pyx/grid module that reappeare…
seb-buch 7b0c56c
remove unused code
kain88-de 3765868
make init_callable twice
kain88-de f230008
use OK and ERROR as return codes
kain88-de a738fa9
remove dead code
kain88-de 89f0b89
remove possible memory leak
kain88-de 08de29b
added the capped function, modified the nsgrid to use box, coordinate…
ayushsuhane 9d52ac9
recovering accidently removed augment in setupd during rebase
ayushsuhane 8b8ea74
corrected name in documentation
ayushsuhane e71b671
minor corrections to remove pylint error
ayushsuhane a5d1355
Used vectors in place of lists and dict, cleaned code and modified fu…
ayushsuhane 46f9030
removed dict from buffers for speedup and modified tests
ayushsuhane 2c83681
mend
ayushsuhane b05e243
reverted tests, removed sorting from get_indices, get_distances, modi…
ayushsuhane 4f1e729
minor changes for failing tests
ayushsuhane 7fd1f80
added hack to handle NoPBC, tests to follow
ayushsuhane 57e9d55
conform tests a/c to modifications in API
ayushsuhane a7264ec
removed python functions, added no pbc handle using python min, max
ayushsuhane 929fbf5
docs unchecked
ayushsuhane c817b39
returning list for get_indices, checked Docs
ayushsuhane 66d94e5
removed parallel libraries
ayushsuhane e28c70a
solved contiguous issue, fixed tests, and added checks in API
ayushsuhane 76c81cf
Added self_capped for nsgrid, moved no pbc box handling outside nsgri…
ayushsuhane 2a0b01f
updated CHANGELOG
ayushsuhane 0cde1de
added sebastien to authors
ayushsuhane b7751d1
merged develop
ayushsuhane 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 hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
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.
@seb-buch also needs to be added as an author as he's authored some of the commits