]> granicus.if.org Git - graphviz/commitdiff
topfish make_coarse_ex_graph: remove unused 'nvtxs' parameter
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 17 Jul 2022 22:25:34 +0000 (15:25 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 23 Jul 2022 00:14:28 +0000 (17:14 -0700)
lib/topfish/hierarchy.c

index f0bf865572689c02a15b3cfbdfc83b1f36b8e695..995d54ea2e5b4d8aa4ba4f8a9539361f1553d3d1 100644 (file)
@@ -562,7 +562,6 @@ static int make_coarse_graph(v_data * graph,        /* array of vtx data for graph */
 static int 
 make_coarse_ex_graph (
     ex_vtx_data * graph, /* array of vtx data for graph */
-    int nvtxs, /* number of vertices in graph */
     int nedges,        /* number of edges in graph */
     ex_vtx_data ** cgp,        /* coarsened version of graph */
     int cnvtxs,        /* number of vtxs in coarsened graph */
@@ -691,8 +690,7 @@ coarsen_match (
     free(mflag);
 
     *cnedges = make_coarse_graph(graph, nedges, cgraph, cnvtxs, v2cv, cv2v);
-    *cgeom_nedges =
-       make_coarse_ex_graph(geom_graph, nvtxs, geom_nedges, cgeom_graph,
+    *cgeom_nedges = make_coarse_ex_graph(geom_graph, geom_nedges, cgeom_graph,
                             cnvtxs, v2cv, cv2v);
 }