-
Notifications
You must be signed in to change notification settings - Fork 370
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
Fix postsynaptic trace edge case #1137
Merged
Merged
Changes from 38 commits
Commits
Show all changes
47 commits
Select commit
Hold shift + click to select a range
febaad5
fixed bug and added testbench for postsynaptic trace function
d089391
added assertion failure upon fall-through case
a725a1b
updated the example
85fa1eb
refactor postsynaptic trace demo script to unit test
2ca0a85
replace history-based calculation of postsynaptic trace with private …
fc879a2
update unit test to account for multiple spikes within one (dmin) tim…
15825ec
update postsynaptic trace unit test to account for multiple spikes wi…
38010cb
added debugging code to archiving node
abea27a
update postsynaptic trace unit test to account for multiple spikes wi…
aea2949
add new, stricter condition for removing spikes from the postsynaptic…
cf2c991
added new parameter to register_stdp_connection() to pass synaptic delay
ee90db9
refactor testbench
e7e55ac
postsynaptic trace fixes for #1034; updated testbench
41060e3
postsynaptic trace fixes for #1034: cleanup
fd2a9d7
postsynaptic trace fixes for #1034: cleanup
7d4fb0e
postsynaptic trace fixes for #1034: cleanup
ba09243
postsynaptic trace fixes for #1034: cleanup
76a7160
postsynaptic trace fixes for #1034: cleanup
73fc9c3
pep8
5a91180
clang-format
4a11b18
homogenise comments/formatting between get_K_value() and get_K_values()
a868258
fix member variable initialisation order
6d0828e
fix line lengths to <80 characters
9370f60
minor code beautifications; comments typography
f3e894a
make plotting optional in the testbench
271a85e
Merge remote-tracking branch 'upstream/master' into traces-refactor_f…
0383c17
fix register_stdp_connection() API change in clopath_connection
6ef4e33
pep8
8407c3c
fix reference to `@check_stack` in postsynaptic trace unit test
6cc14a3
Merge remote-tracking branch 'upstream/master' into traces-refactor_f…
ae902d2
fix reference to `nest.set_verbosity()` in postsynaptic trace unit test
e956582
clang-format
ec11b5f
split postsynaptic trace testbench into pure (regression) test part a…
ee8cd49
clean up postsynaptic trace regression test
c662f2e
clean up (PEP8) postsynaptic trace regression test
40a1a28
removed check_stack from postsynaptic trace regression test
d1c8543
minor cleanup of postsynaptic trace regression test and Jupyter notebook
3f87224
add reference to Jupyter notebook in regression test
90b5c28
change verbosity level to the maximum defined
39ea006
Merge remote-tracking branch 'upstream/master' into traces-refactor_f…
d7ed53b
remove unused NEST name 'pre_trace'
eefa1aa
minor refactoring based on PR comments
389e715
Merge remote-tracking branch 'upstream/master' into traces-refactor_f…
320c659
add documentation header; minor refactoring based on PR comments
acd122f
remove stray line left over from refactoring
bb5b275
remove copyright header from Jupyter notebook
0eead87
add figure legend
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -313,7 +313,9 @@ const Name port_name( "port_name" ); | |
const Name port_width( "port_width" ); | ||
const Name ports( "ports" ); | ||
const Name post_synaptic_element( "post_synaptic_element" ); | ||
const Name post_trace( "post_trace" ); | ||
const Name pre_synaptic_element( "pre_synaptic_element" ); | ||
const Name pre_trace( "pre_trace" ); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It doesn't look like |
||
const Name precise_times( "precise_times" ); | ||
const Name precision( "precision" ); | ||
const Name print_time( "print_time" ); | ||
|
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
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
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
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.
Use
and
instead of&&
.