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 25f9ed8 commit ea95965Copy full SHA for ea95965
test/sdesystem.jl
@@ -868,12 +868,10 @@ end
868
@test length(ModelingToolkit.get_noiseeqs(sys)) == 1
869
@test length(observed(sys)) == 1
870
end
871
-using ModelingToolkit, StochasticDiffEq
872
-using ModelingToolkit: t_nounits as t, D_nounits as D
873
874
@testset "Error when constructing SDESystem without `structural_simplify`" begin
875
@parameters σ ρ β
876
- @variables x(t) y(t) z(t)
+ @variables x(tt) y(tt) z(tt)
877
@brownian a
878
eqs = [D(x) ~ σ * (y - x) + 0.1a * x,
879
D(y) ~ x * (ρ - z) - y + 0.1a * y,
0 commit comments