Skip to content

Commit

Permalink
fix style hopf
Browse files Browse the repository at this point in the history
  • Loading branch information
lenasal committed Jan 5, 2024
1 parent 357586e commit cffa710
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neurolib/models/hopf/timeIntegration.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def timeIntegration_njit_elementwise(
# diffusive coupling
if coupling == 0:
for l in range(N):
xs_input_d[no] += xs_input_d[no] += K_gl * Cmat[no, l] * (xs[l, i - Dmat_ndt[no, l] - 1] - xs[no, i - 1])
xs_input_d[no] += K_gl * Cmat[no, l] * (xs[l, i - Dmat_ndt[no, l] - 1] - xs[no, i - 1])
# ys_input_d[no] += K_gl * Cmat[no, l] * (ys[l, i - Dmat_ndt[no, l] - 1] - ys[no, i - 1])
# additive coupling
elif coupling == 1:
Expand Down

0 comments on commit cffa710

Please sign in to comment.