Decision Optimization

Decision Optimization

Delivers prescriptive analytics capabilities and decision intelligence to improve decision-making.


#Analytics
#DecisionOptimization
#DecisionOptimization
 View Only
  • 1.  Getting timestamp when optimal solution is found

    Posted 06/08/12 07:54 AM

    Originally posted by: r_i_l_e_y


    I have an IP model in which the optimal solution is found quickly but cplex then takes a lot of time proving the optimality. I would like to get an exact time of when the optimal (ie last) solution is found by cplex. Can this be done with a callback somehow?
    Thanks.

    (using python API - not sure if relevant or not).
    #CPLEXOptimizers
    #DecisionOptimization


  • 2.  Re: Getting timestamp when optimal solution is found

    Posted 06/08/12 10:42 AM

    Originally posted by: SystemAdmin


    Yes. You can use an info callback. For parallel solves, this will possibly be called slightly delayed (but typically not that much). If you want to have the exact time stamp of the solution, you need to use an incumbent callback, but the downside is that using the incumbent callback will disable dynamic search.

    Tobias
    #CPLEXOptimizers
    #DecisionOptimization