MCPcopy Create free account
hub / github.com/ddbourgin/numpy-ml / __ge__

Method __ge__

numpy_ml/utils/data_structures.py:39–42  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

37 return self.priority > other.priority
38
39 def __ge__(self, other):
40 if not isinstance(other, PQNode):
41 return -1
42 return self.priority >= other.priority
43
44 def __lt__(self, other):
45 if not isinstance(other, PQNode):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected