(self, n1, n2)
| 125 | n1.d = n2.d |
| 126 | assert n1 < n2, "Wrong ordering of neighbors." |
| 127 | def test_equal_element(self, n1, n2): |
| 128 | n1.element = n2.element |
| 129 | assert n1 < n2, "Wrong ordering of neighbors." |
| 130 | def test_equal(self, n1, n2): |
| 131 | n1.d = n2.d |
| 132 | n1.element = n2.element |
nothing calls this directly
no outgoing calls
no test coverage detected