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

Method test_enumerate_eqangles

graph_test.py:119–128  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

117 self.assertTrue(nm.check_cong([a.num, b.num, c.num, d.num]))
118
119 def test_enumerate_eqangles(self):
120 g = GraphTest.g
121
122 for a, b, c, d, x, y, z, t in g.all_eqangles_8points():
123 self.assertTrue(g.check_eqangle([a, b, c, d, x, y, z, t]))
124 self.assertTrue(
125 nm.check_eqangle(
126 [a.num, b.num, c.num, d.num, x.num, y.num, z.num, t.num]
127 )
128 )
129
130 def test_enumerate_eqratios(self):
131 g = GraphTest.g

Callers

nothing calls this directly

Calls 2

all_eqangles_8pointsMethod · 0.80
check_eqangleMethod · 0.80

Tested by

no test coverage detected