Last change
on this file since 12095 was
7128,
checked in by epitzer, 13 years ago
|
#1696 Integrate fitness landscape analysis plugins from Heureka! repository.
|
File size:
1.0 KB
|
Line | |
---|
1 |
|
---|
2 | using HeuristicLab.Common;
|
---|
3 | using HeuristicLab.Core;
|
---|
4 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
5 | namespace HeuristicLab.Analysis.FitnessLandscape.DataTables {
|
---|
6 |
|
---|
7 | [Item("InformationStabiliyTable", "DataTable that contains a series with the development of information stability over time.")]
|
---|
8 | [StorableClass]
|
---|
9 | public class InformationStabilityTable : DataTable {
|
---|
10 |
|
---|
11 | #region Construction & Cloning
|
---|
12 |
|
---|
13 | [StorableConstructor]
|
---|
14 | protected InformationStabilityTable(bool deserializing) : base(deserializing) { }
|
---|
15 | protected InformationStabilityTable(InformationStabilityTable original, Cloner cloner) : base(original, cloner) { }
|
---|
16 | public InformationStabilityTable() : base() { }
|
---|
17 | public InformationStabilityTable(string name) : base(name) { }
|
---|
18 | public InformationStabilityTable(string name, string description) : base(name, description) { }
|
---|
19 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
20 | return new InformationStabilityTable(this, cloner);
|
---|
21 | }
|
---|
22 | #endregion
|
---|
23 |
|
---|
24 | }
|
---|
25 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.