Skip to content

Commit 91202ee

Browse files
authored
Remove unused methods (#2303)
1 parent 6d2249a commit 91202ee

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

ast/src/analyzed/mod.rs

-16
Original file line numberDiff line numberDiff line change
@@ -1568,22 +1568,6 @@ impl<T> AlgebraicExpression<T> {
15681568
_ => false,
15691569
})
15701570
}
1571-
1572-
/// @returns true if the expression contains a reference to a next value of a witness column.
1573-
pub fn contains_next_witness_ref(&self) -> bool {
1574-
self.expr_any(|e| match e {
1575-
AlgebraicExpression::Reference(poly) => poly.next && poly.is_witness(),
1576-
_ => false,
1577-
})
1578-
}
1579-
1580-
/// @returns true if the expression contains a reference to a witness column.
1581-
pub fn contains_witness_ref(&self) -> bool {
1582-
self.expr_any(|e| match e {
1583-
AlgebraicExpression::Reference(poly) => poly.is_witness(),
1584-
_ => false,
1585-
})
1586-
}
15871571
}
15881572

15891573
impl<T> ops::Add for AlgebraicExpression<T> {

0 commit comments

Comments
 (0)