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