MCPcopy Create free account
hub / github.com/NGSolve/ngsolve / expr_mul

Function expr_mul

python/__expr.py:22–23  ·  view source on GitHub ↗
(a,b)

Source from the content-addressed store, hash-verified

20 return -Expr(a)
21
22def expr_mul(a,b):
23 return Expr(a) * Expr(b)
24
25def expr_rmul(b,a): # rmul -> swap a,b
26 return a * Expr(b)

Callers

nothing calls this directly

Calls 1

ExprFunction · 0.70

Tested by

no test coverage detected