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?