Do you know if there's a way to change some constraints in an already solved Cplex constraint optimization problem, and solve it again but with the result being as close as possible to the previous solution.
Example:
Tasks are assigned to different resources. Resource 1 has tasks A, B & C, Resource 2 has tasks D, E & F.
When I add Resource 3, I want the new assignment to be something like:
R1 = A & B
R2 = D & E
R3 = C & F
But Cplex will probably return something like:
R1: F & E
R2: A & B
R3: C & D
Or any other possible combination that could be completely different to the initial solution.
I think this problem is called Dynamic Constraint Satisfaction Problem.
I've been doing a lot of research but it doesn't look like there's an easy way to do it. Looks like I'll have to do my own implementation (which is ok). In that case, how do you propose I should approach the problem?
Thanks