Originally posted by: pamayadque
Hi,
I am working with Cplex Concert Technology for Java. I have got a question and I would like to know if someone could help me to find a solution.
I am implementing a model that solves a linear program (basically a minimum cost flow problem) with some side constraints difficult to express into linear constraint. However, some of those constraints can be forced by changing the bounds on de flow variables once the solution obtained is probed not to be feasible. What I would like to do is the following.
1. Solve the Min cost flow problem
2. That solution would be the node 0 of a search tree.
3. Changed the bounds of some variables (or adding constraints on the flows of some variables) to fixed its value for example to cero. These would define two children one in which the flow in a specific arc is cero and one in which that flow is not fixed.
4. Solve the problem at the child level (it is still a MCFP)
5. Go to Step 3 and repeat the procedure as in a Typical Branch and Price problem.
I have read the information related with callbacks and goals. However, the first difficulty I have found is how to force Cplex to start a tree when my problem does not have integer variables.
Does anybody know whether this is possible in Cplex, or should I consider to use a different approach to administrate the search tree and use Cplex to solve each node?
hope I have Explained myself well…Thanks in advance
#CPLEXOptimizers#DecisionOptimization