-
-
Notifications
You must be signed in to change notification settings - Fork 718
Fix tests with singular 4.4.0p3 #38689
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -176,7 +176,7 @@ | |
| The Groebner basis modulo any product of the prime factors is also non-trivial:: | ||
| sage: I.change_ring(P.change_ring(IntegerModRing(2 * 7))).groebner_basis() | ||
| [x + 9*y + 13*z, y^2 + 3*y, y*z + 7*y + 6, 2*y + 6, z^2 + 3, 2*z + 10] | ||
| [x + ..., y^2 + 3*y, y*z + 7*y + 6, 2*y + 6, z^2 + 3, 2*z + 10] | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The text above this test says that it's checking that the basis is non-trivial, so we could probably fix this one forever by simply comparing it to the trivial basis and looking for
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The list of leading monomials is deterministic so I think it's good to keep testing it, even though it's not the main goal of the test. |
||
| Modulo any other prime the Groebner basis is trivial so there are | ||
| no other solutions. For example:: | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.