yechan pyeong
- Total activity 3
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 1
Posts
Recent activity by yechan pyeong-
Gurobi says the model is infeasible, yet I can come up with a solution by hand (Python)
AnsweredI optimized the model below, but guroby says the model is infeasible. from gurobipy import *m = Model('test')a = m.addVar(name="a", vtype=GRB.INTEGER)b = m.addVar(name="b", vtype=GRB.INTEGER)c = m....