MultiBinPacking Class Reference
[Example scripts (models)]
Example: Multi-dimensional bin packing More...
Public Types | |
| enum | { MODEL_SINGLE, MODEL_MULTI } |
Model variants. More... | |
| enum | { BRANCH_DEGREE, BRANCH_AFC } |
Branching to use for the model. More... | |
| enum | { SYMMETRY_NONE, SYMMETRY_MAX_CONFLICT } |
Symmetry breaking to use for the model. More... | |
Public Member Functions | |
| MultiBinPacking (const InstanceOptions &opt) | |
| Actual model. | |
| MultiBinPacking (MultiBinPacking &s) | |
| Constructor for cloning s. | |
| virtual Space * | copy (void) |
| Perform copying during cloning. | |
| virtual void | print (std::ostream &os) const |
| Print solution. | |
Protected Attributes | |
| const Spec | spec |
| Specification. | |
| IntVarArray | bin |
| Bin for each item. | |
| IntVarArray | load |
| Load for each bin. | |
Detailed Description
Example: Multi-dimensional bin packing
Definition at line 105 of file multi-bin-packing.cpp.
Member Enumeration Documentation
| anonymous enum |
Model variants.
- Enumerator:
MODEL_SINGLE Use single-dimensional bin-packing constraints.
MODEL_MULTI Use multi-dimensional bin-packing constraint.
Definition at line 115 of file multi-bin-packing.cpp.
| anonymous enum |
Branching to use for the model.
Definition at line 120 of file multi-bin-packing.cpp.
| anonymous enum |
Symmetry breaking to use for the model.
- Enumerator:
SYMMETRY_NONE Do not use symmetry breaking.
SYMMETRY_MAX_CONFLICT Use a maximal conflict set of items.
Definition at line 125 of file multi-bin-packing.cpp.
Constructor & Destructor Documentation
| MultiBinPacking::MultiBinPacking | ( | const InstanceOptions & | opt | ) | [inline] |
Actual model.
Definition at line 130 of file multi-bin-packing.cpp.
| MultiBinPacking::MultiBinPacking | ( | MultiBinPacking & | s | ) | [inline] |
Constructor for cloning s.
Definition at line 197 of file multi-bin-packing.cpp.
Member Function Documentation
| virtual Space* MultiBinPacking::copy | ( | void | ) | [inline, virtual] |
Perform copying during cloning.
Definition at line 203 of file multi-bin-packing.cpp.
| virtual void MultiBinPacking::print | ( | std::ostream & | os | ) | const [inline, virtual] |
Print solution.
Reimplemented from Gecode::Driver::ScriptBase< BaseSpace >.
Definition at line 208 of file multi-bin-packing.cpp.
Member Data Documentation
const Spec MultiBinPacking::spec [protected] |
Specification.
Definition at line 108 of file multi-bin-packing.cpp.
IntVarArray MultiBinPacking::bin [protected] |
Bin for each item.
Definition at line 110 of file multi-bin-packing.cpp.
IntVarArray MultiBinPacking::load [protected] |
Load for each bin.
Definition at line 112 of file multi-bin-packing.cpp.
The documentation for this class was generated from the following file:
- examples/multi-bin-packing.cpp
