(self, s, x, y)
| 85 | self.a.MultAdd(s*self.s*x.s,x.a,y.a) |
| 86 | |
| 87 | def MultTransAdd(self, s, x, y): |
| 88 | self.a.MultTransAdd(s*self.s*x.s,x.a,y.a) |
| 89 | |
| 90 | def __mul__(self, other): |
| 91 | if isinstance(Expr(other), VecExpr): |
no outgoing calls
no test coverage detected