Rev 1820 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
/* ========================================================================== *//* === umfpack_report_status ================================================ *//* ========================================================================== *//* -------------------------------------------------------------------------- *//* UMFPACK Version 4.5, Copyright (c) 2005 by Timothy A. Davis. CISE Dept, *//* Univ. of Florida. All Rights Reserved. See ../Doc/License for License. *//* web: http://www.cise.ufl.edu/research/sparse/umfpack *//* -------------------------------------------------------------------------- */void umfpack_di_report_status(const double Control [UMFPACK_CONTROL],int status) ;void umfpack_dl_report_status(const double Control [UMFPACK_CONTROL],long status) ;void umfpack_zi_report_status(const double Control [UMFPACK_CONTROL],int status) ;void umfpack_zl_report_status(const double Control [UMFPACK_CONTROL],long status) ;/*double int Syntax:#include "umfpack.h"double Control [UMFPACK_CONTROL] ;int status ;umfpack_di_report_status (Control, status) ;double long Syntax:#include "umfpack.h"double Control [UMFPACK_CONTROL] ;long status ;umfpack_dl_report_status (Control, status) ;complex int Syntax:#include "umfpack.h"double Control [UMFPACK_CONTROL] ;int status ;umfpack_zi_report_status (Control, status) ;complex long Syntax:#include "umfpack.h"double Control [UMFPACK_CONTROL] ;long status ;umfpack_zl_report_status (Control, status) ;Purpose:Prints the status (return value) of other umfpack_* routines.Arguments:double Control [UMFPACK_CONTROL] ; Input argument, not modified.If a (double *) NULL pointer is passed, then the default controlsettings are used. Otherwise, the settings are determined from theControl array. See umfpack_*_defaults on how to fill the Controlarray with the default settings. If Control contains NaN's, thedefaults are used. The following Control parameters are used:Control [UMFPACK_PRL]: printing level.0 or less: no output, even when an error occurs1: error messages only2 or more: print status, whether or not an error occurred4 or more: also print the UMFPACK Copyright6 or more: also print the UMFPACK LicenseDefault: 1Int status ; Input argument, not modified.The return value from another umfpack_* routine.*/