ScoreCandidatePathsGetter::Link ----------------------------------------------------------------------
| 68 | |
| 69 | // ScoreCandidatePathsGetter::Link ---------------------------------------------------------------------- |
| 70 | Graph::Edge ScoreCandidatePathsGetter::Link::GetStartEdge() const |
| 71 | { |
| 72 | auto * start = this; |
| 73 | while (start->m_parent) |
| 74 | start = start->m_parent.get(); |
| 75 | |
| 76 | return start->m_edge; |
| 77 | } |
| 78 | |
| 79 | bool ScoreCandidatePathsGetter::Link::IsJunctionInPath(geometry::PointWithAltitude const & j) const |
| 80 | { |
no test coverage detected