| 124 | } |
| 125 | |
| 126 | bool PathIsFakeLoop(std::vector<geometry::PointWithAltitude> const & path) |
| 127 | { |
| 128 | return path.size() == 2 && path[0] == path[1]; |
| 129 | } |
| 130 | |
| 131 | double CalcRouteDistanceM(std::vector<geometry::PointWithAltitude> const & junctions, uint32_t start, uint32_t end) |
| 132 | { |
no test coverage detected