This internal function creates a graph representing a tour through warehouse aisles based on a set of arcs and various parameters like warehouse width and height.
create_tour_graph(
arcs,
warehouse_width_reduced,
warehouse_width_actual,
warehouse_height,
full_aisles,
mapping_not_empty
)
A matrix of arcs representing the updated tour graph.
A matrix or data frame representing the arcs (edges) in the warehouse.
The reduced width of the warehouse.
The actual width of the warehouse.
The height of the warehouse.
A logical vector indicating which aisles are full.
A vector mapping non-empty aisles.