Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
22
def
expr_mul(a,b):
23
return
Expr(a) * Expr(b)
24
25
def
expr_rmul(b,a):
# rmul -> swap a,b
26
return
a * Expr(b)
Callers
nothing calls this directly
Calls
1
Expr
Function · 0.70
Tested by
no test coverage detected