Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/13/10 09:47:06 (14 years ago)
Author:
abeham
Message:

Updated test functions, added reference for Zakharov
Did not find a reference for SumSquares, just described it
Added wiring for rastrigin and sphere
#934

File:
1 edited

Legend:

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

    r3315 r3318  
    3636  public class GriewankEvaluator : SingleObjectiveTestFunctionProblemEvaluator {
    3737    /// <summary>
    38     /// Returns false as the Griewangk function is a minimization problem.
     38    /// Returns false as the Griewank function is a minimization problem.
    3939    /// </summary>
    4040    public override bool Maximization {
     
    7575    /// </summary>
    7676    /// <param name="point">N-dimensional point for which the test function should be evaluated.</param>
    77     /// <returns>The result value of the Griewangk function at the given point.</returns>
     77    /// <returns>The result value of the Griewank function at the given point.</returns>
    7878    public static double Apply(RealVector point) {
    7979      double result = 0;
     
    9797    /// <param name="point">N-dimensional point for which the test function should be evaluated.</param>
    9898    /// <param name="sqrts">The precomputed array of square roots.</param>
    99     /// <returns>The result value of the Griewangk function at the given point.</returns>
     99    /// <returns>The result value of the Griewank function at the given point.</returns>
    100100    private static double Apply(RealVector point, double[] sqrts) {
    101101      double result = 0;
     
    119119    /// <remarks>Calls <see cref="Apply"/>.</remarks>
    120120    /// <param name="point">N-dimensional point for which the test function should be evaluated.</param>
    121     /// <returns>The result value of the Griewangk function at the given point.</returns>
     121    /// <returns>The result value of the Griewank function at the given point.</returns>
    122122    protected override double EvaluateFunction(RealVector point) {
    123123      if (point.Length > 100)
Note: See TracChangeset for help on using the changeset viewer.