aboutsummaryrefslogtreecommitdiffstats
path: root/mdpoly/operations/mul.py
diff options
context:
space:
mode:
Diffstat (limited to 'mdpoly/operations/mul.py')
-rw-r--r--mdpoly/operations/mul.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mdpoly/operations/mul.py b/mdpoly/operations/mul.py
index a2a3cc4..2a8f749 100644
--- a/mdpoly/operations/mul.py
+++ b/mdpoly/operations/mul.py
@@ -12,7 +12,7 @@ from ..index import MatrixIndex, PolyIndex
from ..expressions import BinaryOp, Reducible
from ..expressions.matrix import MatrixExpr
-from ..expression.poly import PolyRingExpr
+from ..expression.poly import PolyExpr
if TYPE_CHECKING:
from ..abc import ReprT
@@ -157,7 +157,7 @@ class MatDotProd(BinaryOp, MatrixExpr, Reducible):
@dataclass(eq=False)
-class PolyMul(BinaryOp, PolyRingExpr):
+class PolyMul(BinaryOp, PolyExpr):
""" Multiplication operator between scalar polynomials. """
def to_repr(self, repr_type: Type[ReprT], state: State) -> tuple[ReprT, State]: