/* IGraph library. Copyright (C) 2021 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 "test_utilities.inc" void print_and_destroy(igraph_t *g, int min, int max) { igraph_vector_t result; igraph_vector_init(&result, 0); IGRAPH_ASSERT(igraph_clique_size_hist(g, &result, min, max) == IGRAPH_SUCCESS); print_vector(&result); igraph_vector_destroy(&result); } int main() { igraph_t g_empty, g_lm; igraph_small(&g_empty, 0, 0, -1); igraph_small(&g_lm, 6, 1, 0,1, 0,2, 1,1, 1,2, 1,3, 2,0, 2,3, 3,4, 3,4, -1); printf("No vertices:\n"); print_and_destroy(&g_empty, 0, 0); printf("Graph with loops and multiple edges:\n"); print_and_destroy(&g_lm, 0, 0); printf("Same graph, minimum clique size 2:\n"); print_and_destroy(&g_lm, 2, 0); printf("Same graph, maximum clique size 2:\n"); print_and_destroy(&g_lm, 0, 2); printf("Same graph, minimum and maximum clique size 10:\n"); print_and_destroy(&g_lm, 10, 10); igraph_destroy(&g_empty); igraph_destroy(&g_lm); VERIFY_FINALLY_STACK(); return 0; }