| 129 | ~Context() { m_graph.DropAStarParents(); } |
| 130 | |
| 131 | void Clear() |
| 132 | { |
| 133 | m_distanceMap.clear(); |
| 134 | m_parents.clear(); |
| 135 | } |
| 136 | |
| 137 | bool HasDistance(Vertex const & vertex) const { return m_distanceMap.find(vertex) != m_distanceMap.cend(); } |
| 138 |
no test coverage detected