MCPcopy Index your code
hub / github.com/google-deepmind/alphageometry / _find

Method _find

problem.py:690–696  ·  view source on GitHub ↗
(self, dep_hashed: tuple[str, ...])

Source from the content-addressed store, hash-verified

688 self.trace = None
689
690 def _find(self, dep_hashed: tuple[str, ...]) -> Dependency:
691 for w in self.why:
692 f = w._find(dep_hashed)
693 if f:
694 return f
695 if w.hashed() == dep_hashed:
696 return w
697
698 def remove_loop(self) -> Dependency:
699 f = self._find(self.hashed())

Callers 1

remove_loopMethod · 0.95

Calls 1

hashedMethod · 0.80

Tested by

no test coverage detected