Skip to content

Commit 1ab98b3

Browse files
committed
Fix failing test
1 parent 69be2d2 commit 1ab98b3

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

executor/src/witgen/multiplicity_column_generator.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -158,9 +158,7 @@ impl<'a, T: FieldElement> MultiplicityColumnGenerator<'a, T> {
158158
bus_id: Option<&AlgebraicExpression<T>>,
159159
) -> (usize, Vec<(usize, Vec<T>, Option<T>)>) {
160160
let machine_size = selected_expressions
161-
.expressions
162-
.iter()
163-
.flat_map(|expr| expr.all_children())
161+
.all_children()
164162
.filter_map(|expr| match expr {
165163
AlgebraicExpression::Reference(ref r) => match r.poly_id.ptype {
166164
PolynomialType::Committed | PolynomialType::Constant => {

0 commit comments

Comments
 (0)