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
|
/* ========================================================================== */
/* === UMFPACK_report_triplet =============================================== */
/* ========================================================================== */
/* -------------------------------------------------------------------------- */
/* 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 */
/* -------------------------------------------------------------------------- */
/*
User-callable. Prints a matrix in triplet form. See
umfpack_report_triplet.h for details.
*/
#include "umf_internal.h"
GLOBAL Int UMFPACK_report_triplet
(
Int n_row,
Int n_col,
Int nz,
const Int Ti [ ],
const Int Tj [ ],
const double Tx [ ],
#ifdef COMPLEX
const double Tz [ ],
#endif
const double Control [UMFPACK_CONTROL]
)
{
Int prl, prl1, k, i, j, do_values ;
Entry t ;
prl = GET_CONTROL (UMFPACK_PRL, UMFPACK_DEFAULT_PRL) ;
if (prl <= 2)
{
return (UMFPACK_OK) ;
}
PRINTF (("triplet-form matrix, n_row = "ID", n_col = "ID" nz = "ID". ",
n_row, n_col, nz)) ;
if (!Ti || !Tj)
{
PRINTF (("ERROR: indices not present\n\n")) ;
return (UMFPACK_ERROR_argument_missing) ;
}
if (n_row <= 0 || n_col <= 0)
{
PRINTF (("ERROR: n_row or n_col is <= 0\n\n")) ;
return (UMFPACK_ERROR_n_nonpositive) ;
}
if (nz < 0)
{
PRINTF (("ERROR: nz is < 0\n\n")) ;
return (UMFPACK_ERROR_invalid_matrix) ;
}
PRINTF4 (("\n")) ;
#ifdef COMPLEX
do_values = Tx && Tz ;
#else
do_values = Tx != (double *) NULL ;
#endif
prl1 = prl ;
for (k = 0 ; k < nz ; k++)
{
i = Ti [k] ;
j = Tj [k] ;
PRINTF4 ((" "ID" : "ID" "ID" ", INDEX (k), INDEX (i), INDEX (j))) ;
if (do_values && prl >= 4)
{
ASSIGN (t, Tx [k], Tz [k]) ;
PRINT_ENTRY (t) ;
}
PRINTF4 (("\n")) ;
if (i < 0 || i >= n_row || j < 0 || j >= n_col)
{
/* invalid triplet */
PRINTF (("ERROR: invalid triplet\n\n")) ;
return (UMFPACK_ERROR_invalid_matrix) ;
}
if (prl == 4 && k == 9 && nz > 10)
{
PRINTF ((" ...\n")) ;
prl-- ;
}
}
prl = prl1 ;
PRINTF4 ((" triplet-form matrix ")) ;
PRINTF (("OK\n\n")) ;
return (UMFPACK_OK) ;
}
|