-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Monomial ordering #77
Comments
Currently the ordering used is graded lexicographic order by DynamicPolynomials and TypedPolynomials. I agree that it would be nice to query the ordering used and be able to choose the monomial ordering in e.g. |
There are actually two things. The first one is the ordering and the other is the ordering of the variables itself. Currently we have the following behaviour: |
Yes, |
The problem is that in TypedPolynomials the only identity a Variable has is its literal name, so that's the only information I can possibly use for comparison. Perhaps this is just something we have to document better? |
With the 0.5 release, there is the possibility to have different monomial orderings (although it is not fully implemented yet, as for example |
Oops, indeed this |
Could elaborate which monomial ordering is currently used? Lexicographic? And is this enforced by the interface, i.e. MultivariatePolynomials, or is it depending on the implementation, i.e. DynamicPolynomials etc.?
And would it maybe make sense to be able to specify the ordering?
The text was updated successfully, but these errors were encountered: