コード例 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ConstrainedChebyshev"/> class.
 /// </summary>
 public ConstrainedChebyshev()
 {
     _measure = new Chebyshev();
 }
コード例 #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();
 }
コード例 #3
0
ファイル: Behaviour.cs プロジェクト: xldeng1203/CrystalAI
 void Initialize()
 {
     Measure   = new Chebyshev();
     _selector = new MaxUtilitySelector();
     CreateLists();
 }