/* -*- mode: C -*- */ /* vim:set ts=4 sw=4 sts=4 et: */ /* IGraph library. Copyright (C) 2007-2020 The igraph development team This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ #include #include int main() { igraph_t graph; igraph_vector_t membership; igraph_real_t modularity; igraph_famous(&graph, "Zachary"); /* We use Zachary's karate club network. */ /* Label propagation is a stochastic method; the result will depend on the random seed. */ igraph_rng_seed(igraph_rng_default(), 123); /* All igraph functions that returns their result in an igraph_vector_t must be given an already initialized vector. */ igraph_vector_init(&membership, 0); igraph_community_label_propagation( &graph, &membership, /* weights= */ NULL, /* initial= */ NULL, /* fixed= */ NULL, &modularity); printf("%ld communities found; modularity score is %g.\n", (long int) (igraph_vector_max(&membership) + 1), modularity); printf("Communities membership: "); igraph_vector_print(&membership); /* Destroy data structures at the end. */ igraph_vector_destroy(&membership); igraph_destroy(&graph); return 0; }