diff --git a/crates/prover/src/core/circle.rs b/crates/prover/src/core/circle.rs index 3ec13bc43..4ebf442ac 100644 --- a/crates/prover/src/core/circle.rs +++ b/crates/prover/src/core/circle.rs @@ -269,7 +269,7 @@ impl Mul for CirclePointIndex { type Output = Self; fn mul(self, rhs: usize) -> Self::Output { - Self(self.0 * rhs).reduce() + Self(self.0.wrapping_mul(rhs)).reduce() } }