MCPcopy Create free account
hub / github.com/alibaba/GraphScope / align_neighbor_cache

Method align_neighbor_cache

python/graphscope/nx/classes/cache.py:186–187  ·  view source on GitHub ↗
(self, pred=False)

Source from the content-addressed store, hash-verified

184 return self.pred_attr_align
185
186 def align_neighbor_cache(self, pred=False):
187 return self.align_pred_cache() if pred else self.align_succ_cache()
188
189 def align_neighbor_attr_cache(self, pred=True):
190 return self.align_pred_attr_cache() if pred else self.align_succ_attr_cache()

Callers 1

__getitem__Method · 0.80

Calls 2

align_pred_cacheMethod · 0.95
align_succ_cacheMethod · 0.95

Tested by

no test coverage detected