Learn R Programming

warehouseTools (version 0.1.2)

create_tour_graph: Create a Tour Graph for Warehouse Aisles

Description

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.

Usage

create_tour_graph(
  arcs,
  warehouse_width_reduced,
  warehouse_width_actual,
  warehouse_height,
  full_aisles,
  mapping_not_empty
)

Value

A matrix of arcs representing the updated tour graph.

Arguments

arcs

A matrix or data frame representing the arcs (edges) in the warehouse.

warehouse_width_reduced

The reduced width of the warehouse.

warehouse_width_actual

The actual width of the warehouse.

warehouse_height

The height of the warehouse.

full_aisles

A logical vector indicating which aisles are full.

mapping_not_empty

A vector mapping non-empty aisles.