Last change
on this file since 16591 was
16573,
checked in by gkronber, 6 years ago
|
#2520: changed HeuristicLab.FLA addon to compile with new HL.Persistence
|
File size:
1.1 KB
|
Line | |
---|
1 |
|
---|
2 | using HeuristicLab.Common;
|
---|
3 | using HeuristicLab.Core;
|
---|
4 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
5 | using HEAL.Attic;
|
---|
6 |
|
---|
7 | namespace HeuristicLab.Analysis.FitnessLandscape.DataTables {
|
---|
8 |
|
---|
9 | [Item("InformationStabiliyTable", "DataTable that contains a series with the development of information stability over time.")]
|
---|
10 | [StorableType("004EF230-DB82-413F-B6B0-8FB68C3901BB")]
|
---|
11 | public class InformationStabilityTable : DataTable {
|
---|
12 |
|
---|
13 | #region Construction & Cloning
|
---|
14 |
|
---|
15 | [StorableConstructor]
|
---|
16 | protected InformationStabilityTable(StorableConstructorFlag _) : base(_) { }
|
---|
17 | protected InformationStabilityTable(InformationStabilityTable original, Cloner cloner) : base(original, cloner) { }
|
---|
18 | public InformationStabilityTable() : base() { }
|
---|
19 | public InformationStabilityTable(string name) : base(name) { }
|
---|
20 | public InformationStabilityTable(string name, string description) : base(name, description) { }
|
---|
21 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
22 | return new InformationStabilityTable(this, cloner);
|
---|
23 | }
|
---|
24 | #endregion
|
---|
25 |
|
---|
26 | }
|
---|
27 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.