Skip to content

Commit

Permalink
Update test_ode_method_exp_euler.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Routhleck committed May 10, 2024
1 parent 883f2b7 commit 829f368
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def dV(self, V, t, h, n, Iext):

return dVdt

def update(self, tdi):
def update(self):
t, dt = bp.share['t'], bp.share['dt']
V, h, n = self.integral(self.V, self.h, self.n, t, self.input, dt=dt)
self.spike.value = bm.logical_and(self.V < self.V_th, V >= self.V_th)
Expand Down

0 comments on commit 829f368

Please sign in to comment.