Home
last modified time | relevance | path

Searched defs:typecode (Results 1 – 1 of 1) sorted by relevance

/petsc/src/mat/tests/
H A Dmmio.h30 #define mm_is_matrix(typecode) ((typecode)[0] == 'M') argument
32 #define mm_is_sparse(typecode) ((typecode)[1] == 'C') argument
33 #define mm_is_coordinate(typecode) ((typecode)[1] == 'C') argument
34 #define mm_is_dense(typecode) ((typecode)[1] == 'A') argument
35 #define mm_is_array(typecode) ((typecode)[1] == 'A') argument
37 #define mm_is_complex(typecode) ((typecode)[2] == 'C') argument
38 #define mm_is_real(typecode) ((typecode)[2] == 'R') argument
39 #define mm_is_pattern(typecode) ((typecode)[2] == 'P') argument
40 #define mm_is_integer(typecode) ((typecode)[2] == 'I') argument
42 #define mm_is_symmetric(typecode) ((typecode)[3] == 'S') argument
[all …]