/* -*- mode: C -*- */ /* IGraph library. Copyright (C) 2006-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 #include "test_utilities.inc" igraph_bool_t print_motif(const igraph_t *graph, igraph_vector_t *vids, int isoclass, void* extra) { printf("Class %d: ", isoclass); print_vector(vids); return 0; } int main() { igraph_t g; igraph_vector_t hist; igraph_real_t zeros[] = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 }; igraph_vector_t cut_prob; igraph_integer_t size; igraph_ring(&g, 1000, IGRAPH_DIRECTED, 1, 1); igraph_vector_init(&hist, 0); igraph_motifs_randesu(&g, &hist, 3, igraph_vector_view(&cut_prob, zeros, 3)); print_vector(&hist); igraph_destroy(&g); igraph_vector_destroy(&hist); igraph_famous(&g, "Octahedral"); size = 3; printf("Motif size: %" IGRAPH_PRId "\n", size); igraph_motifs_randesu_callback(&g, size, igraph_vector_view(&cut_prob, zeros, size), &print_motif, NULL); size = 4; printf("Motif size: %" IGRAPH_PRId "\n", size); igraph_motifs_randesu_callback(&g, size, igraph_vector_view(&cut_prob, zeros, size), &print_motif, NULL); size = 5; printf("Motif size: %" IGRAPH_PRId "\n", size); igraph_motifs_randesu_callback(&g, size, igraph_vector_view(&cut_prob, zeros, size), &print_motif, NULL); size = 6; printf("Motif size: %" IGRAPH_PRId "\n", size); igraph_motifs_randesu_callback(&g, size, igraph_vector_view(&cut_prob, zeros, size), &print_motif, NULL); igraph_destroy(&g); VERIFY_FINALLY_STACK(); return 0; }