- 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.ArtificialAnt/3.3/Analyzers/BestAntTrailAnalyzer.cs
r4068 r4722 21 21 22 22 using System.Linq; 23 using HeuristicLab.Common; 23 24 using HeuristicLab.Core; 24 25 using HeuristicLab.Data; … … 65 66 } 66 67 68 [StorableConstructor] 69 private BestAntTrailAnalyzer(bool deserializing) : base(deserializing) { } 70 private BestAntTrailAnalyzer(BestAntTrailAnalyzer original, Cloner cloner) 71 : base(original, cloner) { 72 } 73 public override IDeepCloneable Clone(Cloner cloner) { 74 return new BestAntTrailAnalyzer(this, cloner); 75 } 76 67 77 public override IOperation Apply() { 68 78 ItemArray<SymbolicExpressionTree> expressions = SymbolicExpressionTreeParameter.ActualValue;
Note: See TracChangeset
for help on using the changeset viewer.