Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2817-BinPackingSpeedup/HeuristicLab.Problems.BinPacking/3.3/3D/BinPacking3DException.cs @ 15520

Last change on this file since 15520 was 15488, checked in by rhanghof, 6 years ago

#2817:

  • Added line projection based bin packing
  • Added residual spaces to the view
File size: 365 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
7namespace 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.