Originally posted by: SystemAdmin
IloEnv and IloCplex both have their own pointers/references to output streams.
If you instantiate IloCplex in one of the following ways
IloCplex cplex(env);
IloCplex cplex(model);
then the stream pointers in 'cplex' are initialized from the stream pointers in 'env' or the environment on which 'model' was built.
However, subsequent changes to the streams in these environments do not affect the streams stored for 'cplex'.
This means you must either redirect the streams in the environments
before you instantiate IloCplex or change the streams of the IloCplex instance explicitly.
The errors concerning stream size are probably not related to CPLEX. What streams do you use when you encounter these errors?
#CPLEXOptimizers#DecisionOptimization