/* -*- mode: C -*- */ /* IGraph library. Copyright (C) 2010-2012 Gabor Csardi 334 Harvard st, Cambridge MA, 02139 USA 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, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include int main() { igraph_t g; igraph_vector_t v, v2; igraph_vector_t v_weighted, v2_weighted; igraph_integer_t n; igraph_neimode_t mode, neighbour_degree_mode; mode = IGRAPH_IN; neighbour_degree_mode = IGRAPH_OUT; igraph_ring(&g, 10, /*directed=*/ 1, /*mutual=*/ 0, /*circular=*/ 1); n = igraph_vcount(&g); igraph_vector_init(&v, (long int)n); igraph_vector_init(&v2, (long int)n); igraph_avg_nearest_neighbor_degree(&g, igraph_vss_all(), mode, neighbour_degree_mode, &v, &v2, /*weights=*/ 0); igraph_vector_t weights; igraph_vector_init(&weights, igraph_ecount(&g)); igraph_vector_fill(&weights, 2.0); igraph_vector_init(&v_weighted, (long int)n); igraph_vector_init(&v2_weighted, (long int)n); igraph_avg_nearest_neighbor_degree(&g, igraph_vss_all(), mode, neighbour_degree_mode, &v_weighted, &v2_weighted, &weights); if (!igraph_vector_all_e(&v, &v_weighted)) { return 1; } igraph_vector_destroy(&v_weighted); igraph_vector_destroy(&v2_weighted); igraph_vector_destroy(&weights); igraph_vector_destroy(&v); igraph_vector_destroy(&v2); igraph_destroy(&g); return 0; }