ScaMaC  0.8.2
A Scalable Matrix Collection
scamac_sparsemat_internal.h
Go to the documentation of this file.
1 
8 #ifndef SCAMAC_SPARSEMAT_INTERNAL_H
9 #define SCAMAC_SPARSEMAT_INTERNAL_H
10 
11 #include "scamac_inttypes.h"
12 #include "scamac_defs.h"
13 
14 struct scamac_sparsemat_st {
16  ScamacInt nr;
18  ScamacInt nc;
20  ScamacInt ne;
22  ScamacInt nemax;
24  ScamacInt *rptr;
26  ScamacInt *cind;
28  double *val;
31  ScamacValType valtype; // SCAMAC_VAL_REAL or SCAMAC_VAL_COMPLEX
32 };
33 
34 #endif /* SCAMAC_SPARSEMAT_INTERNAL_H */
basic ScaMaC definitions
ScaMaC index/integer types.