As Daniel suggested, take the solution from the CP model and fix the variables in the MIP model to those values (by setting lower bound = upper bound = value in CP solution). Then try to solve the MIP model. CPLEX should say it is infeasible. Assuming so, use the conflict refiner to identify a set of constraints that cannot be satisfied by your CP solution. If one or more of those constraints are expressed incorrectly, fix them. If they all are correct, then you have to ask yourself why the CP model allowed an apparently infeasible solution to be accepted. Go back to the CP model, identify where the constraints in the MIP conflict occur, and see if they are written correctly in the CP model.
#DecisionOptimization#MathematicalProgramming-General