Skip to content

Commit

Permalink
ensure compatibility with NESTML custom as well as NEST built-in syna…
Browse files Browse the repository at this point in the history
…ptic plasticity models
  • Loading branch information
C.A.P. Linssen committed Dec 5, 2023
1 parent 974cbbe commit b04ecf1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1262,7 +1262,7 @@ inline void
// get spike history in relevant range (t_last_update, t_trig] from postsyn. neuron
std::deque< histentry__{{paired_neuron}} >::iterator start;
std::deque< histentry__{{paired_neuron}} >::iterator finish;
static_cast<{{paired_neuron}}*>(get_target(t))->get_history__( t_last_update_ - dendritic_delay, t_trig - dendritic_delay, &start, &finish );
static_cast<{{paired_neuron}}*>(get_target(t))->get_history_nestml_( t_last_update_ - dendritic_delay, t_trig - dendritic_delay, &start, &finish );

// facilitation due to postsyn. spikes since last update
double t0 = t_last_update_;
Expand Down

0 comments on commit b04ecf1

Please sign in to comment.