Last change
on this file since 17712 was
16995,
checked in by gkronber, 6 years ago
|
#2520 Update plugin dependencies and references for HL.FLA for new persistence
|
File size:
1005 bytes
|
Rev | Line | |
---|
[7128] | 1 |
|
---|
| 2 | using HeuristicLab.Common;
|
---|
| 3 | using HeuristicLab.Core;
|
---|
[16573] | 4 | using HEAL.Attic;
|
---|
| 5 |
|
---|
[7128] | 6 | namespace HeuristicLab.Analysis.FitnessLandscape.DataTables {
|
---|
| 7 |
|
---|
| 8 | [Item("QualityTrailSummaryTable", "DataTable that contains a compact description of the quality trail.")]
|
---|
[16573] | 9 | [StorableType("CF7B9594-9A6E-4756-987E-66019366586A")]
|
---|
[7128] | 10 | public class QualityTrailSummaryTable : DataTable {
|
---|
| 11 |
|
---|
| 12 | #region Construction & Cloning
|
---|
| 13 |
|
---|
| 14 | [StorableConstructor]
|
---|
[16573] | 15 | protected QualityTrailSummaryTable(StorableConstructorFlag _) : base(_) { }
|
---|
[7128] | 16 | protected QualityTrailSummaryTable(QualityTrailSummaryTable original, Cloner cloner) : base(original, cloner) { }
|
---|
| 17 | public QualityTrailSummaryTable() : base() { }
|
---|
| 18 | public QualityTrailSummaryTable(string name) : base(name) { }
|
---|
| 19 | public QualityTrailSummaryTable(string name, string description) : base(name, description) { }
|
---|
| 20 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 21 | return new QualityTrailSummaryTable(this, cloner);
|
---|
| 22 | }
|
---|
| 23 | #endregion
|
---|
| 24 |
|
---|
| 25 | }
|
---|
| 26 |
|
---|
| 27 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.