49 |
|
|
50 |
#include <stdio.h> |
#include <stdio.h> |
51 |
|
|
52 |
|
#include <utilities/config.h> |
53 |
|
|
54 |
typedef struct DenseMatrixStruct{ |
typedef struct DenseMatrixStruct{ |
55 |
double **data; |
double **data; |
56 |
unsigned nrows; |
unsigned nrows; |
66 |
DenseMatrix densematrix_create_empty(); |
DenseMatrix densematrix_create_empty(); |
67 |
DenseMatrix densematrix_create(unsigned nrows, unsigned ncols); |
DenseMatrix densematrix_create(unsigned nrows, unsigned ncols); |
68 |
void densematrix_destroy(DenseMatrix matrix); |
void densematrix_destroy(DenseMatrix matrix); |
69 |
|
|
70 |
|
#ifdef ASC_WITH_MMIO |
71 |
void densematrix_write_mmio(DenseMatrix matrix, FILE *fp); |
void densematrix_write_mmio(DenseMatrix matrix, FILE *fp); |
72 |
|
#endif |
73 |
|
|
74 |
#endif |
#endif |