Xinshuo Yang
- Total activity 17
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 7
Posts
Recent activity by Xinshuo Yang-
Suppress console outputs
AnsweredHello, How do I suppress all console outputs when using gurobipy.read(...)? Thanks, Xinshuo
-
Retrieve removed variables after presolve
AnsweredIs there a way to retrieve the removed variables (especially the binary variables) after presolve for MIP? I assume the values of those variables have been determined by the presovle and should be ...
-
How to make a deep copy of a linear expression using gurobipy
AnsweredI need to make changes to my objective function, solve the model and reset the objective function to be the original one. Since my objective function is a LinExp, I was wondering how to make a deep...
-
multiple scenario model running time
AnsweredI am using GUROBI multiple-scenario model to solve a MIP with small perturbations from a base model. I know the solution to the base model. So I use var.VarHintVal or var.Start (not both) to guide ...
-
MIP with infinite number of feasible solutions
AnsweredI have a MIP where two continuous variables x and y are equivalent. So in the solution the sum (denoted by s) of x and y is determined/fixed, but there are infinite many choices of feasible solutio...
-
Checking new RHS in multiple Scenarios
AnsweredI am using the multiple scenario Gurobi model in Python where in one of the scenarios I changed the RHS by: constr.ScenNRHS = new_RHS Now I would like to see whether this change has been success...
-
Sensitivity analysis for input parameter in LP
AnsweredDoes GUROBI support sensitivity analysis for input parameters in LP model?