Last change
on this file since 15554 was
15520,
checked in by rhanghof, 7 years ago
|
#2817:
- Changed the calculation algorithm for creating extreme points by using line based projection
- Changed the calculation of the residual spaces for line based projection
|
File size:
616 bytes
|
Line | |
---|
1 | using HeuristicLab.Problems.BinPacking3D;
|
---|
2 | using System;
|
---|
3 | using System.Collections.Generic;
|
---|
4 | using System.Linq;
|
---|
5 | using System.Text;
|
---|
6 | using System.Threading.Tasks;
|
---|
7 |
|
---|
8 | namespace HeuristicLab.Problems.BinPacking3D.ExtremePointCreation {
|
---|
9 | public interface IExtremePointCreator {
|
---|
10 |
|
---|
11 | /// <summary>
|
---|
12 | /// Updates the extreme points for a given bin packing
|
---|
13 | /// </summary>
|
---|
14 | /// <param name="binPacking"></param>
|
---|
15 | /// <param name="item"></param>
|
---|
16 | /// <param name="position"></param>
|
---|
17 | void UpdateBinPacking(BinPacking3D binPacking, PackingItem item, PackingPosition position);
|
---|
18 |
|
---|
19 |
|
---|
20 | }
|
---|
21 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.