Decision Optimization

Decision Optimization

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


#Analytics
#DecisionOptimization
#DecisionOptimization
 View Only
  • 1.  Implied bound infeasibility

    Posted 03/31/11 05:56 AM

    Originally posted by: SystemAdmin


    Hi,

    I would like to ask how can I deal with bound infeasibility? When I am trying to solve my LP problem I have the following result "bound infeasibility column "X" ". I tried to change the EpRHS value from the default but still I have the same problem. Any suggestions?
    #CPLEXOptimizers
    #DecisionOptimization


  • 2.  Re: Implied bound infeasibility

    Posted 03/31/11 02:14 PM

    Originally posted by: SystemAdmin


    Apparently, your problem is infeasible. This message comes from presolve that detects the infeasibility. It is very likely that this has nothing to do with CPLEX but you have an infeasibility inherent to your model or your data. Either the system you are modeling is infeasible, you did a mistake in your model, or your data are wrong.

    To analyze the infeasibility, I suggest to run the conflict refiner. In the interactive, this would look as follows:

    read yourproblem.lp
    opt
    -> will return infeasible
    conflict
    display conflict all

    The conflict refiner will extract a small sub-problem from your model that is already infeasible. By looking at this small, you can probably find out what is going on.
    Tobias
    #CPLEXOptimizers
    #DecisionOptimization


  • 3.  Re: Implied bound infeasibility

    Posted 03/31/11 03:16 PM

    Originally posted by: SystemAdmin


    Ok, thank you. I ll try this...
    #CPLEXOptimizers
    #DecisionOptimization