Last change
on this file was
16995,
checked in by gkronber, 6 years ago
|
#2520 Update plugin dependencies and references for HL.FLA for new persistence
|
File size:
969 bytes
|
Line | |
---|
1 |
|
---|
2 | using HeuristicLab.Common;
|
---|
3 | using HeuristicLab.Core;
|
---|
4 | using HEAL.Attic;
|
---|
5 |
|
---|
6 | namespace HeuristicLab.Analysis.FitnessLandscape.DataTables {
|
---|
7 |
|
---|
8 | [Item("AutoCorrelationTable", "DataTable that contains a series with the auto correlation function")]
|
---|
9 | [StorableType("FD034211-02CD-418F-B45C-D6C35F8C0651")]
|
---|
10 | public class AutoCorrelationTable : DataTable {
|
---|
11 |
|
---|
12 | #region Construction & Cloning
|
---|
13 |
|
---|
14 | [StorableConstructor]
|
---|
15 | protected AutoCorrelationTable(StorableConstructorFlag _) : base(_) { }
|
---|
16 | protected AutoCorrelationTable(AutoCorrelationTable original, Cloner cloner) : base(original, cloner) { }
|
---|
17 | public AutoCorrelationTable() : base() { }
|
---|
18 | public AutoCorrelationTable(string name) : base(name) { }
|
---|
19 | public AutoCorrelationTable(string name, string description) : base(name, description) { }
|
---|
20 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
21 | return new AutoCorrelationTable(this, cloner);
|
---|
22 | }
|
---|
23 | #endregion
|
---|
24 |
|
---|
25 | }
|
---|
26 |
|
---|
27 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.