using HeuristicLab.Common; using HeuristicLab.Core; using HEAL.Attic; namespace HeuristicLab.Analysis.FitnessLandscape.DataTables { [Item("InformationStabiliyTable", "DataTable that contains a series with the development of information stability over time.")] [StorableType("004EF230-DB82-413F-B6B0-8FB68C3901BB")] public class InformationStabilityTable : DataTable { #region Construction & Cloning [StorableConstructor] protected InformationStabilityTable(StorableConstructorFlag _) : base(_) { } protected InformationStabilityTable(InformationStabilityTable original, Cloner cloner) : base(original, cloner) { } public InformationStabilityTable() : base() { } public InformationStabilityTable(string name) : base(name) { } public InformationStabilityTable(string name, string description) : base(name, description) { } public override IDeepCloneable Clone(Cloner cloner) { return new InformationStabilityTable(this, cloner); } #endregion } }