Originally posted by: SystemAdmin
[EdKlotz said:]
In the C API, you can just call CPXhybnetopt and specify the method you want
after the network simplex method. In the C++, Java and .NET APIs, there is
no parameter or API call that specifically controls the method used after the
network optimizer, but you can still do this. Set a simplex iteration limit of 0. This is different from a network simplex iteration limit of 0. Then call IloCplex::solve with the root algorithm specified as netopt. CPLEX will solve the network problem, invoke the simplex method, then stop at iteration 0 after the basis factorization. You can then reset the root algorithm to primal simplex method and resume the optimization from where it left off.
#CPLEXOptimizers#DecisionOptimization