(self, vertex, pos)
| 10 | return self.node_position[vertex] |
| 11 | |
| 12 | def set_position(self, vertex, pos): |
| 13 | self.node_position[vertex] = pos |
| 14 | |
| 15 | def top_to_bottom(self, heap, start, size, positions): |
| 16 | if start > size // 2 - 1: |
no outgoing calls
no test coverage detected