Mert Eroglu
- 合計アクティビティ 11
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 0
- サブスクリプション 3
コメント
Mert Erogluによる最近のアクティビティ-
I was getting the error despite calling optimize(), i guess there was a problem with my constraints. But i used another approach for my problem, for now. Thanks for your support.
-
Hello, thanks for your fast support. I implemented your codes into mine and printed: "No feasible solution available". Therefore why .x is not being used in my code, result i didn't understand tha...
-
Oh OK, i thought adding such constraint would delete the - sign on the 0.0's but it's the same thing. Thanks for your support.
-
for j in range(n): for i in range(m): model.addConstr(y_2022[j,i] >= 0.5 + eps - M*(1-B)) model.addConstr(y_2022[j,i] <= 0.5 + M*(B)) model.addConstr((B==1) >> (y_2022[j,i] ...
-
Yeah, I set IntFeasTol to 1e-9 and IntegralityFocus to 1, but it didn't changed the outcome. Thanks for the fast reply.