:returns: bool -- If their seeds and hash values are both equal then two are equivalent.
(self, other)
| 259 | return len(self.hashvalues) |
| 260 | |
| 261 | def __eq__(self, other): |
| 262 | ''' |
| 263 | :returns: bool -- If their seeds and hash values are both equal then two are equivalent. |
| 264 | ''' |
| 265 | return type(self) is type(other) and \ |
| 266 | self.seed == other.seed and \ |
| 267 | np.array_equal(self.hashvalues, other.hashvalues) |
| 268 | |
| 269 | @classmethod |
| 270 | def union(cls, *mhs): |
nothing calls this directly
no outgoing calls
no test coverage detected