-
Notifications
You must be signed in to change notification settings - Fork 5
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
checkEuclideanRing #9
Comments
If i understand correctly, there is no hard max on the size of |
Sorry to reopen a closed issue. I think the fixed implement of degree is not correct even if the tests pass. export const biDegree = (x) => {
return x < 0n ? -x : x;
} This is because the method Actually, I think there is no way to correctly implement |
Given the above, I'm reopening this. |
Do we know why the
checkEuclideanRing
can't pass?purescript-js-bigints/test/Main.purs
Line 128 in e026a78
Is it is similar situation to
Data.Int64
?purescript-contrib/purescript-int64#8
The text was updated successfully, but these errors were encountered: