Skip to content

Commit

Permalink
Rename t to time_step for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
akorgor committed Sep 13, 2024
1 parent d1744e0 commit 65ae48f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nestkernel/eprop_archiving_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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_;
}

Expand Down

0 comments on commit 65ae48f

Please sign in to comment.