Decision Optimization

Decision Optimization

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

 View Only
  • 1.  lower bound and cplex constraint

    Posted Sat December 08, 2012 12:01 AM

    Originally posted by: geffer


    For a specific problem and the same data, in order to accelerate operation time, add some elimination constraint. I have certain questions.

    1 Whether best bound and best integer in mip solve information correspond to lower bound and upper bound in c++ optimization?
    2 Even I add more constraint in modeling, the best bound still start at 0.0000,there is no different if I add more constraint, I want emphasize the new constraint advantage, whether cplex offer some information to appreciate different modeling?

    thx
    Corky
    #CPLEXOptimizers
    #DecisionOptimization


  • 2.  Re: lower bound and cplex constraint

    Posted Sun December 16, 2012 09:48 PM

    Originally posted by: geffer


    anyone could give some advice?
    #CPLEXOptimizers
    #DecisionOptimization


  • 3.  Re: lower bound and cplex constraint

    Posted Tue December 18, 2012 08:43 AM

    Originally posted by: geffer


    no one could explain?
    thx
    #CPLEXOptimizers
    #DecisionOptimization


  • 4.  Re: lower bound and cplex constraint

    Posted Wed December 19, 2012 04:44 PM

    Originally posted by: SystemAdmin


    > geffer wrote:
    > For a specific problem and the same data, in order to accelerate operation time, add some elimination constraint. I have certain questions.
    >
    > 1 Whether best bound and best integer in mip solve information correspond to lower bound and upper bound in c++ optimization?

    Yes if you are maximizing, no if you are minimizing.

    > 2 Even I add more constraint in modeling, the best bound still start at 0.0000,there is no different if I add more constraint, I want emphasize the new constraint advantage, whether cplex offer some information to appreciate different modeling?
    >

    Additional constraints do not automatically toughen bounds. Even if they cut off the optimal node solution, there is still the possibility t fast the node LP had multiple optima, and one of the alternate optima satisfies the new constraint.

    Paul

    Mathematicians are like Frenchmen: whenever you say something to them, they translate it into their own language, and at once it is something entirely different. (Goethe)
    #CPLEXOptimizers
    #DecisionOptimization


  • 5.  Re: lower bound and cplex constraint

    Posted Thu December 20, 2012 07:48 AM

    Originally posted by: geffer


    thanks for your reply
    1 Whether best bound and best integer in mip solve information correspond to lower bound and upper bound in c++ optimization?

    Yes if you are maximizing, no if you are minimizing.

    If I want to minimize, what is the meaning of best bound and best integer? Or how could I find lower bound and upper bound in that case?

    Keji
    #CPLEXOptimizers
    #DecisionOptimization


  • 6.  Re: lower bound and cplex constraint

    Posted Fri December 21, 2012 03:20 PM

    Originally posted by: SystemAdmin


    > geffer wrote:
    > 1 Whether best bound and best integer in mip solve information correspond to lower bound and upper bound in c++ optimization?
    >
    > Yes if you are maximizing, no if you are minimizing.
    >
    > If I want to minimize, what is the meaning of best bound and best integer? Or how could I find lower bound and upper bound in that case?

    Upper and lower bound, respectively.

    Paul

    Mathematicians are like Frenchmen: whenever you say something to them, they translate it into their own language, and at once it is something entirely different. (Goethe)
    #CPLEXOptimizers
    #DecisionOptimization