Skip to content

Commit 894f639

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

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
@@ -31,7 +31,7 @@ class DifferentialEquation(theano.Op):
3131
3232
def odefunc(y, t, p):
3333
#Logistic differential equation
34-
return p[0]*y[0]*(1-y[0])
34+
return p[0] * y[0] * (1 - y[0])
3535
3636
times=np.arange(0.5, 5, 0.5)
3737

0 commit comments

Comments
 (0)