Fix comparing pairs

This commit is contained in:
XANTRONIX 2025-03-15 01:32:32 -04:00
parent 0bba56ac30
commit 4538b3bc84

View file

@ -47,7 +47,7 @@ class Series(dict):
v1, v2 = self[pair[0]], series[pair[1]] v1, v2 = self[pair[0]], series[pair[1]]
if start is not None: if start is not None:
if pair[0] > start: if pair[0] > start or pair[1] > start:
continue continue
sign = SeriesIntersection.cmp(v1, v2) sign = SeriesIntersection.cmp(v1, v2)