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

Function expr_sub

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

Source from the content-addressed store, hash-verified

14 return Expr(a) + Expr(b)
15
16def expr_sub(a,b):
17 return Expr(a) - Expr(b)
18
19def expr_neg(a):
20 return -Expr(a)

Callers

nothing calls this directly

Calls 1

ExprFunction · 0.70

Tested by

no test coverage detected