[repetition.Grid] drop b_vector=None handling (guaranteed to be zeros now)
This commit is contained in:
parent
3792248cd1
commit
a6ea5c08e6
1 changed files with 0 additions and 4 deletions
|
|
@ -298,10 +298,6 @@ class Grid(Repetition):
|
|||
return self.b_count < other.b_count
|
||||
if not numpy.array_equal(self.a_vector, other.a_vector):
|
||||
return tuple(self.a_vector) < tuple(other.a_vector)
|
||||
if self.b_vector is None:
|
||||
return other.b_vector is not None
|
||||
if other.b_vector is None:
|
||||
return False
|
||||
if not numpy.array_equal(self.b_vector, other.b_vector):
|
||||
return tuple(self.b_vector) < tuple(other.b_vector)
|
||||
return False
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue