Skip to content

Commit 69f9a59

Browse files
Kyle HofmannJon H
Kyle Hofmann
authored and
Jon H
committed
Add more type tests and separate them from examples
1 parent 40e655d commit 69f9a59

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

src/sage/rings/polynomial/polynomial_modn_dense_ntl.pyx

+23
Original file line numberDiff line numberDiff line change
@@ -1253,12 +1253,22 @@ cdef class Polynomial_dense_modn_ntl_zz(Polynomial_dense_mod_n):
12531253
sage: S.<y> = PolynomialRing(Integers(5), implementation='NTL')
12541254
sage: f(y)
12551255
y^3 + 2
1256+
1257+
TESTS::
1258+
1259+
sage: R.<x> = PolynomialRing(Integers(100), implementation='NTL')
1260+
sage: f = x^3 + 7
12561261
sage: f(1).parent() == R.base_ring()
12571262
True
12581263
sage: f(int(1)).parent() == R.base_ring()
12591264
True
12601265
sage: f(x + 1).parent() == f.parent()
12611266
True
1267+
1268+
sage: R.<x> = PolynomialRing(Zmod(12), 'x', implementation='NTL')
1269+
sage: u = Zmod(4)(3)
1270+
sage: x(u).parent() == u.parent()
1271+
True
12621272
"""
12631273
if len(args) != 1 or len(kwds) != 0:
12641274
return Polynomial.__call__(self, *args, **kwds)
@@ -1814,12 +1824,25 @@ cdef class Polynomial_dense_modn_ntl_ZZ(Polynomial_dense_mod_n):
18141824
sage: S.<y> = PolynomialRing(Integers(5), implementation='NTL')
18151825
sage: f(y)
18161826
y^3 + 2
1827+
1828+
TESTS::
1829+
1830+
sage: R.<x> = PolynomialRing(Integers(10^30), implementation='NTL')
1831+
sage: f = x^3 + 7
18171832
sage: f(1).parent() == R.base_ring()
18181833
True
18191834
sage: f(int(1)).parent() == R.base_ring()
18201835
True
18211836
sage: f(x + 1).parent() == f.parent()
18221837
True
1838+
1839+
sage: R.<x> = PolynomialRing(Zmod(10^30), 'x', implementation='NTL')
1840+
sage: u = Zmod(10^29)(3)
1841+
sage: x(u).parent() == u.parent()
1842+
True
1843+
sage: v = Zmod(10)(3)
1844+
sage: x(v).parent() == v.parent()
1845+
True
18231846
"""
18241847
if len(args) != 1 or len(kwds) != 0:
18251848
return Polynomial.__call__(self, *args, **kwds)

0 commit comments

Comments
 (0)