Destroy_CompCol_Matrix - independent C function in the serial SuperLU solver that deallocates a supermatrix in compressed sparse col- umn format (also known as the Harwell-Boeing format).
#include <sunperf.h> void Destroy_CompCol_Matrix(SuperMatrix *A); void Destroy_CompCol_Matrix_64(SuperMatrix_64 *A);
Oracle Solaris Studio Performance Library
Destroy_CompCol_Matrix(3P)
NAME
Destroy_CompCol_Matrix - Precision-independent C function in the serial
SuperLU solver that deallocates a supermatrix in compressed sparse col-
umn format (also known as the Harwell-Boeing format).
SYNOPSIS
#include <sunperf.h>
void Destroy_CompCol_Matrix(SuperMatrix *A);
void Destroy_CompCol_Matrix_64(SuperMatrix_64 *A);
PURPOSE
Destroy_CompCol_Matrix() deallocates a supermatrix in compressed column
format (NCformat).
ARGUMENTS
SuperMatrix *A (input) - pointer to SuperMatrix A, which is in NCformat
(Stype = SLU_NC).
NOTES
Destroy_CompCol_Matrix will deallocate the data structure created in
sCreate_CompCol_Matrix() along with the three arrays passed into (and
not created by) sCreate_CompCol_Matrix() as input. If it is not desir-
able for Destroy_CompCol_Matrix to deallocate memory that was not allo-
cated by sCreate_CompCol_Matrix(), the user may call Destroy_SuperMa-
trix_Store() which will leave the three input arrays untouched.
SEE ALSO
Destroy_SuperMatrix_Store
sCreate_CompCol_Matrix
SuperMatrix
http://crd.lbl.gov/~xiaoye/SuperLU/
James W. Demmel, Stanley C. Eisenstat, John R. Gilbert, Xiaoye S. Li
and Joseph W. H. Liu, "A supernodal approach to sparse partial pivot-
ing", SIAM J. Matrix Analysis and Applications, Vol. 20, Num. 3, 1999,
pp. 720-755.
7 Nov 2015
Destroy_CompCol_Matrix(3P)