Skip to content

Commit 3bd5f88

Browse files
committed
Fix ignore condition for notification about equality lit propagation
1 parent 9ba246f commit 3bd5f88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/huub/src/solver/engine.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ impl State {
415415
// Enact domain changes and determine change event
416416
let event: IntEvent = match meaning {
417417
IntLitMeaning::Eq(i) => {
418-
if i == lb || i == ub {
418+
if i == lb && i == ub {
419419
return None;
420420
}
421421
if i < lb || i > ub {

0 commit comments

Comments
 (0)