-
Notifications
You must be signed in to change notification settings - Fork 372
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
Refactor conngen module to be a ConnBuilder #1830
Conversation
…ator into refactor_conngen_module
Co-authored-by: Stine Brekke Vennemo <[email protected]>
…ator into refactor_conngen_module
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! I've added some documentation-related suggestions inline.
doc/guides/connection_management.rst
Outdated
library, NEST supports the Connection Generator Interface (`Djurfeldt | ||
et al., 2014 <https://doi.org/10.3389/fninf.2014.00043>`_). |
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.
Could we use an RST footnote reference instead, i.e., writing Connection Generator Interface [1]_
and adding a "References" section at the bottom?
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.
Good idea. Done in d5802c9.
@stinebuu, @sarakonradi: I've addressed all your points in my recent commits. Not sure if we really need the review by @hakonsbm. If you think we're good without, feel free to say so or remove the request of review. |
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.
Thank you!
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.
LGTM!
This PR refactors the Connection Generator interface for NEST to be a regular
ConnBuilder
calledconngen
instead of being an extension module calledconngen
, which used to provide theCGConnect
function. This addresses one of the action items of #1717.