diff --git a/crates/recursion/core/src/air/is_zero.rs b/crates/recursion/core/src/air/is_zero.rs index c1e469c49..ec468c6a8 100644 --- a/crates/recursion/core/src/air/is_zero.rs +++ b/crates/recursion/core/src/air/is_zero.rs @@ -65,8 +65,6 @@ impl IsZeroOperation { builder.when(is_real.clone()).assert_eq(is_zero, cols.result); - builder.when(is_real.clone()).assert_bool(cols.result); - // If the result is 1, then the input is 0. builder.when(is_real.clone()).when(cols.result).assert_zero(a.clone()); }