Fixed pathing function for probes
This commit is contained in:
parent
4cb5c7853c
commit
92ef1e8c2e
1 changed files with 1 additions and 0 deletions
|
@ -64,6 +64,7 @@ type Step = {waypoint: Waypoint, prev: string, fuel: number, total: number};
|
|||
type ShortestPath = Array<{symbol: string, fuel: number}>;
|
||||
|
||||
export async function shortestPath(origin: Waypoint, destination: Waypoint, range: number, waypoints: Array<Waypoint>): Promise<ShortestPath> {
|
||||
if (range === 0) range = Infinity;
|
||||
let backtrace: {[key: string]: Step} = {};
|
||||
let fuels: {[key: string]: number} = {}; // fuel = distance + 1 per hop
|
||||
let unvisited: {[key: string]: Waypoint} = {};
|
||||
|
|
Loading…
Add table
Reference in a new issue