Ma. Julie Anne Gala
- Total activity 7
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 3
Activity overview
Latest activity by Ma. Julie Anne Gala-
Ma. Julie Anne Gala created a post,
How can I set the solution of a model as the upper bound of a variable in the objective of another model?
AnsweredHi! 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 created a post,
1D Bin Packing Problem, big interval between bins filled
AnsweredHi,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 commented,
Thank you so much for your answer! Are indices usually the first argument when creating variables?
-
Ma. Julie Anne Gala created a post,
Facility Location Example: what do the arguments in select and assign variables creation and if (abs(select[facility].x) > 1e-6) mean?
AnsweredHi! 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...