Dong Hyun Kim
- 合計アクティビティ 10
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 0
- サブスクリプション 2
コメント
Dong Hyun Kimによる最近のアクティビティ-
Thank you so much!
-
I think that’s likely the case. I’ve been working on refining the model continuously, but it hasn’t been going well, which is why I wanted to ask for some guidance. I’ll give it some more try and r...
-
Ah, I see! Would it look something like this? battery_level[j, d] <= battery_level[i, d] - e * time_drone[i, j] + M * (1 - D[i, j, d] + M*bin_charging(i, j, d)
-
Oh, I do have a binary variable that indicates whether the drone is traveling alongside the vehicle. for i in range(2 * num_orders + 2): for j in range(2 * num_orders + 2): model.addConst...
-
for d in range(drone): for i in range(1, num_orders + 1): model.addConstrs(battery_level[i+num_orders, d] >= battery_level[i, d] - e*time_drone[i, f] + charging_rate*time_vehicle[f, l] ...
-
It’s kind of different questions. Thanks for the commet :)