I am a beginner in using CPLEX in c++. I know how to solve a simple LP using CPLEX.
I am wondering if setting variables as integer (as follows), causes CPLEX use the branch and bound method to solve the MIP or it just solves a LP and at the end rounds the resulted values to integer?
I define everything same as a LP problem except variables. This is how I set the variables : IloIntVarArray Variables(env,LowerBound,UpperBound)
I really appreciate if you can help me or introduce a good tutorial for CPLEX in c++.
Thank you