File tree 1 file changed +14
-0
lines changed
src/sage/groups/matrix_gps
1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -82,6 +82,8 @@ from sage.libs.gap.element cimport GapElement, GapElement_List
82
82
from sage.groups.libgap_wrapper cimport ElementLibGAP
83
83
84
84
from sage.structure.element import is_Matrix
85
+ from sage.rings.polynomial.multi_polynomial_libsingular import MPolynomial_libsingular
86
+ from sage.all import PolynomialRing, Matrix as MatrixConstructor
85
87
from sage.structure.factorization import Factorization
86
88
from sage.misc.cachefunc import cached_method
87
89
from sage.rings.integer_ring import ZZ
@@ -489,6 +491,18 @@ cdef class MatrixGroupElement_gap(ElementLibGAP):
489
491
"""
490
492
return hash (self .matrix())
491
493
494
+ def __call__ (self , other ):
495
+ r """
496
+ """
497
+ if type (other)== MPolynomial_libsingular:
498
+ assert self .base_ring()== other.base_ring()
499
+ mRingPoly= other
500
+ polynomial_vars= mRingPoly.variables()
501
+ varsToSubstituteModuleContext= self * MatrixConstructor(polynomial_vars).transpose()
502
+ varsToSubstituteRingContext= map (PolynomialRing(self .base_ring(), other.variables()), varsToSubstituteModuleContext)
503
+ substitutionDict= {v:s for v,s in zip (polynomial_vars, varsToSubstituteRingContext)}
504
+ return mRingPoly.subs(substitutionDict)
505
+
492
506
def _repr_ (self ):
493
507
r """
494
508
Return string representation of this matrix.
You can’t perform that action at this time.
0 commit comments