Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.TestFunctions/3.3/Evaluators/ZakharovEvaluator.cs @ 4068

Last change on this file since 4068 was 4068, checked in by swagner, 14 years ago

Sorted usings and removed unused usings in entire solution (#1094)

File size: 3.9 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using HeuristicLab.Core;
23using HeuristicLab.Data;
24using HeuristicLab.Encodings.RealVectorEncoding;
25using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
26
27namespace HeuristicLab.Problems.TestFunctions {
28  /// <summary>
29  /// The Zakharov function is implemented as described in Hedar, A. & Fukushima, M. 2004. Heuristic pattern search and its hybridization with simulated annealing for nonlinear global optimization. Optimization Methods and Software 19, pp. 291-308, Taylor & Francis.
30  /// </summary>
31  [Item("ZakharovEvaluator", "Evaluates the Zakharov function on a given point. The optimum of this function is 0 at the origin. It is implemented as described in Hedar, A. & Fukushima, M. 2004. Heuristic pattern search and its hybridization with simulated annealing for nonlinear global optimization. Optimization Methods and Software 19, pp. 291-308, Taylor & Francis.")]
32  [StorableClass]
33  public class ZakharovEvaluator : SingleObjectiveTestFunctionProblemEvaluator {
34    /// <summary>
35    /// Returns false as the Zakharov function is a minimization problem.
36    /// </summary>
37    public override bool Maximization {
38      get { return false; }
39    }
40    /// <summary>
41    /// Gets the optimum function value (0).
42    /// </summary>
43    public override double BestKnownQuality {
44      get { return 0; }
45    }
46    /// <summary>
47    /// Gets the lower and upper bound of the function.
48    /// </summary>
49    public override DoubleMatrix Bounds {
50      get { return new DoubleMatrix(new double[,] { { -5, 10 } }); }
51    }
52    /// <summary>
53    /// Gets the minimum problem size (1).
54    /// </summary>
55    public override int MinimumProblemSize {
56      get { return 1; }
57    }
58    /// <summary>
59    /// Gets the (theoretical) maximum problem size (2^31 - 1).
60    /// </summary>
61    public override int MaximumProblemSize {
62      get { return int.MaxValue; }
63    }
64
65    public override RealVector GetBestKnownSolution(int dimension) {
66      return new RealVector(dimension);
67    }
68
69    /// <summary>
70    /// Evaluates the test function for a specific <paramref name="point"/>.
71    /// </summary>
72    /// <param name="point">N-dimensional point for which the test function should be evaluated.</param>
73    /// <returns>The result value of the Zakharov function at the given point.</returns>
74    public static double Apply(RealVector point) {
75      int length = point.Length;
76      double s1 = 0;
77      double s2 = 0;
78
79      for (int i = 0; i < length; i++) {
80        s1 += point[i] * point[i];
81        s2 += 0.5 * i * point[i];
82      }
83      return s1 + (s2 * s2) + (s2 * s2 * s2 * s2);
84    }
85
86    /// <summary>
87    /// Evaluates the test function for a specific <paramref name="point"/>.
88    /// </summary>
89    /// <remarks>Calls <see cref="Apply"/>.</remarks>
90    /// <param name="point">N-dimensional point for which the test function should be evaluated.</param>
91    /// <returns>The result value of the Zakharov function at the given point.</returns>
92    protected override double EvaluateFunction(RealVector point) {
93      return Apply(point);
94    }
95  }
96}
Note: See TracBrowser for help on using the repository browser.