Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2817-BinPackingSpeedup/HeuristicLab.Problems.BinPacking/3.3/3D/Material/FrictionalCoefficientTable.cs @ 15646

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

#2817:

  • Dealing with stackable items
  • Enhanced the Evaluator
  • Added parameters some paramters to the packing items
File size: 591 bytes
RevLine 
[15646]1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
7namespace HeuristicLab.Problems.BinPacking3D.Material {
8  public class FrictionalCoefficientTable {
9    private FrictionalCoefficientTable _instance;
10
11    //private MaterialType
12
13    private FrictionalCoefficientTable() {
14
15    }
16
17    public FrictionalCoefficientTable Instance {
18      get {
19        if (_instance == null) {
20          _instance = new FrictionalCoefficientTable();
21        }
22        return _instance;
23      }
24    }
25
26
27
28
29  }
30}
Note: See TracBrowser for help on using the repository browser.