Free cookie consent management tool by TermsFeed Policy Generator

source: addons/HeuristicLab.FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/DataTables/InformationStabilityTable.cs @ 18068

Last change on this file since 18068 was 16995, checked in by gkronber, 6 years ago

#2520 Update plugin dependencies and references for HL.FLA for new persistence

File size: 1.0 KB
Line 
1
2using HeuristicLab.Common;
3using HeuristicLab.Core;
4using HEAL.Attic;
5
6namespace HeuristicLab.Analysis.FitnessLandscape.DataTables {
7
8  [Item("InformationStabiliyTable", "DataTable that contains a series with the development of information stability over time.")]
9  [StorableType("004EF230-DB82-413F-B6B0-8FB68C3901BB")]
10  public class InformationStabilityTable : DataTable {
11
12    #region Construction & Cloning
13
14    [StorableConstructor]
15    protected InformationStabilityTable(StorableConstructorFlag _) : base(_) { }
16    protected InformationStabilityTable(InformationStabilityTable original, Cloner cloner) : base(original, cloner) { }
17    public InformationStabilityTable() : base() { }
18    public InformationStabilityTable(string name) : base(name) { }
19    public InformationStabilityTable(string name, string description) : base(name, description) { }
20    public override IDeepCloneable Clone(Cloner cloner) {
21      return new InformationStabilityTable(this, cloner);
22    }
23    #endregion
24
25  }
26}
Note: See TracBrowser for help on using the repository browser.