Originally posted by: x3t2h
Hi,
as I mentioned in this post https://www.ibm.com/developerworks/community/forums/html/topic?id=142afced-8c19-4ba7-8662-c011b36c985e, I am struggling with correctly passing on a simplex basis from a parent node in a branching tree to its child nodes in C++ with Cplex Concert Technology. Aside from the issues discussed in the linked post, I just wanted to make sure that I am collecting all the requried information. Currently, I am only using the getBasisStatuses() and setBasisStatuses() functions. However, I was wondering if cplex would benefit from also using the setStart() function to pass on the actual solution values, the reduced costs and the slack values or if this additional information would only be used to create a starting basis for the simplex method (which I am already providing). Also, is the information collected by getBasisStatuses() identical to the information that is stored using writeBasis()? If yes and if I only need internal access (within my C++/Cplex model) to the basis, am I correct in assuming that getBasisStatuses() should be preferred over writeBasis() since this way I do not have to create the .bas files?
Thank you very much for your help.
#CPLEXOptimizers#DecisionOptimization