
Alberto Santini
- 合計アクティビティ 18
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 1
- サブスクリプション 5
アクティビティの概要
Alberto Santiniさんの最近のアクティビティ-
Alberto Santiniさんがコメントを作成しました:
Hi Tobias. First of all, thanks for replying and the explanation. I was checking point 8. from calling \(\texttt{model.write()}\) at the end, but then I must have been mistaken. So, just to be clea...
-
Alberto Santiniさんが投稿を作成しました:
Against all common sense I attempted (a special type of) branch-and-price. How am I shooting myself in the foot, exactly?
進行中I know that Gurobi does not support branch-and-price via its API. You cannot add new variables during the exploration of the B&B tree. However, against all common sense, I attempted a very special ...
-
Alberto Santiniさんがコメントを作成しました:
Hi Marika! Thanks for your answer. I think the following code confirms what you have just written: #include <gurobi_c++.h>#include <cstdlib>#include <filesystem>int main() { std::filesystem::pat...
-
Alberto Santiniさんがコメントを作成しました:
Hi! I discovered what was happening while preparing a minimal working example for you. I was reusing the same model for multiple optimisations, and it turns out that the column pool doesn't get "cl...
-
Alberto Santiniさんがコメントを作成しました:
Hi! Thanks for your answer. Unfortunately, this is not the issue because I get the same behaviour after setting \(\texttt{GRB_IntParam_PoolSearchMode}\) to 1 or 2. Furthermore, my interpretation of...
-
Alberto Santiniさんが投稿を作成しました:
Gurobi apparently not respecting parameter PoolSolutions ?
回答済みConsider the following C++ code, where \(\texttt{m}\) is a \(\texttt{GRBModel}\) object. m.set(GRB_IntParam_PoolSolutions, 1);m.optimize();std::cout << "Status: " << m.get(GRB_IntAttr_Status) << "\...
-
Alberto Santiniさんが投稿を作成しました:
Does Column::addTerm() assumes constraints in normal/standard form?
回答済みI am solving a linear programme with column generation (sung the C++ API and Gurobi 10.0). My programme has a polynomial number of variables \(x_i, \; i \in I\) and an exponential number of variabl...
-
Alberto Santiniさんがコメントを作成しました:
Thanks for your answer, Jaromił, neat trick. Best, AS
-
Alberto Santiniさんが投稿を作成しました:
What is the correct "where" for a callback to add a cutting plane to a linear programme?
回答済みI am using Gurobi 9.1.2 and the Python API. Having read the documentation for callback codes, it is not clear to me which one I should use to add a new cut to a linear programme (LP). For example, ...
-
Alberto Santiniさんがコメントを作成しました:
Sorry Eli, it was my mistake. Indeed everything works as it's supposed to, including bounds and number of nodes explored. Thanks a lot for your help.