We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2ec9c7 commit dd3277fCopy full SHA for dd3277f
test/dde.jl
@@ -78,7 +78,7 @@ sol = solve(prob, RKMil())
78
eqs = [D(x(t)) ~ a * x(t) + b * x(t - τ) + c + (α * x(t) + γ) * η]
79
@mtkbuild sys = System(eqs, t)
80
@test equations(sys) == [D(x(t)) ~ a * x(t) + b * x(t - τ) + c]
81
-@test isequal(ModelingToolkit.get_noiseeqs(sys), [α * x(t) + γ;;])
+@test isequal(ModelingToolkit.get_noiseeqs(sys), [α * x(t) + γ])
82
prob_mtk = SDDEProblem(sys, [x(t) => 1.0 + t], tspan; constant_lags = (τ,));
83
@test_nowarn sol_mtk = solve(prob_mtk, RKMil())
84
0 commit comments