The Crane Simulation Project models the operation of a crane managing containers in a set of storage bays. The crane can move between bays, pick up containers, and drop them, while tracking the total operational cost. This project provides a foundation for simulating and optimizing warehouse or shipping yard operations.
initial_bays
: Represents storage bays as a list of lists. Each sublist contains the IDs of containers in a specific bay. Example:initial_bays = [[1, 2], [], [4], []]