Skip to content

Commit 72bd4fe

Browse files
fixup! fix: infer oop form for SDEProblem/SDEFunction with StaticArrays
1 parent a73ccd8 commit 72bd4fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/sdesystem.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -618,10 +618,10 @@ solve(prob, LambaEulerHeun(), seed = 1)
618618
# SDEProblem construction with StaticArrays
619619
# Issue#2814
620620
@parameters p d
621-
@variables x(t)
621+
@variables x(tt)
622622
@brownian a
623623
eqs = [D(x) ~ p - d * x + a * sqrt(p)]
624-
@mtkbuild sys = System(eqs, t)
624+
@mtkbuild sys = System(eqs, tt)
625625
u0 = @SVector[x => 10.0]
626626
tspan = (0.0, 10.0)
627627
ps = @SVector[p => 5.0, d => 0.5]

0 commit comments

Comments
 (0)