Skip to content

Commit dd9cc0d

Browse files
fix: fix incorrect default in DDE test
1 parent 08354b4 commit dd9cc0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/dde.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ prob_sa = SDDEProblem(
9898

9999
function oscillator(; name, k = 1.0, τ = 0.01)
100100
@parameters k=k τ=τ
101-
@variables x(..)=0.1 y(t)=0.1 jcn(t)=0.0 delx(t)
101+
@variables x(..)=0.1 y(t)=0.1 jcn(t) delx(t)
102102
eqs = [D(x(t)) ~ y,
103103
D(y) ~ -k * x(t - τ) + jcn,
104104
delx ~ x(t - τ)]

0 commit comments

Comments
 (0)