Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I invoke cplex by java api to check whether the linear constraint set is feasible. It takes no more than one second to give the result that the linear constraint set is infeasible, but the time of getting the irreducible infeasible set(IIS) is very long.

Here is the code to set the cplex.

cplex.setOut(null);
cplex.setParam(IloCplex.IntParam.RootAlg, IloCplex.Algorithm.Auto);
cplex.setParam(IloCplex.IntParam.Threads,1);
cplex.setParam(IloCplex.IntParam.RootAlg, IloCplex.Algorithm.Concurrent);
if(!cplex.solve)
    IloConstraint con[] = cplex.getIIS().getConstraints().
....

Dose there exists some methods to make the getIIS operation more efficient?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.