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.
full_equations
islinear
isaffine
1 parent 34a4afd commit 4d46b15Copy full SHA for 4d46b15
src/systems/abstractsystem.jl
@@ -1780,13 +1780,13 @@ function preface(sys::AbstractSystem)
1780
end
1781
1782
function islinear(sys::AbstractSystem)
1783
- rhs = [eq.rhs for eq in equations(sys)]
+ rhs = [eq.rhs for eq in full_equations(sys)]
1784
1785
all(islinear(r, unknowns(sys)) for r in rhs)
1786
1787
1788
function isaffine(sys::AbstractSystem)
1789
1790
1791
all(isaffine(r, unknowns(sys)) for r in rhs)
1792
0 commit comments