Improve error checking
This commit is contained in:
부모
e65f25cc68
커밋
a76fef0449
1개의 변경된 파일과 7개의 추가작업 그리고 0개의 파일을 삭제
|
|
@ -317,6 +317,13 @@ class Grid(object):
|
|||
raise GridError('Misshapen shifts; second axis size should be 3,'
|
||||
' shape is {}'.format(self.shifts.shape))
|
||||
|
||||
if (numpy.abs(self.shifts) > 1).any():
|
||||
raise GridError('Only shifts in the range [-1, 1] are currently supported')
|
||||
|
||||
if (self.shifts < 0).any():
|
||||
# TODO: Test negative shifts
|
||||
warnings.warn('Negative shifts are still experimental and mostly untested, be careful!')
|
||||
|
||||
num_shifts = self.shifts.shape[0]
|
||||
if num_grids is None:
|
||||
num_grids = num_shifts
|
||||
|
|
|
|||
불러오는 중…
테이블 추가
링크 추가
Reference in a new issue