Changeset 15585 for branches/2817-BinPackingSpeedup/HeuristicLab.Problems.BinPacking/3.3/3D/Algorithms/ExtremePointAlgorithm.cs
- Timestamp:
- 01/09/18 15:46:53 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2817-BinPackingSpeedup/HeuristicLab.Problems.BinPacking/3.3/3D/Algorithms/ExtremePointAlgorithm.cs
r15488 r15585 205 205 SortingMethod[] sortings, 206 206 FittingMethod[] fittings, 207 ExtremePointCreationMethod[] e PGeneration,207 ExtremePointCreationMethod[] epCreationMethods, 208 208 CancellationToken token) { 209 209 SortingMethod? bestSorting = null; … … 214 214 foreach (var fit in fittings) { 215 215 foreach (var sort in sortings) { 216 foreach (var epCreation in e PGeneration) {216 foreach (var epCreation in epCreationMethods) { 217 217 IDecoder<Permutation> decoder = new ExtremePointPermutationDecoder() { 218 218 FittingMethod = fit,
Note: See TracChangeset
for help on using the changeset viewer.