Kechen Ouyang

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

Posts

Recent activity by Kechen Ouyang Recent activity Votes
  • c++ copy mode, infeasible

    Awaiting user input

    I want to copy model in c++ use the following code: try {            modelo = new GRBModel(*in_modelo);            modelo->update();            modelo->optimize();             int status = modelo->...

  • column generation with c++

    Awaiting user input

    I'm trying to use column generating with gurobi and c++. I encounter some problem when adding a new variable. I first create a new column: and then add a new variable: There is something wrong wi...

  • How to copy a model in c++

    Answered

    Greetings, I want to make a copy of a GRBModel, but I don't know how in c++. model.copy() works in python but not in c++. I first have the followng class: class MasterProblem { public: GRBEnv* env ...