/// ------------------------------------------------------
/// 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
{
///
/// Step benchmark problem.
///
public class Step : Benchmark
{
///
/// Construct the object.
///
/// Dimensionality of the problem (e.g. 20)
/// Max optimization iterations to perform.
public Step(int dimensionality, int maxIterations)
: base(dimensionality, -100, 100, 50, 100, maxIterations)
{
}
#region Base-class overrides.
///
/// Name of the optimization problem.
///
public override string Name
{
get { return "Step"; }
}
///
/// Minimum possible fitness.
///
public override double MinFitness
{
get { return 0; }
}
///
/// Compute and return fitness for the given parameters.
///
/// Candidate solution.
public override double Fitness(double[] x)
{
Debug.Assert(x != null && x.Length == Dimensionality);
double value = 0;
for (int i = 0; i < Dimensionality; i++)
{
double elm = x[i];
double roundedElm = System.Math.Truncate(elm);
value += roundedElm * roundedElm;
}
return value;
}
#endregion
}
}