| /// ------------------------------------------------------ | |
| /// SwarmOps - Numeric and heuristic optimization for C# | |
| /// Copyright (C) 2003-2011 Magnus Erik Hvass Pedersen. | |
| /// Please see the file license.txt for license details. | |
| /// SwarmOps on the internet: http://www.Hvass-Labs.org/ | |
| /// ------------------------------------------------------ | |
| using System.Diagnostics; | |
| namespace SwarmOps.Problems | |
| { | |
| /// <summary> | |
| /// Schwefel 2-21 benchmark problem. | |
| /// </summary> | |
| public class Schwefel221 : Benchmark | |
| { | |
| /// <summary> | |
| /// Construct the object. | |
| /// </summary> | |
| /// <param name="dimensionality">Dimensionality of the problem (e.g. 20)</param> | |
| /// <param name="maxIterations">Max optimization iterations to perform.</param> | |
| public Schwefel221(int dimensionality, int maxIterations) | |
| : base(dimensionality, -100, 100, 50, 100, maxIterations) | |
| { | |
| } | |
| /// <summary> | |
| /// Name of the optimization problem. | |
| /// </summary> | |
| public override string Name | |
| { | |
| get { return "Schwefel2-21"; } | |
| } | |
| /// <summary> | |
| /// Minimum possible fitness. | |
| /// </summary> | |
| public override double MinFitness | |
| { | |
| get { return 0; } | |
| } | |
| /// <summary> | |
| /// Compute and return fitness for the given parameters. | |
| /// </summary> | |
| /// <param name="x">Candidate solution.</param> | |
| public override double Fitness(double[] x) | |
| { | |
| Debug.Assert(x != null && x.Length == Dimensionality); | |
| double maxValue = System.Math.Abs(x[0]); | |
| for (int i = 1; i < Dimensionality; i++) | |
| { | |
| double elm = System.Math.Abs(x[i]); | |
| if (elm > maxValue) | |
| { | |
| maxValue = elm; | |
| } | |
| } | |
| return maxValue; | |
| } | |
| } | |
| } | |