Originally posted by: LilTiti
Hi everyone,
I'm working on a Java software that extracts patterns from a corpus dialogs and then clusters these patterns by similarity. The clustering process is resolved by CPLEX (callable library) as a linear program with binary variables.
I want to let the user redo the clustering process with some changes (e.g. if he considers that 2 patterns must be together, I redo the process and fix the right variable to 1).
I want to know if it is possible to keep in memory (or retrieve) the tree used for the Branch & Bound process by CPLEX. By doing so, I could do "backwards" on this tree until the node corresponding to the right variable, then continue the tree as always.
In summary, is there any way (a CPLEX parameter, a callback function..) to use the last CPLEX process (especially the B&B tree) to solve a problem almost similar to the last one ?
Thank you,
Etienne.
#CPLEXOptimizers#DecisionOptimization