Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit c41d743

Browse files
committed
Minor review changes
1 parent ffe8f45 commit c41d743

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/sage/rings/polynomial/multi_polynomial_libsingular.pyx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4046,7 +4046,7 @@ cdef class MPolynomial_libsingular(sage.rings.polynomial.multi_polynomial.MPolyn
40464046
...
40474047
NotImplementedError: Factorization of multivariate polynomials over prime fields with characteristic > 2^29 is not implemented.
40484048
4049-
Factorization over the integers is now supported, see :trac:`17840` ::
4049+
Factorization over the integers is now supported, see :trac:`17840`::
40504050
40514051
sage: P.<x,y> = PolynomialRing(ZZ)
40524052
sage: f = 12 * (3*x*y + 4) * (5*x - 2) * (2*y + 7)^2
@@ -4055,6 +4055,8 @@ cdef class MPolynomial_libsingular(sage.rings.polynomial.multi_polynomial.MPolyn
40554055
sage: g = -12 * (x^2 - y^2)
40564056
sage: g.factor()
40574057
(-1) * 2^2 * 3 * (x - y) * (x + y)
4058+
sage: factor(-4*x*y - 2*x + 2*y + 1)
4059+
(-1) * (2*y + 1) * (2*x - 1)
40584060
40594061
Factorization over non-integral domains is not supported ::
40604062

0 commit comments

Comments
 (0)