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

Commit 080a617

Browse files
committed
16516: Better docstring + cosmetic change
1 parent 1604cc9 commit 080a617

File tree

1 file changed

+28
-15
lines changed

1 file changed

+28
-15
lines changed

src/sage/rings/integer_ring.pyx

+28-15
Original file line numberDiff line numberDiff line change
@@ -1220,27 +1220,40 @@ cdef class IntegerRing_class(PrincipalIdealDomain):
12201220
return self(1)
12211221

12221222
def _roots_univariate_polynomial(self, p, ring=None, multiplicities=True, algorithm=None):
1223-
"""
1224-
Returns the root of the univariate polynomial ``p''.
1223+
r"""
1224+
Return the roots of the univariate polynomial ``p``.
12251225
1226-
For sparse polynomial, the algorithm uses [CKS1999]_.
1226+
INPUT:
12271227
1228-
AUTHORS:
1228+
- ``p`` -- univariate integer polynomial
12291229
1230-
- Bruno Grenet (2014-07-04)
1230+
- ``ring`` -- ring (default: ``None``); a ring containing `\ZZ` to
1231+
compute the roots in; ``None`` is equivalent to ``ZZ``
12311232
1232-
INPUT:
1233+
- ``multiplicities`` -- boolean (default: ``True``); whether to compute
1234+
the multiplicities
1235+
1236+
- ``algorithm`` -- ``"dense"``, ``"sparse"`` or ``None`` (default:
1237+
``None``); the algorithm to use
1238+
1239+
OUTPUT:
1240+
1241+
- If ``multiplicities = True``, the list of pairs `(r, n)` where
1242+
`r` is a root and `n` the corresponding multiplicity;
1243+
1244+
- If ``multiplicities = False``, the list of distincts roots with no
1245+
information about the multiplicities.
12331246
1234-
- ``p`` -- a univariate integer polynomial
1247+
ALGORITHM:
12351248
1236-
- ``ring`` -- a ring, containing ZZ, to compute the roots in
1249+
If ``algorithm`` is ``"dense"`, the roots are computed using
1250+
:meth:`_roots_from_factorization`.
12371251
1238-
- ``multiplicities`` -- a boolean
1252+
If ``algorithm`` is ``"sparse"``, the roots are computed using the
1253+
algorithm described in [CKS1999]_.
12391254
1240-
- ``algorithm`` -- the algorithm to use, either "dense" or "sparse".
1241-
The "dense" algorithm calls `_roots_from_factorization`, and the
1242-
"sparse" algorithm is described in [CKS1999]_. Default is "dense" for
1243-
polynomials of degree at most 100, and "sparse" otherwise.
1255+
If ``algorithm`` is ``None``, use the ``"dense"`` algorithm for
1256+
polynomials of degree at most `100`, and ``"sparse"`` otherwise.
12441257
12451258
.. NOTE::
12461259
@@ -1283,7 +1296,7 @@ cdef class IntegerRing_class(PrincipalIdealDomain):
12831296
ValueError: Unknown algorithm 'foobar'
12841297
"""
12851298
if p.degree() < 0:
1286-
raise ValueError("Roots of 0 are not defined");
1299+
raise ValueError("roots of 0 are not defined")
12871300

12881301
# A specific algorithm is available only for integer roots of integer polynomials
12891302
if ring is not self and ring is not None:
@@ -1297,7 +1310,7 @@ cdef class IntegerRing_class(PrincipalIdealDomain):
12971310
algorithm = "dense"
12981311

12991312
if algorithm != "dense" and algorithm != "sparse":
1300-
raise ValueError("Unknown algorithm '%s'" % algorithm)
1313+
raise ValueError("unknown algorithm '{}'".format(algorithm))
13011314

13021315
from sage.rings.polynomial.polynomial_ring_constructor import PolynomialRing
13031316

0 commit comments

Comments
 (0)