Inverse returns the multiplicative inverse of the given variable.
(i1 frontend.Variable)
| 182 | |
| 183 | // Inverse returns the multiplicative inverse of the given variable. |
| 184 | func (builder *builder) Inverse(i1 frontend.Variable) frontend.Variable { |
| 185 | return builder.Div(1, i1) |
| 186 | } |
| 187 | |
| 188 | // --------------------------------------------------------------------------------------------- |
| 189 | // Bit operations |
no test coverage detected