Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/06/10 01:56:04 (13 years ago)
Author:
swagner
Message:

Merged cloning refactoring branch back into trunk (#922)

Location:
trunk/sources
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources

  • trunk/sources/HeuristicLab.Problems.TestFunctions/3.3/Evaluators/BealeEvaluator.cs

    r4068 r4722  
    2121
    2222using System;
     23using HeuristicLab.Common;
    2324using HeuristicLab.Core;
    2425using HeuristicLab.Data;
     
    6566    }
    6667
     68    [StorableConstructor]
     69    protected BealeEvaluator(bool deserializing) : base(deserializing) { }
     70    protected BealeEvaluator(BealeEvaluator original, Cloner cloner) : base(original, cloner) { }
     71    public BealeEvaluator() : base() { }
     72
     73    public override IDeepCloneable Clone(Cloner cloner) {
     74      return new BealeEvaluator(this, cloner);
     75    }
     76
    6777    public override RealVector GetBestKnownSolution(int dimension) {
    6878      if (dimension != 2) throw new ArgumentException(Name + ": This function is only defined for 2 dimensions.", "dimension");
Note: See TracChangeset for help on using the changeset viewer.