Exemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ConstrainedChebyshev"/> class.
 /// </summary>
 public ConstrainedChebyshev()
 {
     _measure = new Chebyshev();
 }
Exemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ConstrainedChebyshev"/> class.
 /// </summary>
 /// <param name="lowerBound">The lower bound.</param>
 public ConstrainedChebyshev(float lowerBound)
 {
     LowerBound = lowerBound;
     _measure   = new Chebyshev();
 }
Exemplo n.º 3
0
 void Initialize()
 {
     Measure   = new Chebyshev();
     _selector = new MaxUtilitySelector();
     CreateLists();
 }