1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
|
/* ========================================================================== */
/* === UMF_report_vector ==================================================== */
/* ========================================================================== */
/* -------------------------------------------------------------------------- */
/* UMFPACK Version 4.1 (Apr. 30, 2003), Copyright (c) 2003 by Timothy A. */
/* Davis. All Rights Reserved. See ../README for License. */
/* email: davis@cise.ufl.edu CISE Department, Univ. of Florida. */
/* web: http://www.cise.ufl.edu/research/sparse/umfpack */
/* -------------------------------------------------------------------------- */
#include "umf_internal.h"
/* ========================================================================== */
/* === print_value ========================================================== */
/* ========================================================================== */
PRIVATE void print_value
(
Int i,
const double Xx [ ],
const double Xz [ ],
Int scalar /* if true, then print real part only */
)
{
Entry *X, xi ;
/* if Xz is null, then X is in "merged" format (compatible with Entry, */
/* and ANSI C99 double _Complex type). */
X = (Entry *) Xx ;
PRINTF ((" "ID" :", INDEX (i))) ;
if (scalar)
{
PRINT_SCALAR (Xx [i]) ;
}
else
{
if (Xz != (double *) NULL)
{
ASSIGN (xi, Xx [i], Xz [i]) ;
}
else
{
xi = X [i] ;
}
PRINT_ENTRY (xi) ;
}
PRINTF (("\n")) ;
}
/* ========================================================================== */
/* === UMF_report_vector ==================================================== */
/* ========================================================================== */
GLOBAL Int UMF_report_vector
(
Int n,
const double Xx [ ],
const double Xz [ ],
Int prl,
Int user,
Int scalar
)
{
Int n2, i ;
if (user || prl >= 4)
{
PRINTF (("dense vector, n = "ID". ", n)) ;
}
if (user)
{
if (!Xx)
{
PRINTF (("ERROR: vector not present\n\n")) ;
return (UMFPACK_ERROR_argument_missing) ;
}
if (n < 0)
{
PRINTF (("ERROR: length of vector is < 0\n\n")) ;
return (UMFPACK_ERROR_n_nonpositive) ;
}
}
if (user || prl >= 4)
{
PRINTF4 (("\n")) ;
}
if (prl == 4)
{
/* print level of 4 */
n2 = MIN (10, n) ;
for (i = 0 ; i < n2 ; i++)
{
print_value (i, Xx, Xz, scalar) ;
}
if (n2 < n)
{
PRINTF ((" ...\n")) ;
print_value (n-1, Xx, Xz, scalar) ;
}
}
else if (prl > 4)
{
/* print level 4 or more */
for (i = 0 ; i < n ; i++)
{
print_value (i, Xx, Xz, scalar) ;
}
}
PRINTF4 ((" dense vector ")) ;
if (user || prl >= 4)
{
PRINTF (("OK\n\n")) ;
}
return (UMFPACK_OK) ;
}
|