From 65ae48f241046b10a8236c8f98cca27bb460ff2d Mon Sep 17 00:00:00 2001 From: Agnes Korcsak-Gorzo <40828647+akorgor@users.noreply.github.com> Date: Fri, 13 Sep 2024 18:29:51 +0200 Subject: [PATCH] Rename `t` to `time_step` for consistency --- nestkernel/eprop_archiving_node.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nestkernel/eprop_archiving_node.cpp b/nestkernel/eprop_archiving_node.cpp index 1f5b401299..c66de6c3fa 100644 --- a/nestkernel/eprop_archiving_node.cpp +++ b/nestkernel/eprop_archiving_node.cpp @@ -211,7 +211,7 @@ EpropArchivingNodeRecurrent::write_firing_rate_reg_to_history( const long t_curr } void -EpropArchivingNodeRecurrent::write_firing_rate_reg_to_history( const long t, +EpropArchivingNodeRecurrent::write_firing_rate_reg_to_history( const long time_step, const double z, const double f_target, const double kappa_reg, @@ -230,7 +230,7 @@ EpropArchivingNodeRecurrent::write_firing_rate_reg_to_history( const long t, firing_rate_reg_ = c_reg * ( f_av_ - f_target_ ); - auto it_hist = get_eprop_history( t ); + auto it_hist = get_eprop_history( time_step ); it_hist->firing_rate_reg_ = firing_rate_reg_; }