Skip to content

Commit 0554e17

Browse files
Update lib/OrdinaryDiffEqFIRK/test/ode_firk_tests.jl
1 parent 54b5615 commit 0554e17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/OrdinaryDiffEqFIRK/test/ode_firk_tests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ function vanderpol_firk(u, p, t)
5858
x, y = u[1], u[2]
5959
μ = p[1]
6060
[y, # dx/dt = y
61-
du[2] = μ * ((1 - x^2) * y - x)] # dy/dt = μ * ((1 - x^2) * y - x)
61+
μ * ((1 - x^2) * y - x)] # dy/dt = μ * ((1 - x^2) * y - x)
6262
end
6363

6464
# test adaptivity

0 commit comments

Comments
 (0)