Use faster disjointness check for markers (#10439)

This commit is contained in:
konsti
2025-01-09 19:31:51 +01:00
committed by GitHub
parent 14b685d9fb
commit 57367ed327
+1 -2
View File
@@ -1412,8 +1412,7 @@ impl Edges {
// not the resulting edges.
for (left_range, left_child) in left_edges {
for (right_range, right_child) in right_edges {
let intersection = right_range.intersection(left_range);
if intersection.is_empty() {
if right_range.is_disjoint(left_range) {
continue;
}