You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem seems to appear if the expression is a multiplication and one of the terms contain coefficients that are themselves symbolic expressions. A check if those expressions are zero fails.
Removing the following if-clause in utils.jl and just keeping the else-clause seems to fix the problem.
if all(iszero, coeffs)
return 0
else
@views prod(Iterators.flatten((coeffs[findall(!iszero, coeffs)], args[findall(iszero, coeffs)])))
end
I see an error when running
The error message is
I use Julia 1.9.0 with the following output of
Pkg.status()
The text was updated successfully, but these errors were encountered: