Last change
on this file since 15554 was
15488,
checked in by rhanghof, 7 years ago
|
#2817:
- Added line projection based bin packing
- Added residual spaces to the view
|
File size:
365 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.BinPacking3D {
|
---|
8 | public class BinPacking3DException : Exception {
|
---|
9 | public BinPacking3DException() : base() {
|
---|
10 |
|
---|
11 | }
|
---|
12 | public BinPacking3DException(string message) : base(message) {
|
---|
13 | }
|
---|
14 | }
|
---|
15 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.