Dist m4ri 0.0.1.alpha
Computing distance of a classical or quantum CSS code
Loading...
Searching...
No Matches
mmio.h
Go to the documentation of this file.
1/*
2* Matrix Market I/O library for ANSI C
3*
4* See http://math.nist.gov/MatrixMarket for details.
5*
6*
7*/
8
9#ifndef MM_IO_H
10#define MM_IO_H
11
12#define MM_MAX_LINE_LENGTH 1025
13#define MatrixMarketBanner "%%MatrixMarket"
14#define MM_MAX_TOKEN_LENGTH 64
15
16typedef char MM_typecode[4];
17
18#ifdef __cplusplus
19extern "C" {
20#endif
21
27char *mm_typecode_to_str(MM_typecode matcode);
28
35int mm_read_banner(FILE *f, MM_typecode *matcode);
36
45int mm_read_mtx_crd_size(FILE *f, int *M, int *N, int *nz);
46
54int mm_read_mtx_array_size(FILE *f, int *M, int *N);
55
62int mm_write_banner(FILE *f, MM_typecode matcode);
63
72int mm_write_mtx_crd_size(FILE *f, int M, int N, int nz);
73
81int mm_write_mtx_array_size(FILE *f, int M, int N);
82
83
84#ifdef __cplusplus
85 }
86#endif
87
88/********************* MM_typecode query fucntions ***************************/
89
90#define mm_is_matrix(typecode) ((typecode)[0]=='M')
91
92#define mm_is_sparse(typecode) ((typecode)[1]=='C')
93#define mm_is_coordinate(typecode)((typecode)[1]=='C')
94#define mm_is_dense(typecode) ((typecode)[1]=='A')
95#define mm_is_array(typecode) ((typecode)[1]=='A')
96
97#define mm_is_complex(typecode) ((typecode)[2]=='C')
98#define mm_is_real(typecode) ((typecode)[2]=='R')
99#define mm_is_pattern(typecode) ((typecode)[2]=='P')
100#define mm_is_integer(typecode) ((typecode)[2]=='I')
101
102#define mm_is_symmetric(typecode)((typecode)[3]=='S')
103#define mm_is_general(typecode) ((typecode)[3]=='G')
104#define mm_is_skew(typecode) ((typecode)[3]=='K')
105#define mm_is_hermitian(typecode)((typecode)[3]=='H')
106
107int mm_is_valid(MM_typecode matcode); /* too complex for a macro */
108
109
110/********************* MM_typecode modify fucntions ***************************/
111
112#define mm_set_matrix(typecode) ((*typecode)[0]='M')
113#define mm_set_coordinate(typecode) ((*typecode)[1]='C')
114#define mm_set_array(typecode) ((*typecode)[1]='A')
115#define mm_set_dense(typecode) mm_set_array(typecode)
116#define mm_set_sparse(typecode) mm_set_coordinate(typecode)
117
118#define mm_set_complex(typecode)((*typecode)[2]='C')
119#define mm_set_real(typecode) ((*typecode)[2]='R')
120#define mm_set_pattern(typecode)((*typecode)[2]='P')
121#define mm_set_integer(typecode)((*typecode)[2]='I')
122
123
124#define mm_set_symmetric(typecode)((*typecode)[3]='S')
125#define mm_set_general(typecode)((*typecode)[3]='G')
126#define mm_set_skew(typecode) ((*typecode)[3]='K')
127#define mm_set_hermitian(typecode)((*typecode)[3]='H')
128
129#define mm_clear_typecode(typecode) ((*typecode)[0]=(*typecode)[1]= \
130 (*typecode)[2]=' ',(*typecode)[3]='G')
131
132#define mm_initialize_typecode(typecode) mm_clear_typecode(typecode)
133
134
135/********************* Matrix Market error codes ***************************/
136
137
138#define MM_COULD_NOT_READ_FILE 11
139#define MM_PREMATURE_EOF 12
140#define MM_NOT_MTX 13
141#define MM_NO_HEADER 14
142#define MM_UNSUPPORTED_TYPE 15
143#define MM_LINE_TOO_LONG 16
144#define MM_COULD_NOT_WRITE_FILE 17
145
146
147/******************** Matrix Market internal definitions ********************
148
149 MM_matrix_typecode: 4-character sequence
150
151 ojbect sparse/ data storage
152 dense type scheme
153
154 string position: [0] [1] [2] [3]
155
156 Matrix typecode: M(atrix) C(oord) R(eal) G(eneral)
157 A(array) C(omplex) H(ermitian)
158 P(attern) S(ymmetric)
159 I(nteger) K(kew)
160
161 ***********************************************************************/
162
163#define MM_MTX_STR "matrix"
164#define MM_ARRAY_STR "array"
165#define MM_DENSE_STR "array"
166#define MM_COORDINATE_STR "coordinate"
167#define MM_SPARSE_STR "coordinate"
168#define MM_COMPLEX_STR "complex"
169#define MM_REAL_STR "real"
170#define MM_INT_STR "integer"
171#define MM_GENERAL_STR "general"
172#define MM_SYMM_STR "symmetric"
173#define MM_HERM_STR "hermitian"
174#define MM_SKEW_STR "skew-symmetric"
175#define MM_PATTERN_STR "pattern"
176
177
178/* high level routines */
179#ifdef __cplusplus
180extern "C" {
181#endif
182
183
196int mm_write_mtx_crd(char fname[], int M, int N, int nz, int I[], int J[],
197 double val[], MM_typecode matcode);
198
211int mm_read_mtx_crd_data(FILE *f, int M, int N, int nz, int I[], int J[],
212 double val[], MM_typecode matcode);
213
224int mm_read_mtx_crd_entry(FILE *f, int *I, int *J, double *real, double *img,
225 MM_typecode matcode);
226
238int mm_read_unsymmetric_sparse(const char *fname, int *M_, int *N_, int *nz_,
239 double **val_, int **I_, int **J_);
240
241#ifdef __cplusplus
242 }
243#endif
244
245
246#endif
int mm_write_banner(FILE *f, MM_typecode matcode)
Write the Matrix Market banner to a file.
Definition mmio.c:395
char MM_typecode[4]
Definition mmio.h:16
int mm_write_mtx_array_size(FILE *f, int M, int N)
Write dimensions for an array (dense) matrix.
Definition mmio.c:258
char * mm_typecode_to_str(MM_typecode matcode)
Convert a Matrix Market typecode to a human-readable string.
Definition mmio.c:464
int mm_write_mtx_crd(char fname[], int M, int N, int nz, int I[], int J[], double val[], MM_typecode matcode)
Write a coordinate matrix to a file.
Definition mmio.c:408
int mm_read_mtx_array_size(FILE *f, int *M, int *N)
Read dimensions for an array (dense) matrix.
Definition mmio.c:229
int mm_read_unsymmetric_sparse(const char *fname, int *M_, int *N_, int *nz_, double **val_, int **I_, int **J_)
High-level routine to read an unsymmetric sparse matrix in coordinate format.
Definition mmio.c:20
int mm_read_mtx_crd_data(FILE *f, int M, int N, int nz, int I[], int J[], double val[], MM_typecode matcode)
Read coordinate matrix data from a file into arrays.
int mm_is_valid(MM_typecode matcode)
Definition mmio.c:95
int mm_read_mtx_crd_entry(FILE *f, int *I, int *J, double *real, double *img, MM_typecode matcode)
Read a single coordinate entry from a file.
Definition mmio.c:307
int mm_read_mtx_crd_size(FILE *f, int *M, int *N, int *nz)
Read dimensions and number of non-zero entries for a coordinate matrix.
Definition mmio.c:198
int mm_write_mtx_crd_size(FILE *f, int M, int N, int nz)
Write dimensions and number of non-zero entries for a coordinate matrix.
Definition mmio.c:190
int mm_read_banner(FILE *f, MM_typecode *matcode)
Read the Matrix Market banner from a file.
Definition mmio.c:105