Last change
on this file since 16100 was
14064,
checked in by gkronber, 8 years ago
|
#1966: first steps for refactoring to use new Encoding framework
|
File size:
876 bytes
|
Line | |
---|
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.Encodings.PackingEncoding.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.