blob: 9069ee6dfa3dd2d71b4ffa2bc455d61dc691edd3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
from polymatrix.expression.mixins.expressionbasemixin import ExpressionBaseMixin
from polymatrix.expression.impl.traceexprimpl import TraceExprImpl
def init_trace_expr(
underlying: ExpressionBaseMixin,
):
return TraceExprImpl(
underlying=underlying,
)
|