File size: 1,594 Bytes
b1b3bae |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
/// ------------------------------------------------------
/// 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/
/// ------------------------------------------------------
namespace SwarmOps
{
/// <summary>
/// Problem and weight pair for use in meta-optimization.
/// </summary>
public class WeightedProblem
{
#region Constructors.
/// <summary>
/// Construct the object, weight will be set to 1.0
/// </summary>
/// <param name="problem">Problem object.</param>
public WeightedProblem(Problem problem)
: this(1.0, problem)
{
}
/// <summary>
/// Construct the object.
/// </summary>
/// <param name="weight">Weight.</param>
/// <param name="problem">Problem object.</param>
public WeightedProblem(double weight, Problem problem)
{
Weight = weight;
Problem = problem;
}
#endregion
#region Public fields.
/// <summary>
/// Problem object.
/// </summary>
public Problem Problem
{
get;
protected set;
}
/// <summary>
/// Weight.
/// </summary>
public double Weight
{
get;
protected set;
}
#endregion
}
}
|