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.
noise_eqs
1 parent 91ca34c commit 20b0effCopy full SHA for 20b0eff
src/systems/systems.jl
@@ -66,6 +66,11 @@ end
66
67
function __structural_simplify(sys::AbstractSystem, io = nothing; simplify = false,
68
kwargs...)
69
+ # TODO: convert noise_eqs to brownians for simplification
70
+ if has_noise_eqs(sys) && !isempty(get_noise_eqs(sys))
71
+ throw(ArgumentError("Cannot simplify systems with `noise_eqs`"))
72
+ end
73
+
74
sys = expand_connections(sys)
75
state = TearingState(sys)
76
0 commit comments