CPLEX API を使用して MATLAB で CPLEX (バージョン 125) を実行しています。制約付き二次計画法の問題を解決しようとしていますが、主な実行不可能性に直面しています。特に、問題の MATLAB コードは次のとおりです。
[ystar, Jstar, flag, output]= ...
cplexqp(H, f, F, phi, G, gamma, ymin, ymax);
これは問題に対応します:
ystar = argmin_y y'*H*y + f'*y
subject to:
ymin <= y <= ymax
G * y = gamma
F * y <= phi
ただし、ystar
によって返されるソリューションcplexqcp
は次のようになります。
max(F*ystar-phi) = 5.1854e-05
この実現不可能なギャップを減らしたい。主な実現可能性の境界を変更しようとしましたが、効果がないようです:
ops=cplexoptimset('cplex');
ops.feasopt.tolerance=1e-7;
実行不可能性を平準化するようにソルバーを構成するにはどうすればよいですか? ソルバーは次の診断メッセージを表示します。
Number of nonzeros in lower triangle of Q = 2622
Using Approximate Minimum Degree ordering
Summary statistics for factor of Q:
Rows in Factor = 4248
Integer space required = 4362
Total non-zeros in factor = 27048
Total FP ops to factor = 334848
Tried aggregator 1 time.
QP Presolve eliminated 1128 rows and 114 columns.
Aggregator did 80 substitutions.
Reduced QP has 7984 rows, 8302 columns, and 129418 nonzeros.
Reduced QP objective Q matrix has 4134 nonzeros.
Parallel mode: using up to 8 threads for barrier.
Number of nonzeros in lower triangle of A*A' = 433356
Using Approximate Minimum Degree ordering
Summary statistics for Cholesky factor:
Threads = 8
Rows in Factor = 7984
Integer space required = 32473
Total non-zeros in factor = 556316
Total FP ops to factor = 62101602
Itn Primal Obj Dual Obj Prim Inf Upper Inf Dual Inf
0 1.6154270e+04 -1.8807064e+06 1.92e+06 2.77e+05 5.03e+06
1 1.7649880e+06 -4.6190853e+06 5.23e+05 7.57e+04 1.37e+06
2 1.8883665e+06 -4.8518299e+06 1.30e+05 1.89e+04 3.42e+05
3 8.3385088e+05 -2.9607988e+06 2.05e+04 2.97e+03 5.39e+04
... (some lines are omitted for brevity)
31 9.9411620e+01 9.9411598e+01 1.10e-08 9.27e-10 4.32e-08
32 9.9411615e+01 9.9411611e+01 1.37e-08 1.47e-10 6.85e-09
33 9.9411614e+01 9.9411614e+01 2.19e-08 6.10e-12 2.51e-08
Barrier time = 1.91 sec. (361.06 ticks)
Total time on 8 threads = 1.91 sec. (361.06 ticks)
したがって、解決策の主な実行不可能性は次のように思われ2.19e-08
ます。ただし、解決策はそれほど実現可能ではないようです。
更新:次のように、等式と不等式の制約を正規化しました。
F = F ./ kron( ones(1,size(F,2)), abs(phi) );
phi = sign(phi);
(注: の要素phi
はゼロまたはほぼゼロではありません。このようにして、 のすべての要素はまたは のphi
いずれ1
かになります-1
。)
for i=1:numel(gamma)
if (abs(gamma(i))>1e-4)
G(i,:) = G(i,:)/abs(gamma(i));
gamma(i) = sign(gamma(i));
end
end
私が今得ている実行不可能性は、 (更新された正規化された行列とに対して)5.577e-07
として計算されます。CPLEX は内点ソルバーを使用していますか? はいの場合、実行不可能性はないはずです。max(F*ystar-phi)
F
phi
更新 2:この問題のデータとテスト ケースをアップロードしました。