summaryrefslogtreecommitdiffstats
path: root/polymatrix/expression/init/initsumexpr.py
blob: 606d86bd430289159e35009af67aa0c2b5a67061 (plain)
1
2
3
4
5
6
7
8
9
10
from polymatrix.expression.mixins.expressionbasemixin import ExpressionBaseMixin
from polymatrix.expression.impl.sumexprimpl import SumExprImpl


def init_sum_expr(
		underlying: ExpressionBaseMixin,
):
	return SumExprImpl(
		underlying=underlying,
)