Originally posted by: Namal
Hello,
I have a question about my problem
\ENCODING=ISO-8859-1
\Problem name: IloCplex
Maximize
obj:
Subject To
c1: x2 + x3 - x1 >= 0
c2: - x2 + x3 - x1 >= -1
c3: x2 - x1 + x4 >= 0
c4: x2 - x3 + x4 >= 0
c5: x2 - x3 + x1 >= 0
c6: x2 + x1 + x4 >= 1
c7: - x2 + x3 - x1 >= -1
c8: - x2 - x3 + x1 >= -1
Bounds
0 <= x2 <= 1
0 <= x3 <= 1
0 <= x1 <= 1
0 <= x4 <= 1
Binaries
x2 x3 x1 x4
End
If I solve it I don't get any information about the cuts, only if I add more constrains constrain so the problem becomes infeasible I get information about the type of cut and how many were made. I also tried to use specific cuts like
cplex.setParam(IloCplex::Param::MIP::Cuts::Cliques, 3);
but they are still not used. Why is that so?
#CPLEXOptimizers#DecisionOptimization