We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
gr_poly_scalar_mul
This may be a bit of a corner case, but for a polynomial ring over a matrix ring one might want to multiply by a "constant" (i.e. a matrix) on the right instead of on the left (as gr_poly_mul_scalar does), see e.g. https://gitlab.inria.fr/ricardo-thomas.buring/d-finite-fun/-/blob/463d254ded0f4fc78fcae16ead856fa7e5e72be3/newton_iteration_flint.c#L258-L267
gr_poly_mul_scalar
The text was updated successfully, but these errors were encountered:
There should be separate gr_poly_scalar_mul (scalar on the left) and gr_poly_mul_scalar (scalar on the right).
Likewise gr_poly_mul_other and gr_poly_other_mul.
gr_poly_mul_other
gr_poly_other_mul
There are some other places too where commutativity is assumed that ought to be fixed.
Sorry, something went wrong.
gr_poly_mul_scalar_right
No branches or pull requests
This may be a bit of a corner case, but for a polynomial ring over a matrix ring one might want to multiply by a "constant" (i.e. a matrix) on the right instead of on the left (as
gr_poly_mul_scalar
does), see e.g. https://gitlab.inria.fr/ricardo-thomas.buring/d-finite-fun/-/blob/463d254ded0f4fc78fcae16ead856fa7e5e72be3/newton_iteration_flint.c#L258-L267The text was updated successfully, but these errors were encountered: