in common/skyline_math.py [0:0]
def can_add(self, start_time: TimeInterval, blocks: List[SkylineBlock]) -> bool:
try:
self._get_updated_time_series(start_time, blocks, operator.add)
return True
except Exception:
return False