Free cookie consent management tool by TermsFeed Policy Generator

source: branches/FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/DataTables/InformationAnalysisTable.cs @ 7128

Last change on this file since 7128 was 7128, checked in by epitzer, 12 years ago

#1696 Integrate fitness landscape analysis plugins from Heureka! repository.

File size: 1022 bytes
Line 
1
2using HeuristicLab.Common;
3using HeuristicLab.Core;
4using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
5namespace HeuristicLab.Analysis.FitnessLandscape.DataTables {
6
7  [Item("InformationAnalysisTable", "DataTable that contains series with results of an information analysis")]
8  [StorableClass]
9  public class InformationAnalysisTable : DataTable {
10
11    #region Construction & Cloning
12
13    [StorableConstructor]
14    protected InformationAnalysisTable(bool deserializing) : base(deserializing) { }
15    protected InformationAnalysisTable(InformationAnalysisTable original, Cloner cloner) : base(original, cloner) { }
16    public InformationAnalysisTable() : base() { }
17    public InformationAnalysisTable(string name) : base(name) { }
18    public InformationAnalysisTable(string name, string description) : base(name, description) { }
19    public override IDeepCloneable Clone(Cloner cloner) {
20      return new InformationAnalysisTable(this, cloner);
21    }
22    #endregion
23
24  }
25}
Note: See TracBrowser for help on using the repository browser.