Skip to content

Commit b56300f

Browse files
Dpananostwiecki
andauthored
Update pymc3/ode/ode.py
Co-Authored-By: Thomas Wiecki <[email protected]>
1 parent 894f639 commit b56300f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc3/ode/ode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def odefunc(y, t, p):
3333
#Logistic differential equation
3434
return p[0] * y[0] * (1 - y[0])
3535
36-
times=np.arange(0.5, 5, 0.5)
36+
times = np.arange(0.5, 5, 0.5)
3737
3838
ode_model = DifferentialEquation(func=odefunc, t0=0, times=times, n_states=1, n_odeparams=1)
3939
"""

0 commit comments

Comments
 (0)