Yauhen Yakimenka
- 合計アクティビティ 32
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 10
- サブスクリプション 5
投稿
Yauhen Yakimenkaによる最近のアクティビティ-
Optimal LP solution with minimum number of non-zero variables
回答済みI have an LP problem with a pretty standard formulation: \[ \begin{align} &\min d^T p \\ \text{s.t. } &Ap \leq b \\ &\sum_i p_i = 1 \\ &p \geq 0 \end{align} \] (The vector \(p\) is a vector of pro...
-
Find the same basis optimal solution for two related LPs
回答済みI have two very similar linear programs. The first one is $$c^T x \rightarrow \min$$ $$\text{s.t. } Ax = b, \quad x \ge 0$$ And the second is different in the optimisation goal: $$d^T x \rightarrow...
-
Objective function tolerance
回答済み(I see a lot of different parameters which sound like they might be what I need but I am not exactly sure.) In my problem (which is MIP but also with bilinear constraints), the objective function i...
-
General constraint for arbitrary function
回答済みIn my optimisation problem, I need to find a minimum of information entropy: $$-\sum_i p_i \log p_i \rightarrow \min$$ where variables `p_i` are bilinear in decision variables. At the moment, I mod...
-
Test if the start solution is feasible
I have a start solution for MIP (with some bilinear and MIN constraints). However, it seems the solver ignores it: I get User MIP start did not produce a new incumbent solution message. I wonder if...