Originally posted by: JohanLöfberg
Display/diagnostic options do not work as (I) expected.
12.5: Creating an options structure and then changing the diagnostic field works to turn on some display
>> ops = cplexoptimset('cplex');
>> ops.diagnostics = 'on';
>> cplexlp(1,-1,1,[],[],[],[],[],ops)
Tried aggregator 1 time.
LP Presolve eliminated 1 rows and 1 columns.
All rows and columns eliminated.
Presolve time = 0.00 sec. (0.00 ticks)
12.6: The diagnostic field is gone. The field display is there but makes no difference
>> ops = cplexoptimset('cplex');
>> ops.display = 'on';
>> cplexlp(1,-1,1,[],[],[],[],[],ops);
Creating a new field with capital D works though
>> ops = cplexoptimset('cplex');
>> ops.Display = 'on';
>> cplexlp(1,-1,1,[],[],[],[],[],ops);Tried aggregator 1 time.
LP Presolve eliminated 1 rows and 1 columns.
All rows and columns eliminated.
Presolve time = 0.00 sec. (0.00 ticks)
Intended behaviour? What is the logic then?
#CPLEXOptimizers#DecisionOptimization