We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c584ca0 commit c0026d3Copy full SHA for c0026d3
src/sage/rings/polynomial/polynomial_ring.py
@@ -1962,12 +1962,14 @@ def construction(self):
1962
1963
sage: from sage.rings.polynomial.polynomial_ring import PolynomialRing_integral_domain as PRing
1964
sage: R = PRing(ZZ, 'x'); R
1965
+ Univariate Polynomial Ring in x over Integer Ring
1966
sage: functor, arg = R.construction(); functor, arg
1967
(Poly[x], Integer Ring)
1968
sage: functor.implementation is None
1969
True
1970
1971
sage: R = PRing(ZZ, 'x', implementation='NTL'); R
1972
+ Univariate Polynomial Ring in x over Integer Ring (using NTL)
1973
1974
1975
sage: functor.implementation
0 commit comments