Expand description
Entities to model the Bin Packing Problem (BPP)
Structs§
- BPInstance
- Instance of the Bin Packing Problem: a set of items to be packed into a set of bins.
- BPPlacement
- Encapsulates all required information to place an
Item
in aBPProblem
. - BPProblem
- Modifiable counterpart of
BPInstance
. Items can be placed and removed, bins can be opened and closed. - BPSolution
- Snapshot of
BPProblem
at a specific moment. Can be used to restore to a previous state. - Bin
- LayKey
- Unique key for each
Layout
in aBPProblem
andBPSolution
Enums§
- BPLayout
Type - Enum to distinguish between both existing
Layout
s, and potentially new ones.