Last change
on this file since 15166 was
7128,
checked in by epitzer, 13 years ago
|
#1696 Integrate fitness landscape analysis plugins from Heureka! repository.
|
File size:
1022 bytes
|
Rev | Line | |
---|
[7128] | 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("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.