Last change
on this file since 15866 was
15731,
checked in by rhanghof, 7 years ago
|
#2817:
- Added a new packer.
- Enhanced the material types.
- Added extreme point pruning for layer support in the extrem point creators.
- BinPacking3D: Added a graph for calculating weigth distribution of the items.
|
File size:
1.3 KB
|
Line | |
---|
1 | using HeuristicLab.Common;
|
---|
2 | using HeuristicLab.Core;
|
---|
3 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
4 | using System;
|
---|
5 | using System.Collections.Generic;
|
---|
6 | using System.Linq;
|
---|
7 | using System.Text;
|
---|
8 | using System.Threading.Tasks;
|
---|
9 |
|
---|
10 | namespace HeuristicLab.Problems.BinPacking3D.Graph {
|
---|
11 | [Item("Vertex", "An object representing a vertex in the graph. It can have a text label, a weight, and an additional data object.")]
|
---|
12 | [StorableClass]
|
---|
13 | public class VertexWithItemId : Vertex {
|
---|
14 | [Storable]
|
---|
15 | private int _itemId;
|
---|
16 |
|
---|
17 | public int ItemId {
|
---|
18 | get { return _itemId; }
|
---|
19 | protected set { _itemId = value; }
|
---|
20 | }
|
---|
21 |
|
---|
22 | [StorableConstructor]
|
---|
23 | public VertexWithItemId(bool deserializing) : base(deserializing) { }
|
---|
24 |
|
---|
25 | [StorableHook(HookType.AfterDeserialization)]
|
---|
26 | private void AfterDeserialization() { }
|
---|
27 |
|
---|
28 | public VertexWithItemId(int itemId)
|
---|
29 | : base() {
|
---|
30 | _itemId = itemId;
|
---|
31 | }
|
---|
32 |
|
---|
33 | protected VertexWithItemId(Vertex original, Cloner cloner)
|
---|
34 | : base(original, cloner) {
|
---|
35 | if (original is VertexWithItemId) {
|
---|
36 | _itemId = ((VertexWithItemId)original).ItemId;
|
---|
37 | }
|
---|
38 | }
|
---|
39 |
|
---|
40 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
41 | return new VertexWithItemId(this, cloner);
|
---|
42 | }
|
---|
43 |
|
---|
44 | public override string ToString() {
|
---|
45 | return $"Vertex: {ItemId}";
|
---|
46 | }
|
---|
47 | }
|
---|
48 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.