Skip to content

Commit 66e82d4

Browse files
committed
Fixed tuple BnB metric ordering propagation
1 parent 7d26cc2 commit 66e82d4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/metrics.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ macro_rules! impl_for_tuple {
6565
}
6666
#[allow(unused)]
6767
fn requires_ordering_by_descending_value_pwu(&self) -> bool {
68-
[$(self.$b.0.requires_ordering_by_descending_value_pwu()),*].iter().all(|x| *x)
68+
[$(self.$b.0.requires_ordering_by_descending_value_pwu()),*].iter().any(|x| *x)
6969
}
7070
}
7171
};

0 commit comments

Comments
 (0)