We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d22562 commit b0dde77Copy full SHA for b0dde77
radius_clustering/utils/mds3-util.h
@@ -255,7 +255,8 @@ static void parse_parmerters(int argc, char *argv[]) {
255
}
256
257
static void allcoate_memory_for_adjacency_list(int nb_node, int nb_edge,int offset) {
258
- int i, block_size = 40960000, free_size = 0;
+ int i, block_size = 40960000;
259
+ unsigned int free_size = 0;
260
Init_Adj_List = (int *) malloc((2 * nb_edge + nb_node) * sizeof(int));
261
if (Init_Adj_List == NULL ) {
262
for (i = 1; i <= NB_NODE; i++) {
0 commit comments