Skip to content

Commit d5fe6fd

Browse files
Bruno-TTdimpase
authored andcommitted
proof-of-concept
1 parent 46a6105 commit d5fe6fd

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/sage/groups/matrix_gps/group_element.pyx

+14
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,8 @@ from sage.libs.gap.element cimport GapElement, GapElement_List
8282
from sage.groups.libgap_wrapper cimport ElementLibGAP
8383

8484
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
8587
from sage.structure.factorization import Factorization
8688
from sage.misc.cachefunc import cached_method
8789
from sage.rings.integer_ring import ZZ
@@ -489,6 +491,18 @@ cdef class MatrixGroupElement_gap(ElementLibGAP):
489491
"""
490492
return hash(self.matrix())
491493

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+
492506
def _repr_(self):
493507
r"""
494508
Return string representation of this matrix.

0 commit comments

Comments
 (0)