Decision Optimization

Decision Optimization

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


#Analytics
#DecisionOptimization
#DecisionOptimization
 View Only
  • 1.  CPLEX

    Posted 03/18/10 12:41 AM

    Originally posted by: Quazi_R


    Hi,
    In my problem of solving a LP using CPLEX, I need access to the simplex multipliers and create the entering column myself.
    I suspect I have to use a callback utility. I am hoping to do that in C or, failing that, in Java.

    1) How can I stop CPLEX after each iteration of the revised simplex method and extract the simplex multipliers values?
    2) How can I specify the Entering Column and carry out the next iteration?

    Thanks in advance for your help.
    #CPLEXOptimizers
    #DecisionOptimization


  • 2.  Re: CPLEX

    Posted 03/18/10 05:24 AM

    Originally posted by: SystemAdmin


    You need to use the pivoting interface: CPXpivot(), CPXpivotin() and/or CPXpivotout().

    Could you please explain in a bit more detail what you are trying to do? In order to use the pivoting interface you really need to understand the details of the simplex algorithm.

    If you just want to do column generation, then it is usually better to just call CPXprimopt() or CPXdualopt(), query the duals, add new columns with CPXaddcols(), and resolve with CPXprimopt().

    Tobias
    #CPLEXOptimizers
    #DecisionOptimization


  • 3.  Re: CPLEX

    Posted 03/18/10 02:15 PM

    Originally posted by: Quazi_R


    Thanks
    Let me go through your suggessions and I will get back to you.
    Thanks again.
    Quazi
    #CPLEXOptimizers
    #DecisionOptimization