property Verbose: TStrings;
If not nil then the optimization method uses it for logging each optimization step.
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
MtxOptimization.Verbose := Memo1.Lines; // log each step to Memo1.Lines
Memo1.Lines.Clear;
MtxOptimization.Recalculate;
// save log to file
Memo1.Lines.SaveToFile('c:\optim.log');