Originally posted by: J.Haas
Dear Forum,
I am trying to do a sensitivity analysis on the bonds of my ranged constraints with:
getRangeSA(double[] lblower, double[] lbupper, double[] ublower,double[] ubupper,
IloRange[] rng)
However I get the "CPLEX Error 1258: No LU factorization exists." This is for a LP problem, from Java, under cplex 12.5.
I understand all the inputs for getRangeSA are only to be initialized, except from the IloRange constraints which have been added to the model prior to solving. Did I get that right?
If I try:
getRangeSA(null, null, double[] ublower,double[] ubupper, IloRange[] rng)
I get the error1893: no suitable method can be found
Thanks for your help!
#CPLEXOptimizers#DecisionOptimization