Originally posted by: LucasOliveira
First, sorry Tobias! I posted the wrong test results.
In my model I have some penalization coefficients but I removed them!
So the right results are:
=====================================================================================
Variables : 307
Fix: 2, Box: 305 Objective nonzeros : 192
Linear constraints : 1644
Less: 1632, Greater: 11, Equal: 1 Nonzeros : 29144
RHS nonzeros : 12
Variables : Min LB: 0.000000 Max UB: 1.000000
Objective nonzeros : Min : 1.000000 Max : 33.00000
Linear constraints :
Nonzeros : Min : 1.000000 Max : 1.000000
RHS nonzeros : Min : 1.000000 Max : 1.000000
=====================================================================================
Following the suggestion of Paul, I investigate the LP of nodes and I detected what can be the problem, but I still don't know why this is happening.
In my code, after the root LP is solved, the variable x215 is selected to branch.
With x215 fixed to 1 (node 2) the model has a feasible solution.
With x215 fixed to 0 (node 1) the model model should be feasible too, but CPLEX outputs that node is infeasible and prune it.
Here is the output snippet:
=====================================================================================
0 0 50.8333 107 191.0000 User: 1 67936 73.39%
0 2 50.8333 107 191.0000 50.8446 67936 73.38%
1 1 infeasible 191.0000 51.8758 67952 72.84%
2 2 77.5000 95 191.0000 77.5003 75676 59.42%
=====================================================================================
I saved the root node model and checked that no cuts was added at node 1. (The model is attached in this message.)
When I fix x215 to 0 and try to solve this model using Interactive Optimizer it found a feasible solution!
Why in my code this model is infeasible ?
Another question!
In the above ouput the fist line is the output when the cutting plane don't found more cuts for the root node!
But after this, in the next line the lower bound is improved again! How this improvement is done ?
Thansk for all suggestions until now! It's helping a lot!!!
#CPLEXOptimizers#DecisionOptimization