]> granicus.if.org Git - graphviz/commitdiff
sfdpgen: remove shadowing of 'UNMATCHED'
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Thu, 8 Sep 2022 03:25:58 +0000 (20:25 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Fri, 9 Sep 2022 14:45:06 +0000 (07:45 -0700)
These constants were added in 1b847b5abf50d2ab0701523b90a20306d0ee5528 and it is
unclear why, given they are unused. They shadow a different constant in
general.h, causing compiler warnings.

lib/sfdpgen/Multilevel.c

index bcadf1ad7602ad40fe909956911b386881013762..d6f5bb3745dd1ac8412212bc00324b6cf77322a3 100644 (file)
@@ -321,7 +321,7 @@ static void maximal_independent_edge_set_heavest_edge_pernode_leaves_first(Spars
   double *a, amax = 0;
   int first = TRUE, jamax = 0;
   int *matched, nz, ncmax = 0, nz0, nzz,k ;
-  enum {UNMATCHED = -2, MATCHED = -1};
+  enum {MATCHED = -1};
 
   assert(A);
   assert(SparseMatrix_known_strucural_symmetric(A));
@@ -497,7 +497,7 @@ static void maximal_independent_edge_set_heavest_edge_pernode_supernodes_first(S
   double *a, amax = 0;
   int first = TRUE, jamax = 0;
   int *matched, nz, nz0;
-  enum {UNMATCHED = -2, MATCHED = -1};
+  enum {MATCHED = -1};
   int  nsuper, *super = NULL, *superp = NULL;
 
   assert(A);
@@ -640,7 +640,7 @@ static void maximal_independent_edge_set_heavest_cluster_pernode_leaves_first(Sp
   (void)n;
   double *a;
   int *matched, nz,  nz0, nzz,k, nv;
-  enum {UNMATCHED = -2, MATCHED = -1};
+  enum {MATCHED = -1};
   double *vlist;
 
   assert(A);