MCPcopy Create free account
hub / github.com/google-deepmind/alphageometry / why_connect

Function why_connect

geometry.py:283–287  ·  view source on GitHub ↗
(*pairs: list[tuple[Node, Node]])

Source from the content-addressed store, hash-verified

281
282
283def why_connect(*pairs: list[tuple[Node, Node]]) -> list[Any]:
284 result = []
285 for node1, node2 in pairs:
286 result += node1.why_connect(node2)
287 return result
288
289
290def is_equiv(x: Node, y: Node, level: int = None) -> bool:

Callers

nothing calls this directly

Calls 1

why_connectMethod · 0.80

Tested by

no test coverage detected