This repository was archived by the owner on Jan 30, 2023. It is now read-only.
File tree 3 files changed +14
-8
lines changed
src/sage/rings/polynomial
3 files changed +14
-8
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,11 @@ for conversion from a skew polynomial ring to its base ring and vice versa respe
15
15
16
16
AUTHOR:
17
17
18
- - Xavier Caruso ( 2012-06-29)
18
+ - Xavier Caruso ( 2012-06-29) : initial version
19
+
20
+ - Arpit Merchant ( 2016-08-04) : improved docstrings, fixed doctests and refactored classes and methods
21
+
22
+ - Johan Nielson ( 2016-08-03) : changes for bug fixes, docstring and doctest errors
19
23
"""
20
24
21
25
# ############################################################################
@@ -2778,7 +2782,6 @@ cdef class SkewPolynomial_generic_dense(SkewPolynomial):
2778
2782
r = < SkewPolynomial_generic_dense> self ._parent(v)
2779
2783
else :
2780
2784
r = < SkewPolynomial_generic_dense> self ._new_c(list (self ._coeffs),self ._parent)
2781
- # r._inplace_pow(exp)
2782
2785
r = r** exp
2783
2786
2784
2787
if modulus:
@@ -2860,11 +2863,6 @@ cdef class SkewPolynomial_generic_dense(SkewPolynomial):
2860
2863
else :
2861
2864
r = < SkewPolynomial_generic_dense> self ._new_c(list (self ._coeffs),self ._parent)
2862
2865
r._inplace_pow(exp)
2863
- # print "HI"
2864
- # for i in range(exp-1):
2865
- # r = r * r
2866
- # r = r**exp
2867
- # # print r
2868
2866
2869
2867
if modulus:
2870
2868
_, r = r.right_quo_rem(modulus)
Original file line number Diff line number Diff line change 11
11
AUTHOR:
12
12
13
13
- Xavier Caruso (2012-06-29)
14
+
15
+ - Arpit Merchant (2016-08-04): improved docstrings, fixed doctests and refactored classes and methods
16
+
17
+ - Johan Nielson (2016-08-03): changes for bug fixes, docstring and doctest errors
14
18
"""
15
19
16
20
#############################################################################
Original file line number Diff line number Diff line change 8
8
9
9
AUTHOR:
10
10
11
- - Xavier Caruso (2012-06-29)
11
+ - Xavier Caruso (2012-06-29): initial version
12
+
13
+ - Arpit Merchant (2016-08-04): improved docstrings, added doctests and refactored method
14
+
15
+ - Johan Nielson (2016-08-03): changes to import format
12
16
"""
13
17
14
18
#############################################################################
You can’t perform that action at this time.
0 commit comments