Ma. Julie Anne Gala
- 合計アクティビティ 7
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 0
- サブスクリプション 3
アクティビティの概要
Ma. Julie Anne Galaさんの最近のアクティビティ-
Ma. Julie Anne Galaさんが投稿を作成しました:
How can I set the solution of a model as the upper bound of a variable in the objective of another model?
回答済みHi! I have made two models (model_1 and model_2), and this is how their objectives are defined. VSPz1 = quicksum(VSPx[(1,j,k)] for k in vehicle_types for j in Follow_Trips_VSP[1])z1 = quicksum(x[(1...
-
Ma. Julie Anne Galaさんが投稿を作成しました:
1D Bin Packing Problem, big interval between bins filled
回答済みHi,I have the following code on Python for a 1D bin packing problem: import gurobipy as gpfrom gurobipy import GRBimport numpy as npn = 10UB = nc = 10w = [1, 2, 3, 4, 5, 1, 3, 3, 4, 2]model = gp.M...
-
Ma. Julie Anne Galaさんがコメントを作成しました:
Thank you so much for your answer! Are indices usually the first argument when creating variables?
-
Ma. Julie Anne Galaさんが投稿を作成しました:
Facility Location Example: what do the arguments in select and assign variables creation and if (abs(select[facility].x) > 1e-6) mean?
回答済みHi! I am new to Gurobi and only have basic Python skills. I was studying the Facility Location example and these are parts of the code that I do not understand. When the select and assign variables...