Expand description
Entities to model the Bin Packing Problem (BPP)
Structs§
- BPInstance
- Instance of the Bin Packing Problem.
- BPPlacement
- Encapsulates all required information to place an
Item
in aBPProblem
. - BPProblem
- Dynamic counterpart of
BPInstance
. - BPSolution
- Snapshot of
BPProblem
at a specific moment. Can be used to restore to a previous state. - Bin
- A container in the Bin Packing Problem (BPP) with an associated cost and stock.
- LayKey
- Unique key for each
Layout
in aBPProblem
andBPSolution
Enums§
- BPLayout
Type - Enum to distinguish between both open
Layout
s, and potentially new ones.