after setting the objective function and limitations, I use
prob.solve()
print prob.solution.get_objective_value()
Actually, I just want to print the object value, however it displays a lot of information about cplex,
Tried aggregator 1 time.
LP Presolve eliminated 5 rows and 1 columns.
All rows and columns eliminated.
Presolve time = -0.00 sec. (0.00 ticks)
0.5
I just want to display the last line of 0.5, how to avoid printing other information using Cplex? Thank you in advance.
source
share