mirror of
https://github.com/fjosw/pyerrors.git
synced 2025-05-15 03:53:41 +02:00
fix: Another bug in range detection of obs._intersection_idx fixed.
This commit is contained in:
parent
99c98aeb9e
commit
c7f17396e5
1 changed files with 10 additions and 2 deletions
|
@ -1,5 +1,7 @@
|
||||||
import warnings
|
import warnings
|
||||||
import pickle
|
import pickle
|
||||||
|
from math import gcd
|
||||||
|
from functools import reduce
|
||||||
import numpy as np
|
import numpy as np
|
||||||
import autograd.numpy as anp # Thinly-wrapped numpy
|
import autograd.numpy as anp # Thinly-wrapped numpy
|
||||||
from autograd import jacobian
|
from autograd import jacobian
|
||||||
|
@ -981,6 +983,12 @@ def _intersection_idx(idl):
|
||||||
List of lists or ranges.
|
List of lists or ranges.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
def _lcm(*args):
|
||||||
|
"""Returns the lowest common multiple of args.
|
||||||
|
|
||||||
|
From python 3.9 onwards the math library contains an lcm function."""
|
||||||
|
return reduce(lambda a, b: a * b // gcd(a, b), args)
|
||||||
|
|
||||||
# Use groupby to efficiently check whether all elements of idl are identical
|
# Use groupby to efficiently check whether all elements of idl are identical
|
||||||
try:
|
try:
|
||||||
g = groupby(idl)
|
g = groupby(idl)
|
||||||
|
@ -993,10 +1001,10 @@ def _intersection_idx(idl):
|
||||||
if len(set([idx[0] for idx in idl])) == 1:
|
if len(set([idx[0] for idx in idl])) == 1:
|
||||||
idstart = max([idx.start for idx in idl])
|
idstart = max([idx.start for idx in idl])
|
||||||
idstop = min([idx.stop for idx in idl])
|
idstop = min([idx.stop for idx in idl])
|
||||||
idstep = max([idx.step for idx in idl])
|
idstep = _lcm(*[idx.step for idx in idl])
|
||||||
return range(idstart, idstop, idstep)
|
return range(idstart, idstop, idstep)
|
||||||
|
|
||||||
return sorted(set.intersection(*[set(o) for o in tt]))
|
return sorted(set.intersection(*[set(o) for o in idl]))
|
||||||
|
|
||||||
|
|
||||||
def _expand_deltas_for_merge(deltas, idx, shape, new_idx):
|
def _expand_deltas_for_merge(deltas, idx, shape, new_idx):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue