Skip to content

Commit 17e0dcc

Browse files
committed
Remove unsound simp rule
1 parent f75a619 commit 17e0dcc

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

src/preprocess/simp/fwd.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ impl EquivalenceRule for PathPruning {
4848
/// Otherwise, it returns None.
4949
/// This is used to simplify integer (in)equalities in the forward rewriting.
5050
#[derive(Debug, Clone, Copy)]
51+
#[allow(unused)]
5152
pub(super) struct LinIntForward;
5253

5354
impl LinIntForward {

src/preprocess/simp/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ impl Default for Simplifier {
338338
// does not seem to help
339339
//Box::new(int::NormalizeIneq),
340340
Box::new(int::NotComparison),
341-
Box::new(fwd::LinIntForward),
341+
//Box::new(fwd::LinIntForward),
342342
Box::new(fwd::PathPruning),
343343
// Box::new(fwd::LengthConflict),
344344
Box::new(strlen::StringLengthAddition),

0 commit comments

Comments
 (0)