Ruixuan Liu

  • Gurobi-versary
  • First Comment
  • First Question
  • Total activity 8
  • Last activity
  • Member since
  • Following 0 users
  • Followed by 0 users
  • Votes 0
  • Subscriptions 2

Posts

Recent activity by Ruixuan Liu Recent activity Votes
  • Trouble using gp.abs_()

    Answered

    Hi, I'm trying to add a constraint using the abs_() function. I'm just doing a very simple example a = model.addVar(name="a")b = model.addVar(lb=-1, name="b")model.addConstr(a == gp.abs_(b), name="...

  • Reuse a previously optimized model for warm start

    Answered

    Hi, I'm trying to reuse a previously optimized model as a warm start for the next run. But I'm not sure if I'm doing this correctly. The issue I'm having now is after solving the model, if I direct...