Changeset 4722 for trunk/sources/HeuristicLab.Problems.TestFunctions/3.3/Analyzers/BestSingleObjectiveTestFunctionSolutionAnalyzer.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/Analyzers/BestSingleObjectiveTestFunctionSolutionAnalyzer.cs
r4098 r4722 21 21 22 22 using System.Linq; 23 using HeuristicLab.Common; 23 24 using HeuristicLab.Core; 24 25 using HeuristicLab.Data; … … 72 73 [StorableConstructor] 73 74 protected BestSingleObjectiveTestFunctionSolutionAnalyzer(bool deserializing) : base(deserializing) { } 75 protected BestSingleObjectiveTestFunctionSolutionAnalyzer(BestSingleObjectiveTestFunctionSolutionAnalyzer original, Cloner cloner) : base(original, cloner) { } 74 76 public BestSingleObjectiveTestFunctionSolutionAnalyzer() 75 77 : base() { … … 89 91 /// </summary> 90 92 [StorableHook(HookType.AfterDeserialization)] 91 private void CompatibilityMethod() {93 private void AfterDeserialization() { 92 94 // BackwardsCompatibility3.3 93 95 // Bounds are introduced in 3.3.0.3894 94 96 if (!Parameters.ContainsKey("Bounds")) 95 97 Parameters.Add(new LookupParameter<DoubleMatrix>("Bounds", "The bounds of the function.")); 98 } 99 100 public override IDeepCloneable Clone(Cloner cloner) { 101 return new BestSingleObjectiveTestFunctionSolutionAnalyzer(this, cloner); 96 102 } 97 103
Note: See TracChangeset
for help on using the changeset viewer.