@@ -1220,27 +1220,40 @@ cdef class IntegerRing_class(PrincipalIdealDomain):
1220
1220
return self (1 )
1221
1221
1222
1222
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`` .
1225
1225
1226
- For sparse polynomial, the algorithm uses [CKS1999]_.
1226
+ INPUT:
1227
1227
1228
- AUTHORS:
1228
+ - ``p`` -- univariate integer polynomial
1229
1229
1230
- - Bruno Grenet (2014-07-04)
1230
+ - ``ring`` -- ring ( default: ``None``) ; a ring containing `\Z Z` to
1231
+ compute the roots in; ``None`` is equivalent to ``ZZ``
1231
1232
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.
1233
1246
1234
- - ``p`` -- a univariate integer polynomial
1247
+ ALGORITHM:
1235
1248
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`.
1237
1251
1238
- - ``multiplicities`` -- a boolean
1252
+ If ``algorithm`` is ``"sparse"``, the roots are computed using the
1253
+ algorithm described in [CKS1999 ]_.
1239
1254
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.
1244
1257
1245
1258
.. NOTE::
1246
1259
@@ -1283,7 +1296,7 @@ cdef class IntegerRing_class(PrincipalIdealDomain):
1283
1296
ValueError: Unknown algorithm 'foobar'
1284
1297
"""
1285
1298
if p.degree() < 0 :
1286
- raise ValueError (" Roots of 0 are not defined" );
1299
+ raise ValueError (" roots of 0 are not defined" )
1287
1300
1288
1301
# A specific algorithm is available only for integer roots of integer polynomials
1289
1302
if ring is not self and ring is not None :
@@ -1297,7 +1310,7 @@ cdef class IntegerRing_class(PrincipalIdealDomain):
1297
1310
algorithm = " dense"
1298
1311
1299
1312
if algorithm != " dense" and algorithm != " sparse" :
1300
- raise ValueError (" Unknown algorithm '%s ' " % algorithm)
1313
+ raise ValueError (" unknown algorithm '{}' " .format( algorithm) )
1301
1314
1302
1315
from sage.rings.polynomial.polynomial_ring_constructor import PolynomialRing
1303
1316
0 commit comments