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:
898 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("IntArraySnapshotCreaterAnalyzer", "An operator that adds lightweight snapshots to all IntArray`s for later analysis.")]
|
---|
10 | [StorableClass]
|
---|
11 | public sealed class IntArraySnapshotCreaterAnalyzer : SnapshotCreaterAnalyzer<int>, IAnalyzer {
|
---|
12 |
|
---|
13 | [StorableConstructor]
|
---|
14 | private IntArraySnapshotCreaterAnalyzer(bool deserializing) : base(deserializing) { }
|
---|
15 | private IntArraySnapshotCreaterAnalyzer(IntArraySnapshotCreaterAnalyzer original, Cloner cloner) : base(original, cloner) { }
|
---|
16 | public IntArraySnapshotCreaterAnalyzer() { }
|
---|
17 | public override IDeepCloneable Clone(Cloner cloner) { return new IntArraySnapshotCreaterAnalyzer(this, cloner); }
|
---|
18 | }
|
---|
19 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.