]> granicus.if.org Git - graphviz/commitdiff
sfdpgen maximal_independent_vertex_set_RS: use cgraph wrapper for allocation
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 10 Sep 2022 03:09:34 +0000 (20:09 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 11 Sep 2022 23:56:02 +0000 (16:56 -0700)
The lib/cgraph/alloc.h wrappers are similar to the older lib/common/memory.h
wrappers except (1) they are header-only and (2) they live in a directory
(cgraph) that is at the root of the dependency tree. The long term plan is to
replace all use of lib/common/memory.h with lib/cgraph/alloc.h.

lib/sfdpgen/Multilevel.c

index 7d603078dc490ee01e2b4678da97555225570877..31c523a5a2ad13f6146d3bd84f05b290b09a2fdc 100644 (file)
@@ -135,7 +135,7 @@ static void maximal_independent_vertex_set_RS(SparseMatrix A, int randomize, int
   m = A->m;
   n = A->n;
   assert(n == m);
-  *vset = N_GNEW(m,int);
+  *vset = gv_calloc(m, sizeof(int));
   for (i = 0; i < m; i++) {
     (*vset)[i] = MAX_IND_VTX_SET_U;
   }