Marco Correia
- 合計アクティビティ 17
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 0
- サブスクリプション 5
アクティビティの概要
Marco Correiaさんの最近のアクティビティ-
Marco Correiaさんがコメントを作成しました:
Perfect, thank you!
-
Marco Correiaさんがコメントを作成しました:
Thank you both!Doesn't model.reset() basically throws away everything, like starting from scratch? It says this in the docs:> Reset the model to an unsolved state, discarding any previously compute...
-
Marco Correiaさんがコメントを作成しました:
Right. I suppose the mipsolver has a bunch of information not captured just by saving the current model to a file (like current search tree, heuristic scores, etc). So ideally, I would like for a w...
-
Marco Correiaさんが投稿を作成しました:
Removing lazy constraints
回答済みHi,I have a mip with some non-linear but convex constraints, that I enforce using lazy constraints posted from a callback while solving.I will have to solve this mip several times, where some of th...
-
Marco Correiaさんが投稿を作成しました:
Apparently feasible start solution ignored.
回答済みHi, I am providing an initial feasible start solution to gurobi, but it prints: > User MIP start did not produce a new incumbent solution It then proceeds to finding what looks like that solution u...
-
Marco Correiaさんがコメントを作成しました:
Hi Marika, Looking at the log myself made me realize that one of the lazy constraints was not so deterministic after all :) All good with gurobi, thanks!
-
Marco Correiaさんが投稿を作成しました:
Resolving after changing objective does not use previous solution
回答済みHi, I have a model which I solve to optimality. After, I change the objective, and call "optimize()" again. Gurobi says the previously found solution did not produce an incumbent. I cannot see why,...
-
Marco Correiaさんがコメントを作成しました:
Hi Matthias, Not sure if you don't have anything else to add, or if this thread was forgotten. I don't think I understand how this works yet (see post above). Thanks
-
Marco Correiaさんがコメントを作成しました:
Hi Matthias, Thanks for the clarification, indeed I am talking about lazy constraints here. I am not sure I understood what you mean. If gurobi never gives me the chance to add the missing lazy con...
-
Marco Correiaさんが投稿を作成しました:
Opportunity for lazy cut
進行中Hi, I believe I've read the answer to this question before, but I don't remember where or what it was, my apologies. Assume we have a problem with 3 variables, x,y,z, and constraints x<=y<=z. Lets...