/// ------------------------------------------------------ /// 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; using System.Threading; namespace SwarmOps.Problems { /// /// Sphere benchmark problem with thread-sleeping to simulate a time-consuming /// problem. /// public class SphereSleep : Sphere { #region Constructors. /// /// Construct the object. /// /// Dimensionality of the problem (e.g. 20) /// Max optimization iterations to perform. public SphereSleep(int sleepMilliSeconds, int dimensionality, int maxIterations) : base(dimensionality, maxIterations) { SleepMilliSeconds = sleepMilliSeconds; } #endregion #region Public properties. /// /// Sleep-time in milli-seconds after each fitness evaluation. /// public int SleepMilliSeconds { get; protected set; } #endregion #region Base-class overrides. /// /// Name of the optimization problem. /// public override string Name { get { return "SphereSleep"; } } /// /// 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]; value += elm * elm; } Thread.Sleep(SleepMilliSeconds); return value; } #endregion } }