Skip to content

Commit

Permalink
Merge pull request #2938 from aoot/patch-3
Browse files Browse the repository at this point in the history
Update iaf_cond_alpha.cpp
  • Loading branch information
heplesser authored Sep 13, 2023
2 parents a152d21 + d779402 commit e0ba39c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models/iaf_cond_alpha.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ nest::iaf_cond_alpha_dynamics( double, const double y[], double f[], void* pnode
f[ 1 ] = -y[ S::DG_EXC ] / node.P_.tau_synE;
f[ 2 ] = y[ S::DG_EXC ] - ( y[ S::G_EXC ] / node.P_.tau_synE );

// d dg_exc/dt, dg_exc/dt
// d dg_inh/dt, dg_inh/dt
f[ 3 ] = -y[ S::DG_INH ] / node.P_.tau_synI;
f[ 4 ] = y[ S::DG_INH ] - ( y[ S::G_INH ] / node.P_.tau_synI );

Expand Down

0 comments on commit e0ba39c

Please sign in to comment.