Last change
on this file since 17842 was
14658,
checked in by epitzer, 8 years ago
|
#2727 add tracking (snapshot) analyzer and new visualization for permutations
|
File size:
924 bytes
|
Line | |
---|
1 | using HeuristicLab.Common;
|
---|
2 | using HeuristicLab.Core;
|
---|
3 | using HeuristicLab.Data;
|
---|
4 | using HeuristicLab.Optimization;
|
---|
5 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
6 |
|
---|
7 | namespace HeuristicLab.Analysis {
|
---|
8 |
|
---|
9 | [Item("DoubleArraySnapshotCreaterAnalyzer", "An operator that adds lightweight snapshots to all DoubleArrays`s for later analysis.")]
|
---|
10 | [StorableClass]
|
---|
11 | public sealed class DoubleArraySnapshotCreaterAnalyzer : SnapshotCreaterAnalyzer<double>, IAnalyzer {
|
---|
12 | [StorableConstructor]
|
---|
13 | private DoubleArraySnapshotCreaterAnalyzer(bool deserializing) : base(deserializing) { }
|
---|
14 | private DoubleArraySnapshotCreaterAnalyzer(DoubleArraySnapshotCreaterAnalyzer original, Cloner cloner) : base(original, cloner) { }
|
---|
15 | public DoubleArraySnapshotCreaterAnalyzer() { }
|
---|
16 | public override IDeepCloneable Clone(Cloner cloner) { return new DoubleArraySnapshotCreaterAnalyzer(this, cloner); }
|
---|
17 | }
|
---|
18 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.