chaung yun chi
- 合計アクティビティ 23
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 0
- サブスクリプション 6
アクティビティの概要
chaung yun chiさんの最近のアクティビティ-
chaung yun chiさんがコメントを作成しました:
I tried m.write("project_412.lp") it only showed Warning: Q constraint 0 doesn't have a nameWarning: linear constraint 1 and linear constraint 2 have the same name "onlyone" what is Q constraint?...
-
chaung yun chiさんが投稿を作成しました:
set new constraint but got NotImplementedError
回答済みHi,I have two question now 1.I had a problem implementing real world data in my model, seems like my model refuse to build second launch station but I didn't set a constraint for it. This is my cod...
-
chaung yun chiさんがコメントを作成しました:
Thanks for your help, I actually try the same thing before, using different form for k in demand: m.addConstr(quicksum(u[i,j,k] for i in facility2 for j in facility1)+quicksum(u1[i,k] for i in f...
-
chaung yun chiさんが投稿を作成しました:
modeling question
回答済みI've solved a hierarchical facility location problem, but something is wrong. this is a one of my answer. I want the blue dots can be assigned to the green(Launch) as well. If the distance is short...
-
chaung yun chiさんがコメントを作成しました:
Can I have your email ? I think it's kind of complicated to describe the whole thing here.
-
chaung yun chiさんがコメントを作成しました:
Thanks, now I can use matplotlib to visualize my result. But what I was trying to do is a "Hierarchical facility problem" which the result is different from mine. https://drive.google.com/file/d/1E...
-
chaung yun chiさんがコメントを作成しました:
I got the '1' value variables, but I can't call the data based on it. for v in m.getVars(): if v.x==1: print('%s %g' % (v.varName, v.x)) d[1,4] 1d[2,18] 1d[3,22] 1d[4,10] 1d[5,34] 1d[6,5]...
-
chaung yun chiさんがコメントを作成しました:
You're right, I 've already put that in my objective function at that time, but some how I thought it was a good idea to make few constraints describing same stuff haha. I delete the constraints a...
-
chaung yun chiさんがコメントを作成しました:
Thanks for your help! But I have one more question If I want to build a constraint Σdij' *disDCij’ ≤ disDCij + M (1-Xj) j,j'∈ J Which I want to express that : "all demands are assig...
-
chaung yun chiさんが投稿を作成しました:
Performing condition constraints
進行中Hi I want to generate a few constraints to represent that "if a facility is built in location j then you can assign demand i there otherwise, you can't assign demand i there" which can also simp...