Last change
on this file since 10151 was
7128,
checked in by epitzer, 13 years ago
|
#1696 Integrate fitness landscape analysis plugins from Heureka! repository.
|
File size:
985 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("AutoCorrelationTable", "DataTable that contains a series with the auto correlation function")]
|
---|
| 8 | [StorableClass]
|
---|
| 9 | public class AutoCorrelationTable : DataTable {
|
---|
| 10 |
|
---|
| 11 | #region Construction & Cloning
|
---|
| 12 |
|
---|
| 13 | [StorableConstructor]
|
---|
| 14 | protected AutoCorrelationTable(bool deserializing) : base(deserializing) { }
|
---|
| 15 | protected AutoCorrelationTable(AutoCorrelationTable original, Cloner cloner) : base(original, cloner) { }
|
---|
| 16 | public AutoCorrelationTable() : base() { }
|
---|
| 17 | public AutoCorrelationTable(string name) : base(name) { }
|
---|
| 18 | public AutoCorrelationTable(string name, string description) : base(name, description) { }
|
---|
| 19 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 20 | return new AutoCorrelationTable(this, cloner);
|
---|
| 21 | }
|
---|
| 22 | #endregion
|
---|
| 23 |
|
---|
| 24 | }
|
---|
| 25 |
|
---|
| 26 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.