Skip to content

Commit

Permalink
Fix proof oom by actually counting all neighbors
Browse files Browse the repository at this point in the history
  • Loading branch information
pavpanchekha committed Dec 5, 2024
1 parent 1b2d004 commit b60c533
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/explain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1619,8 +1619,8 @@ impl<'x, L: Language> ExplainNodes<'x, L> {
for other in others.iter() {
congruence_neighbors[usize::from(*enode)].push(*other);
congruence_neighbors[usize::from(*other)].push(*enode);
counter += 1;
}
counter += 1;
others.push(*enode);
} else {
counter += 1;
Expand Down

0 comments on commit b60c533

Please sign in to comment.