Skip to content

Commit

Permalink
fix #4626
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <[email protected]>
  • Loading branch information
NikolajBjorner committed Aug 12, 2020
1 parent 5ecc59b commit 4045563
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/smt/seq_offset_eq.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ bool seq_offset_eq::find(enode* n1, enode* n2, int& offset) const {
if (n1->get_owner_id() > n2->get_owner_id())
std::swap(n1, n2);
return
!a.is_numeral(n2->get_owner()) &&
!a.is_numeral(n1->get_owner()) &&
!a.is_numeral(n2->get_owner()) &&
m_offset_equalities.find(n1, n2, offset);
}
Expand Down

0 comments on commit 4045563

Please sign in to comment.