Skip to content

Commit 42789b1

Browse files
src/load_data_for_complexity.cpp: tweak
1 parent 8f7bc67 commit 42789b1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/load_data_for_complexity.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ update_se_duplicate_counts_hist(const Interval6 &curr, const Interval6 &prev,
9797

9898
struct interval_greater {
9999
auto
100-
operator()(const Interval6 &prev, const Interval6 &curr) const -> bool {
101-
return curr < prev; // prev > curr
100+
operator()(const Interval6 &a, const Interval6 &b) const -> bool {
101+
return b < a; // i.e. a > b
102102
}
103103
};
104104

0 commit comments

Comments
 (0)