(a, b, c frontend.Variable)
| 41 | } |
| 42 | |
| 43 | func (builder *builder) MulAcc(a, b, c frontend.Variable) frontend.Variable { |
| 44 | return builder.Add(builder.Mul(b, c), a) |
| 45 | } |
| 46 | |
| 47 | // Sub computes the difference between the given variables. |
| 48 | // When more than two variables are provided, the difference is computed as i1 - Σ(i2...). |
no test coverage detected