Summary
Defines how detailed report will be printed.
Class
TSparseMtx
Declaration
Property ReportLevel: TReportLevel read FReportLevel write SetReportLevel;
Description
Defines how detailed report will be printed. Be careful not to set it to prlAll for larger sparse matrices, because then all non-zero elements of the sparse matrix will be printed to Report cllass, a global TStringList object located in
MtxVec unit. The report is generated by Umfpack and can be very extensive, including everything from time needed to solve the system and number of flops to details about the path to the solution and many other useful parameters. Reports are generated only by
Solve method.
Example 1
// load report from Report and display it in Memo1
Memo1.Lines.Clear();
MtxVec.Report.Position := 0;
Memo1.Lines.LoadFromStream(MtxVec.Report.Stream);
// load report from Report and display it in Memo1
Memo1->Lines.Clear();
MtxVec->Report->Position = 0;
Memo1->Lines->LoadFromStream(MtxVec->Report->Stream());
| Copyright 2008 Dew Research |
http://www.dewresearch.com