property Verbose: TStrings;
Log optimization algorithm calculation.
Returns: TStrings
Remarks:
If not nil then the optimization method uses it for logging each optimization step. By default the Verbose property is nil meaning no logging is done.
Examples
tmpLog := TStringList.Create;
try
MtxOptimization.Verbose := tmpLog; // log each step to Memo1.Lines
MtxOptimization.Recalculate;
// save log to file
tmpLog.SaveToFile('c:\optim.log');
finally
tmpLog.Free;
end;