Changeset 4722 for trunk/sources/HeuristicLab.Problems.TestFunctions/3.3/Evaluators/SumSquaresEvaluator.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.TestFunctions/3.3/Evaluators/SumSquaresEvaluator.cs
r4068 r4722 20 20 #endregion 21 21 22 using HeuristicLab.Common; 22 23 using HeuristicLab.Core; 23 24 using HeuristicLab.Data; … … 63 64 } 64 65 66 [StorableConstructor] 67 protected SumSquaresEvaluator(bool deserializing) : base(deserializing) { } 68 protected SumSquaresEvaluator(SumSquaresEvaluator original, Cloner cloner) : base(original, cloner) { } 69 public SumSquaresEvaluator() : base() { } 70 71 public override IDeepCloneable Clone(Cloner cloner) { 72 return new SumSquaresEvaluator(this, cloner); 73 } 74 65 75 public override RealVector GetBestKnownSolution(int dimension) { 66 76 return new RealVector(dimension);
Note: See TracChangeset
for help on using the changeset viewer.