Krypt
- 合計アクティビティ 41
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 3
- サブスクリプション 14
アクティビティの概要
Kryptさんの最近のアクティビティ-
Kryptさんがコメントを作成しました:
thanks for all the help!
-
Kryptさんがコメントを作成しました:
I see. I will check the numerical issue. If I understood you correctly, even if the model does not have a numerical issue, we can never guarantee that we will get the same performance irrespective ...
-
Kryptさんがコメントを作成しました:
Riley, this is really helpful. Thank you very much!One more question, what can I try to minimize this behavior as much as possible? What are the settings that I can potentially play with?
-
Kryptさんが投稿を作成しました:
Changing the order of the constraints affects performance
回答済みI am solving an MIP. I noticed that if I change the order in which constraints are added slightly, it drastically affects the solution runtime. Currently, I have an MIPGap = 1%. One order gets to t...
-
Kryptさんがコメントを作成しました:
Hi David, I thought negative reduced cost indicates that adding the variable would improve the objective value, as many textbooks say. I still do not understand why would the variable have negative...
-
Kryptさんがコメントを作成しました:
hi, could you please point out some gurobi-python example of adding columns? also, i am wondering if this approach reoptimizes using the current solution or solves the whole problem from scratch
-
Kryptさんが投稿を作成しました:
Adding new columns to existing model
Hello, I am trying to implement column generation. Right now, I am redefining the model and solving it from scratch every time I generate a new column, this is very inefficient. I am wondering if t...
-
Kryptさんが投稿を作成しました:
Enforcing arc (a,b)=1 in branch and price algorithm for routing problem
回答済みI am trying to solve a vehicle routing problem using a branch and price algorithm. At the restricted master problem (RMP), we consider two branches: we enforce an arc (a,b)=0 and (a,b)=1 (I am fo...
-
Kryptさんが投稿を作成しました:
Modeling variable multiplication and/or divisions
回答済みHi, My optimization model contains constraints with variable multiplications and divisions. For example, I want to add constraints like below: mdl.addConstr(x/y >= (1/z) + epsilon)mdl.addConstr(x/(...
-
Kryptさんがコメントを作成しました:
Thank you!