comparison liboctave/UMFPACK/UMFPACK/Include/umfpack_report_info.h @ 5164:57077d0ddc8e

[project @ 2005-02-25 19:55:24 by jwe]
author jwe
date Fri, 25 Feb 2005 19:55:28 +0000
parents
children
comparison
equal deleted inserted replaced
5163:9f3299378193 5164:57077d0ddc8e
1 /* ========================================================================== */
2 /* === umfpack_report_info ================================================== */
3 /* ========================================================================== */
4
5 /* -------------------------------------------------------------------------- */
6 /* UMFPACK Version 4.4, Copyright (c) 2005 by Timothy A. Davis. CISE Dept, */
7 /* Univ. of Florida. All Rights Reserved. See ../Doc/License for License. */
8 /* web: http://www.cise.ufl.edu/research/sparse/umfpack */
9 /* -------------------------------------------------------------------------- */
10
11 void umfpack_di_report_info
12 (
13 const double Control [UMFPACK_CONTROL],
14 const double Info [UMFPACK_INFO]
15 ) ;
16
17 void umfpack_dl_report_info
18 (
19 const double Control [UMFPACK_CONTROL],
20 const double Info [UMFPACK_INFO]
21 ) ;
22
23 void umfpack_zi_report_info
24 (
25 const double Control [UMFPACK_CONTROL],
26 const double Info [UMFPACK_INFO]
27 ) ;
28
29 void umfpack_zl_report_info
30 (
31 const double Control [UMFPACK_CONTROL],
32 const double Info [UMFPACK_INFO]
33 ) ;
34
35 /*
36 double int Syntax:
37
38 #include "umfpack.h"
39 double Control [UMFPACK_CONTROL], Info [UMFPACK_INFO] ;
40 umfpack_di_report_info (Control, Info) ;
41
42 double long Syntax:
43
44 #include "umfpack.h"
45 double Control [UMFPACK_CONTROL], Info [UMFPACK_INFO] ;
46 umfpack_dl_report_info (Control, Info) ;
47
48 complex int Syntax:
49
50 #include "umfpack.h"
51 double Control [UMFPACK_CONTROL], Info [UMFPACK_INFO] ;
52 umfpack_zi_report_info (Control, Info) ;
53
54 complex long Syntax:
55
56 #include "umfpack.h"
57 double Control [UMFPACK_CONTROL], Info [UMFPACK_INFO] ;
58 umfpack_zl_report_info (Control, Info) ;
59
60 Purpose:
61
62 Reports statistics from the umfpack_*_*symbolic, umfpack_*_numeric, and
63 umfpack_*_*solve routines.
64
65 Arguments:
66
67 double Control [UMFPACK_CONTROL] ; Input argument, not modified.
68
69 If a (double *) NULL pointer is passed, then the default control
70 settings are used. Otherwise, the settings are determined from the
71 Control array. See umfpack_*_defaults on how to fill the Control
72 array with the default settings. If Control contains NaN's, the
73 defaults are used. The following Control parameters are used:
74
75 Control [UMFPACK_PRL]: printing level.
76
77 0 or less: no output, even when an error occurs
78 1: error messages only
79 2 or more: error messages, and print all of Info
80 Default: 1
81
82 double Info [UMFPACK_INFO] ; Input argument, not modified.
83
84 Info is an output argument of several UMFPACK routines.
85 The contents of Info are printed on standard output.
86 */