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
Here are some functions that I miss in SAS.jl (or maybe I just haven't found them yet):
function SemialgebraicSets.inequalities(::AbstractAlgebraicSet)
return []
endfunctionpolynomials(s::AbstractSemialgebraicSet)
return [equalities(s)..., inequalities(s)...]
endfunction MultivariatePolynomials.maxdegree(s::AbstractSemialgebraicSet)
pols =polynomials(s)
returnisempty(pols) ?0:maximum(maxdegree.(pols))
end
The text was updated successfully, but these errors were encountered:
Here are some functions that I miss in SAS.jl (or maybe I just haven't found them yet):
The text was updated successfully, but these errors were encountered: