lowerBound ≤ Sum(a(i) x(i)) ≤ upperBound
形式の線形制約を格納するオブジェクト
ここで、lowerBound
と upperBound
は定数、a(i)
は定数です。
係数と x(i)
は変数(未知)です。
次の例では、0
~5
の値を持つ 1 つの変数 x
を作成します。
制約 0 ≤ 2 * x ≤ 5
を作成します。これを行うには、まず制約を作成
下限は 5
、上限は 5
です。変数の係数は
この制約の x
は 2
に設定されます。
var engine = LinearOptimizationService.createEngine(); // Create a variable so we can add it to the constraint engine.addVariable('x', 0, 5); // Create a linear constraint with the bounds 0 and 10 var constraint = engine.addConstraint(0, 10); // Set the coefficient of the variable in the constraint. The constraint is now: // 0 <= 2 * x <= 5 constraint.setCoefficient('x', 2);
メソッド
メソッド | 戻り値の型 | 概要 |
---|---|---|
setCoefficient(variableName, coefficient) | LinearOptimizationConstraint | 制約内の変数の係数を設定します。 |
詳細なドキュメント
setCoefficient(variableName, coefficient)
制約内の変数の係数を設定します。デフォルトでは、変数には係数と 0 です。
var engine = LinearOptimizationService.createEngine(); // Create a linear constraint with the bounds 0 and 10 var constraint = engine.addConstraint(0, 10); // Create a variable so we can add it to the constraint engine.addVariable('x', 0, 5); // Set the coefficient of the variable in the constraint. The constraint is now: // 0 <= 2 * x <= 5 constraint.setCoefficient('x', 2);
パラメータ
名前 | 型 | 説明 |
---|---|---|
variableName | String | 係数が設定される変数の名前 |
coefficient | Number | 係数が設定されます。 |
戻る
LinearOptimizationConstraint
- この線形最適化の制約