Originally posted by: Namal
Hello, I am using cplex for solving randomly generated SAT problems. Now I have encountered a strange error and I don't know exactly what the problem is. I am using ilolplex1.cpp as the template and populatebynonzeros because my clauses are stored in vectors where the last element is the compared to value.
Now, why does this problem (4 variables, 2 literals, 5 clauses) leads to the error: Failed to optimize LP
Concert exception caught: IloExtractable 3 IloNumVarI has not been extracted by IloAlgorithm 0x205bda0
0 -1 1 0 0
0 0 -1 1 0
0 -1 0 1 0
-1 -1 0 0 -1
-1 1 0 0 0
while this one does not?
1 -1 0 0 0
1 0 0 -1 0
-1 0 1 0 0
0 0 0 -1 0
1 1 0 0 1
Solution status = Infeasible
I assume that I ask cplex to extract some variables that are not there but I don't see which those are.
Thank you for your answers!
#CPLEXOptimizers#DecisionOptimization