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 e408e06 commit 13bdba9Copy full SHA for 13bdba9
src/systems/connectors.jl
@@ -252,7 +252,7 @@ function validate_causal_variables_connection(allvars::Vector{SymbolicT})
252
end
253
non_causal_variables = SymbolicT[]
254
for x in allvars
255
- isinput(x) || isoutput(x) || continue
+ (isinput(x) || isoutput(x)) && continue
256
push!(non_causal_variables, x)
257
258
isempty(non_causal_variables) || throw(NonCausalVariableError(non_causal_variables))
0 commit comments