blob: 288ae729a7de5c56802fb21e3e37d6f8d61a65f4 (
plain)
1
2
3
4
5
6
7
8
9
10
|
from polymatrix.expression.mixins.expressionbasemixin import ExpressionBaseMixin
import polymatrix.expression.impl.impl
def init_sum_expr(
underlying: ExpressionBaseMixin,
):
return polymatrix.expression.impl.impl.SumExprImpl(
underlying=underlying,
)
|