]> granicus.if.org Git - graphviz/commitdiff
sparse QuadTree_get_supernodes_internal: remove unused 'flag' parameter
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Mon, 28 Nov 2022 00:36:54 +0000 (16:36 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 30 Nov 2022 02:06:33 +0000 (18:06 -0800)
lib/sparse/QuadTree.c

index 6b322b428782136ac57993e804b59220db12bf8a..a12a42ba94156e6e4a55eee0cf354fe9863c8565 100644 (file)
@@ -74,7 +74,7 @@ static void check_or_realloc_arrays(int dim, int *nsuper, int *nsupermax, double
   }
 }
 
-static void QuadTree_get_supernodes_internal(QuadTree qt, double bh, double *point, int nodeid, int *nsuper, int *nsupermax, double **center, double **supernode_wgts, double **distances, double *counts, int *flag){
+static void QuadTree_get_supernodes_internal(QuadTree qt, double bh, double *point, int nodeid, int *nsuper, int *nsupermax, double **center, double **supernode_wgts, double **distances, double *counts{
   SingleLinkedList l;
   double *coord, dist;
   int dim, i;
@@ -113,7 +113,7 @@ static void QuadTree_get_supernodes_internal(QuadTree qt, double bh, double *poi
     } else {
       for (i = 0; i < 1<<dim; i++){
        QuadTree_get_supernodes_internal(qt->qts[i], bh, point, nodeid, nsuper, nsupermax, center, 
-                                        supernode_wgts, distances, counts, flag);
+                                        supernode_wgts, distances, counts);
       }
     }
   }
@@ -133,7 +133,7 @@ void QuadTree_get_supernodes(QuadTree qt, double bh, double *point, int nodeid,
   if (!*center) *center = MALLOC(sizeof(double)*(*nsupermax)*dim);
   if (!*supernode_wgts) *supernode_wgts = MALLOC(sizeof(double)*(*nsupermax));
   if (!*distances) *distances = MALLOC(sizeof(double)*(*nsupermax));
-  QuadTree_get_supernodes_internal(qt, bh, point, nodeid, nsuper, nsupermax, center, supernode_wgts, distances, counts, flag);
+  QuadTree_get_supernodes_internal(qt, bh, point, nodeid, nsuper, nsupermax, center, supernode_wgts, distances, counts);
 
 }