]> granicus.if.org Git - graphviz/commitdiff
mm2gv: remove unused 'mm_typecode_to_str'
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 10 Jul 2022 19:40:58 +0000 (12:40 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Fri, 15 Jul 2022 00:02:34 +0000 (17:02 -0700)
cmd/tools/mmio.c
cmd/tools/mmio.h

index 89627e736bdd2903d8e33bf13350911ccb658b71..a7b3b1792ae41a598a3673002c738c5cd2bda7fd 100644 (file)
@@ -132,56 +132,3 @@ int mm_read_mtx_crd_size(FILE * f, int *M, int *N, int *nz)
 
     return 0;
 }
-
-/*-------------------------------------------------------------------------*/
-
-char *mm_typecode_to_str(MM_typecode matcode)
-{
-    char buffer[MM_MAX_LINE_LENGTH];
-    char *types[4];
-    /*  char *strdup(const char *); */
-
-    /* check for MTX type */
-    if (mm_is_matrix(matcode))
-       types[0] = MM_MTX_STR;
-    else
-       return NULL;
-
-    /* check for CRD or ARR matrix */
-    if (mm_is_sparse(matcode))
-       types[1] = MM_SPARSE_STR;
-    else if (mm_is_dense(matcode))
-       types[1] = MM_DENSE_STR;
-    else
-       return NULL;
-
-    /* check for element data type */
-    if (mm_is_real(matcode))
-       types[2] = MM_REAL_STR;
-    else if (mm_is_complex(matcode))
-       types[2] = MM_COMPLEX_STR;
-    else if (mm_is_pattern(matcode))
-       types[2] = MM_PATTERN_STR;
-    else if (mm_is_integer(matcode))
-       types[2] = MM_INT_STR;
-    else
-       return NULL;
-
-
-    /* check for symmetry type */
-    if (mm_is_general(matcode))
-       types[3] = MM_GENERAL_STR;
-    else if (mm_is_symmetric(matcode))
-       types[3] = MM_SYMM_STR;
-    else if (mm_is_hermitian(matcode))
-       types[3] = MM_HERM_STR;
-    else if (mm_is_skew(matcode))
-       types[3] = MM_SKEW_STR;
-    else
-       return NULL;
-
-    snprintf(buffer, sizeof(buffer), "%s %s %s %s", types[0], types[1],
-             types[2], types[3]);
-    return strdup(buffer);
-
-}
index cc6a15f00b514d4d54a83fbcc8be48a31ccd9bc4..49e8cb1fe9db96d2742e46e6e29fb637a29815af 100644 (file)
@@ -28,8 +28,6 @@
 
 typedef char MM_typecode[4];
 
-char *mm_typecode_to_str(MM_typecode matcode);
-
 int mm_read_banner(FILE * f, MM_typecode * matcode);
 int mm_read_mtx_crd_size(FILE * f, int *M, int *N, int *nz);