Decision Optimization

Decision Optimization

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

 View Only
  • 1.  LP solution terminates with LU factorization error

    Posted Fri April 08, 2011 12:52 AM

    Originally posted by: chinaustin


    Hi,

    I am trying to solve an LP problem and it gives an saying " CPLEX Error 1258: No LU Factorization exists".

    Can anybody tell be how to overcome this error?

    Thanks for the help.
    #CPLEXOptimizers
    #DecisionOptimization


  • 2.  Re: LP solution terminates with LU factorization error

    Posted Fri April 08, 2011 02:34 AM

    Originally posted by: SystemAdmin


    Can you please be a bit more specific on what you are doing? Which API are you using? Which commands and parameter settings?
    #CPLEXOptimizers
    #DecisionOptimization


  • 3.  Re: LP solution terminates with LU factorization error

    Posted Fri April 08, 2011 09:40 AM

    Originally posted by: SystemAdmin


    The description of this error in the reference manual says:
    The requested item requires the presence of factoring.
    You may need to optimize with a 0 (zero) iteration limit to factor.
    

    Does this help? If not then I agree with Tobias: you need to provide more details. What exactly are you doing? What is the function that produces this error?
    #CPLEXOptimizers
    #DecisionOptimization


  • 4.  Re: LP solution terminates with LU factorization error

    Posted Fri August 02, 2013 06:13 PM

    Originally posted by: J.Haas


    Hi, 

    I get the same error message when trying the cplex.getRangeSA.

    I am solving an LP problem with Java. I don't really understand what "You may need to optimize with a 0 (zero) iteration limit to factor."  means.

     

    Thanks for your help

     

     


    #CPLEXOptimizers
    #DecisionOptimization


  • 5.  Re: LP solution terminates with LU factorization error

    Posted Tue August 06, 2013 09:22 AM

    Originally posted by: TobiasAchterberg


    The error message says that this operation can only be executed if there is a factorization of the current basis matrix resident in memory. If you have just solved your LP, this should be the case. But if you have applied problem modification methods afterwards, the factorization gets destroyed. If you still want to investigate the current basis, then you need to trigger a fresh factorization of the basis matrix. This can be done by setting the simplex iteration limit parameter to 0 and then solving the model again. It means that CPLEX will stop immediately (because it will hit the iteration limit), but still perform a fresh factorization of the current basis matrix.

     


    #CPLEXOptimizers
    #DecisionOptimization