Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/08/13 18:57:53 (11 years ago)
Author:
jkarder
Message:

#2029:

  • added EvaluateFunction to ISingleObjectiveTestFunctionProblemEvaluator and adapted evaluators
  • fixed SingleObjectiveTestFunctionImprovementOperator
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.TestFunctions/3.3/Evaluators/SphereEvaluator.cs

    r7259 r9345  
    132132    /// <param name="point">N-dimensional point for which the test function should be evaluated.</param>
    133133    /// <returns>The result value of the Sphere function at the given point.</returns>
    134     protected override double EvaluateFunction(RealVector point) {
     134    public override double EvaluateFunction(RealVector point) {
    135135      return Apply(point, C.Value, Alpha.Value);
    136136    }
Note: See TracChangeset for help on using the changeset viewer.