| 68 | } |
| 69 | |
| 70 | Maybe<bool> PathFinder::explore(Maybe<unsigned> maxExploreNodes) { |
| 71 | return m_astar->explore(maxExploreNodes); |
| 72 | } |
| 73 | |
| 74 | Maybe<Path> const& PathFinder::result() const { |
| 75 | return m_astar->result(); |
no outgoing calls
no test coverage detected