]> granicus.if.org Git - graphviz/commitdiff
remove unused poly_point_map parameter to get_country_graph
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 6 Mar 2021 02:58:01 +0000 (18:58 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Tue, 16 Mar 2021 02:25:47 +0000 (19:25 -0700)
cmd/gvmap/make_map.c

index a322593e7e087d7fd8c7e1c71b97ec402f6d3d24..f4e0c1d689d3edf55183648fd9886de397a1ecaf 100644 (file)
@@ -643,7 +643,7 @@ void plot_edges(int n, int dim, real *x, SparseMatrix A){
   printf("}(* end of edges of the graph*)]");
 
 }
-static SparseMatrix get_country_graph(int n, SparseMatrix A, int *groups, SparseMatrix *poly_point_map, int GRP_RANDOM, int GRP_BBOX){
+static SparseMatrix get_country_graph(int n, SparseMatrix A, int *groups, int GRP_RANDOM, int GRP_BBOX){
   /* form a graph each vertex is a group (a country), and a vertex is connected to another if the two countryes shares borders.
    since the group ID may not be contigous (e.g., only groups 2,3,5, -1), we will return NULL if one of the group has non-positive ID! */
   int *ia, *ja;
@@ -1271,7 +1271,7 @@ static void get_polygons(int exclude_random, int n, int nrandom, int dim, Sparse
     ============================================================*/
   get_polygon_solids(exclude_random, nt, E, ncomps, comps_ptr, comps, groups, mask, *x_poly, polys, polys_groups, GRP_RANDOM, GRP_BBOX);
 
-  B = get_country_graph(n, E, groups, poly_point_map, GRP_RANDOM, GRP_BBOX);
+  B = get_country_graph(n, E, groups, GRP_RANDOM, GRP_BBOX);
   *country_graph = B;
 
   FREE(groups);