Skip to content
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

Allow more rings to be used with libsingular & rework signal detection system #39075

Merged
merged 18 commits into from
Dec 22, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix a doctest
user202729 committed Dec 8, 2024
commit f6c5a149238e50d9cb4a25e23c52d9808f070ab5
10 changes: 5 additions & 5 deletions src/sage/rings/polynomial/multi_polynomial_libsingular.pyx
Original file line number Diff line number Diff line change
@@ -5223,11 +5223,11 @@ cdef class MPolynomial_libsingular(MPolynomial_libsingular_base):
Traceback (most recent call last):
...
AlarmInterrupt
sage: h = f.quo_rem(g)
sage: len(dict(h))
Traceback (most recent call last):
...
ValueError: dictionary update sequence element #0 has length 658875; 2 is required
sage: q, r = f.quo_rem(g)
sage: len(dict(q))
178748
sage: len(dict(r))
7993
"""
cdef poly *quo
cdef poly *rem
Loading