Rev | Line | |
---|
[13613] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Text;
|
---|
| 5 | using System.Threading.Tasks;
|
---|
| 6 | using HeuristicLab.Common;
|
---|
| 7 | using HeuristicLab.Core;
|
---|
| 8 | using HeuristicLab.Encodings.PermutationEncoding;
|
---|
| 9 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 10 |
|
---|
| 11 | namespace HeuristicLab.Problems.BinPacking.Encodings.PackingSequence {
|
---|
| 12 | [Item("PackingSequence", "Represents a packing sequence (permutation).")]
|
---|
| 13 | [StorableClass]
|
---|
| 14 | public class PackingSequence : Permutation {
|
---|
| 15 |
|
---|
| 16 | [StorableConstructor]
|
---|
| 17 | private PackingSequence(bool deserializing) : base(deserializing) { }
|
---|
| 18 | private PackingSequence(PackingSequence original, Cloner cloner) : base(original, cloner) { }
|
---|
| 19 | public PackingSequence() { }
|
---|
| 20 |
|
---|
| 21 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 22 | return new PackingSequence(this, cloner);
|
---|
| 23 | }
|
---|
| 24 | }
|
---|
| 25 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.