Changeset 4722 for trunk/sources/HeuristicLab.Problems.TravelingSalesman/3.3/Analyzers/TSPAlleleFrequencyAnalyzer.cs
- Timestamp:
- 11/06/10 01:56:04 (14 years ago)
- Location:
- trunk/sources
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources
- Property svn:mergeinfo changed
/branches/CloningRefactoring (added) merged: 4656-4693,4696-4697,4711-4714,4718-4719
- Property svn:mergeinfo changed
-
trunk/sources/HeuristicLab.Problems.TravelingSalesman/3.3/Analyzers/TSPAlleleFrequencyAnalyzer.cs
r4704 r4722 22 22 using System; 23 23 using HeuristicLab.Analysis; 24 using HeuristicLab.Common; 24 25 using HeuristicLab.Core; 25 26 using HeuristicLab.Data; … … 41 42 [StorableConstructor] 42 43 private TSPAlleleFrequencyAnalyzer(bool deserializing) : base(deserializing) { } 44 private TSPAlleleFrequencyAnalyzer(TSPAlleleFrequencyAnalyzer original, Cloner cloner) : base(original, cloner) { } 43 45 public TSPAlleleFrequencyAnalyzer() 44 46 : base() { 45 47 Parameters.Add(new LookupParameter<DoubleMatrix>("Coordinates", "The x- and y-Coordinates of the cities.")); 48 } 49 50 public override IDeepCloneable Clone(Cloner cloner) { 51 return new TSPAlleleFrequencyAnalyzer(this, cloner); 46 52 } 47 53
Note: See TracChangeset
for help on using the changeset viewer.