mld2p4-2:

mlprec/impl/mld_cslu_interface.c
 mlprec/impl/mld_dslu_interface.c
 mlprec/impl/mld_sslu_interface.c
 mlprec/impl/mld_zslu_interface.c

Cleanup C layer.
stopcriterion
Salvatore Filippone 11 years ago
parent 6df096e418
commit 96978aa29c

@ -92,13 +92,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifdef Have_SLU_
#include "slu_cdefs.h"
#define HANDLE_SIZE 8
/* kind of integer to hold a pointer. Use int.
This might need to be changed on 64-bit systems. */
#ifdef Ptr64Bits
typedef long long fptr;
#else
typedef int fptr; /* 32-bit by default */
#endif
typedef struct {
SuperMatrix *L;
@ -130,7 +124,7 @@ mld_cslu_fact(int n, int nnz,
* This routine can be called from Fortran.
* performs LU decomposition.
*
* f_factors (input/output) fptr*
* f_factors (input/output)
* On output contains the pointer pointing to
* the structure of the factored matrices.
*

@ -93,13 +93,6 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "slu_ddefs.h"
#define HANDLE_SIZE 8
/* kind of integer to hold a pointer. Use int.
This might need to be changed on 64-bit systems. */
#ifdef Ptr64Bits
typedef long long fptr;
#else
typedef int fptr; /* 32-bit by default */
#endif
typedef struct {
SuperMatrix *L;
@ -126,7 +119,7 @@ mld_dslu_fact(int n, int nnz, double *values,
* This routine can be called from Fortran.
* performs LU decomposition.
*
* f_factors (input/output) fptr*
* f_factors (input/output)
* On output contains the pointer pointing to
* the structure of the factored matrices.
*

@ -93,13 +93,6 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "slu_sdefs.h"
#define HANDLE_SIZE 8
/* kind of integer to hold a pointer. Use int.
This might need to be changed on 64-bit systems. */
#ifdef Ptr64Bits
typedef long long fptr;
#else
typedef int fptr; /* 32-bit by default */
#endif
typedef struct {
SuperMatrix *L;
@ -126,7 +119,7 @@ mld_sslu_fact(int n, int nnz, float *values,
* This routine can be called from Fortran.
* performs LU decomposition.
*
* f_factors (input/output) fptr*
* f_factors (input/output)
* On output contains the pointer pointing to
* the structure of the factored matrices.
*

@ -92,13 +92,6 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifdef Have_SLU_
#include "slu_zdefs.h"
#define HANDLE_SIZE 8
/* kind of integer to hold a pointer. Use int.
This might need to be changed on 64-bit systems. */
#ifdef Ptr64Bits
typedef long long fptr;
#else
typedef int fptr; /* 32-bit by default */
#endif
typedef struct {
SuperMatrix *L;
@ -130,7 +123,7 @@ mld_zslu_fact(int n, int nnz,
* This routine can be called from Fortran.
* performs LU decomposition.
*
* f_factors (input/output) fptr*
* f_factors (input/output)
* On output contains the pointer pointing to
* the structure of the factored matrices.
*

Loading…
Cancel
Save