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/SumSquaresEvaluator.cs

    r3187 r3318  
    2828namespace HeuristicLab.Problems.TestFunctions {
    2929  /// <summary>
    30   /// Sum Squares Function<br/>
    31   /// Domain:  [-10.0 , 10.0]^n<br/>
    32   /// Optimum: 0.0 at (0.0, 0.0, ..., 0.0)
     30  /// The Sum Squares function is defined as sum(i * x_i * x_i) for i = 1..n
    3331  /// </summary>
    34   [Item("SumSquaresEvaluator", "Evaluates the sum squares function on a given point. The optimum of this function is 0 at the origin.")]
     32  [Item("SumSquaresEvaluator", "Evaluates the sum squares function on a given point. The optimum of this function is 0 at the origin. The Sum Squares function is defined as sum(i * x_i * x_i) for i = 1..n.")]
    3533  [StorableClass]
    3634  public class SumSquaresEvaluator : SingleObjectiveTestFunctionProblemEvaluator {
    3735    /// <summary>
    38     /// Returns false as the Rosenbrock function is a minimization problem.
     36    /// Returns false as the Sum Squares function is a minimization problem.
    3937    /// </summary>
    4038    public override bool Maximization {
Note: See TracChangeset for help on using the changeset viewer.