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

Method check_contri

graph.py:2432–2438  ·  view source on GitHub ↗
(self, points: list[Point])

Source from the content-addressed store, hash-verified

2430 return add
2431
2432 def check_contri(self, points: list[Point]) -> bool:
2433 a, b, c, x, y, z = points
2434 return (
2435 self.check_cong([a, b, x, y])
2436 and self.check_cong([b, c, y, z])
2437 and self.check_cong([c, a, z, x])
2438 )
2439
2440 def add_contri2(
2441 self, points: list[Point], deps: EmptyDependency

Callers 1

checkMethod · 0.95

Calls 1

check_congMethod · 0.95

Tested by

no test coverage detected