Skip to content
Advertisement

Tag: path-finding

Fast pathfinding and distance matrix in 2d grid

Context: I’m working on a warehouse simulation that supports different floor designs and simulates one or multiple agents that are tasked with order picking. One order can consist of more than one product. The routing for picking products is solved as a capacitated vehicle routing problem (CVRP). This requires a distance matrix between product locations, for which the A* algorithm

Advertisement