diff --git a/src/field/extension_field/target.rs b/src/field/extension_field/target.rs index 9976123e..7a72f7e0 100644 --- a/src/field/extension_field/target.rs +++ b/src/field/extension_field/target.rs @@ -63,7 +63,7 @@ impl CircuitBuilder { self.mul_add(a.0[i], b.0[j], res[(i + j) % D]) } else { // W * a[i] * b[i] + res[(i + j) % D] - self.arithmetic(F::Extension::W, a.0[i], b.0[i], F::Extension::ONE, res[(i + j) % D]); + self.arithmetic(F::Extension::W, a.0[i], b.0[i], F::ONE, res[(i + j) % D]) } } }