Skip to content
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

Distance dependent structural plasticity #3369

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions nestkernel/nest_names.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -488,6 +488,8 @@ const Name stimulus_source( "stimulus_source" );
const Name stop( "stop" );
const Name structural_plasticity_synapses( "structural_plasticity_synapses" );
const Name structural_plasticity_update_interval( "structural_plasticity_update_interval" );
const Name structural_plasticity_gaussian_kernel_sigma( "structural_plasticity_gaussian_kernel_sigma" );
const Name structural_plasticity_cache_probabilities( "structural_plasticity_cache_probabilities" );
const Name surrogate_gradient( "surrogate_gradient" );
const Name surrogate_gradient_function( "surrogate_gradient_function" );
const Name synapse_id( "synapse_id" );
Expand Down
2 changes: 2 additions & 0 deletions nestkernel/nest_names.h
Original file line number Diff line number Diff line change
Expand Up @@ -516,6 +516,8 @@ extern const Name stimulus_source;
extern const Name stop;
extern const Name structural_plasticity_synapses;
extern const Name structural_plasticity_update_interval;
extern const Name structural_plasticity_gaussian_kernel_sigma;
extern const Name structural_plasticity_cache_probabilities;
extern const Name surrogate_gradient;
extern const Name surrogate_gradient_function;
extern const Name synapse_id;
Expand Down
Loading