Hello,
I am currently solving a linear problem with pulp. For technical reasons (I can detail if needed), I need to solve it with the Barrier algorithm (and not the simplex), and I need to NOT perform crossover.
With CPLEX, the following works:
prob.solve(pulp.CPLEX_CMD(options=["set lpmethod 4", "set barrier crossover -1"]))
Is there a way to do this with CBC/CLP ? I cannot find the appropriate documentation for CBC.
Thank you very much!