Skip to content

Commit

Permalink
Update diffeqpy/tests/test_sde.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas authored Nov 20, 2024
1 parent f86f920 commit 4e0d150
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions diffeqpy/tests/test_sde.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ def f(du, u, p, t):
du[2] = x * y - beta * z

def g(du, u, p, t):
du[0] = 0.3 * u[0]
du[1] = 0.3 * u[1]
du[2] = 0.3 * u[2]
du[0] = 0.03 * u[0]
du[1] = 0.03 * u[1]
du[2] = 0.03 * u[2]

u0 = [1.0, 0.0, 0.0]
tspan = (0.0, 100.0)
Expand Down

0 comments on commit 4e0d150

Please sign in to comment.