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

Activity overview

Latest activity by Kechen Ouyang
  • Kechen Ouyang created a post,

    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->...

  • Kechen Ouyang commented,

    It helped! Thank you!

  • Kechen Ouyang created a post,

    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...

  • Kechen Ouyang created a post,

    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 ...