Originally posted by: SystemAdmin
Hello,
Regarding 1: Do you find that when using CPLEX 12.2, your program still terminates with an error condition that seems to be due to running out of memory? If so, could you please either post your code as an attachment to this forum thread, or send it to pstarhill (at) us (dot) ibm (dot) com?
Regarding 2: Do you find that there is a different optimal objective function value, or simply a different solution vector?
Regarding 3: You should be able to disable output of the optimizer by using code like the following:
# set up an instance of the Cplex class
my_cplex_object.set_results_stream(None)
my_cplex_object.set_log_stream(None)
You can also redirect these streams to any object with "write" and "flush" methods, or pass in a string to create a new file and write the results to disk. There is also a warning stream and an error stream, but you probably don't want to disable those entirely.
Philip Starhill
CPLEX Research Engineer
#CPLEXOptimizers#DecisionOptimization