-
Notifications
You must be signed in to change notification settings - Fork 7
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
Degree? #7
Comments
Ah, I was wrong, it is actually used in the division algorithm itself, e.g., https://en.wikipedia.org/wiki/Polynomial_greatest_common_divisor#Euclidean_division However, we need not to redefine the division algorithm, as we have to provide |
To be honest, I had not really understood what |
Regardless of the issues brought up in that description,
A constant degree of 1 suggests the type is actually a |
For consistency,
degree
for Ints inPrelude
is defined viaabs
, whereas here you reuse the version for Numbers, which is simply a constant1
.I'm actually wondering why
degree
is even required, since (AFAIK) its' only usage is during the proof that a generalized GCD algorithm exists for a chosen ring.The text was updated successfully, but these errors were encountered: