Decision Optimization

Decision Optimization

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


#Analytics
#DecisionOptimization
#DecisionOptimization
 View Only
  • 1.  Optimal solution

    Posted 12/02/08 01:21 PM

    Originally posted by: SystemAdmin


    [a_shraideh said:]

    Hi every body,
    i use cplexv9 with java,
    i have MIP problem , and i want to be sure that cplex give me the optimale solution what ever was the time of execution  or any other creiteria

    i used

    cplex.setParam( IloCplex.IntParam.MIPEmphasis,2);

    is it the right instruction?? if not what is the right one

    thanks in advacne
    Ahmad

    #CPLEXOptimizers
    #DecisionOptimization


  • 2.  Re: Optimal solution

    Posted 12/02/08 07:04 PM

    Originally posted by: SystemAdmin


    [prubin said:]

    Regardless of which MIPEmphasis you use, CPLEX will terminate with an optimal solution provided that (a) the problem is feasible and bounded and (b) CPLEX does not run out of time or memory.  If you want to confirm that an optimal solution was found, after cplex.solve() you can check that cplex.getStatus returns IloCplex.Status.Optimal.

    Changing MIPEmphasis will change the search strategy CPLEX uses, but will not affect whether it returns an optimal solution (assuming adequate time and memory).

    /Paul
    #CPLEXOptimizers
    #DecisionOptimization


  • 3.  Re: Optimal solution

    Posted 12/02/08 08:58 PM

    Originally posted by: SystemAdmin


    [a_shraideh said:]

    thank you very much for your explination
    #CPLEXOptimizers
    #DecisionOptimization