Fix comparing pairs
This commit is contained in:
parent
0bba56ac30
commit
4538b3bc84
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||||
|
|
Loading…
Add table
Reference in a new issue