Changeset 12892 for branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.TravelingSalesman/3.3/Analyzers
- Timestamp:
- 08/23/15 13:21:12 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.TravelingSalesman/3.3/Analyzers/TSPGenealogyAnalyzer.cs
r11864 r12892 1 using HeuristicLab.Core; 1 using HeuristicLab.Common; 2 using HeuristicLab.Core; 2 3 using HeuristicLab.Encodings.PermutationEncoding; 3 4 using HeuristicLab.EvolutionTracking; … … 12 13 [StorableConstructor] 13 14 protected TSPGenealogyAnalyzer(bool deserializing) : base(deserializing) { } 15 16 public TSPGenealogyAnalyzer(TSPGenealogyAnalyzer original, Cloner cloner) : base(original, cloner) { 17 } 18 19 public override IDeepCloneable Clone(Cloner cloner) { 20 return new TSPGenealogyAnalyzer(this, cloner); 21 } 22 23 protected override void EvaluateIntermediateChildren() { 24 throw new System.NotImplementedException(); 25 } 14 26 } 15 27 }
Note: See TracChangeset
for help on using the changeset viewer.