I'd like to get informations about my cplex problem during solve. My first idea was to use an IloCplex.IncumbentCallback but it's not compatible with dynamic search, and I get better results with dynamic search. So I'm looking for a way to get informations without loosing dynamic mode.
It seems I can't use a callback because only informational callbacks are compatible with dynamic search, but none of the 4 informations callbacks are called often enough to give information when I need it.
When cplex finds a new solution, I guess this solution must be stored somewhere, so there should be a way to get informations about this solution
I would like to get :
- Best Integer
- Best Bound
- Problem variables values.
Thanks