Last change
on this file since 14906 was
14876,
checked in by dsouravl, 8 years ago
|
#2762: implemented sorting heuristics, starting to work on best fit heuristics
|
File size:
507 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using System.Threading.Tasks;
|
---|
6 |
|
---|
7 | namespace HeuristicLab.Problems.BinPacking {
|
---|
8 | public class BestFitHeuristic {
|
---|
9 | public List<BinPacking3D.BinPacking3D> MinimizeFreeVolume(List<BinPacking3D.PackingItem> items, BinPacking3D.PackingShape binShape) {
|
---|
10 | var packing = new List<BinPacking3D.BinPacking3D>();
|
---|
11 | packing.Add(new BinPacking3D.BinPacking3D(binShape));
|
---|
12 |
|
---|
13 | return packing;
|
---|
14 | }
|
---|
15 | }
|
---|
16 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.