*** empty log message ***

psblas3-type-indexed
Salvatore Filippone 19 years ago
parent 859ee7c676
commit ace9fc1596

@ -35,7 +35,7 @@
*/ */
/* This file is an interface to the SuperLU routines for sparse /* This file is an interface to the SuperLU routines for sparse
factorization. It was obtaned by modifying the factorization. It was obtaned by modifying the
c_fortran_dgssv.c file from the source distribution; c_fortran_dgssv.c file from the SuperLU source distribution;
original copyright terms reproduced below. original copyright terms reproduced below.
PSBLAS v 2.0, rc1, May 03, 2005 */ PSBLAS v 2.0, rc1, May 03, 2005 */

@ -112,15 +112,6 @@ fort_umf_factor_(int *n, int *nnz,
int *info) int *info)
{ {
/*
* This routine can be called from Fortran.
* performs LU decomposition.
*
* f_factors (input/output) fptr*
* On output contains the pointer pointing to
* the structure of the factored matrices.
*
*/
#ifdef Have_UMF_ #ifdef Have_UMF_
double Info [UMFPACK_INFO], Control [UMFPACK_CONTROL]; double Info [UMFPACK_INFO], Control [UMFPACK_CONTROL];
@ -176,11 +167,6 @@ fort_umf_solve_(int *itrans, int *n,
int *info) int *info)
{ {
/*
* This routine can be called from Fortran.
* performs triangular solve
*
*/
#ifdef Have_UMF_ #ifdef Have_UMF_
double Info [UMFPACK_INFO], Control [UMFPACK_CONTROL]; double Info [UMFPACK_INFO], Control [UMFPACK_CONTROL];
void *Symbolic, *Numeric ; void *Symbolic, *Numeric ;
@ -223,12 +209,6 @@ fort_umf_free_(
int *info) int *info)
{ {
/*
* This routine can be called from Fortran.
*
* free all storage in the end
*
*/
#ifdef Have_UMF_ #ifdef Have_UMF_
void *Symbolic, *Numeric ; void *Symbolic, *Numeric ;
Symbolic = (void *) *symptr; Symbolic = (void *) *symptr;

Loading…
Cancel
Save