@@ -1253,12 +1253,22 @@ cdef class Polynomial_dense_modn_ntl_zz(Polynomial_dense_mod_n):
1253
1253
sage: S.<y> = PolynomialRing(Integers(5), implementation='NTL')
1254
1254
sage: f(y)
1255
1255
y^3 + 2
1256
+
1257
+ TESTS::
1258
+
1259
+ sage: R.<x> = PolynomialRing(Integers(100), implementation='NTL')
1260
+ sage: f = x^3 + 7
1256
1261
sage: f(1).parent() == R.base_ring()
1257
1262
True
1258
1263
sage: f(int(1)).parent() == R.base_ring()
1259
1264
True
1260
1265
sage: f(x + 1).parent() == f.parent()
1261
1266
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
1262
1272
"""
1263
1273
if len (args) != 1 or len (kwds) != 0 :
1264
1274
return Polynomial.__call__ (self , * args, ** kwds)
@@ -1814,12 +1824,25 @@ cdef class Polynomial_dense_modn_ntl_ZZ(Polynomial_dense_mod_n):
1814
1824
sage: S.<y> = PolynomialRing(Integers(5), implementation='NTL')
1815
1825
sage: f(y)
1816
1826
y^3 + 2
1827
+
1828
+ TESTS::
1829
+
1830
+ sage: R.<x> = PolynomialRing(Integers(10^30), implementation='NTL')
1831
+ sage: f = x^3 + 7
1817
1832
sage: f(1).parent() == R.base_ring()
1818
1833
True
1819
1834
sage: f(int(1)).parent() == R.base_ring()
1820
1835
True
1821
1836
sage: f(x + 1).parent() == f.parent()
1822
1837
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
1823
1846
"""
1824
1847
if len (args) != 1 or len (kwds) != 0 :
1825
1848
return Polynomial.__call__ (self , * args, ** kwds)
0 commit comments