/* -*- 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 void print_vector(igraph_vector_t *v) { long int i, n = igraph_vector_size(v); for (i = 0; i < n; i++) { printf(" %li", (long int) VECTOR(*v)[i]); } printf("\n"); } void warning_handler_ignore(const char* reason, const char* file, int line, int e) { } int main() { igraph_t g; igraph_vector_ptr_t result; long int i, j, n; igraph_integer_t alpha; const int params[] = {4, -1, 2, 2, 0, 0, -1, -1}; igraph_set_warning_handler(warning_handler_ignore); igraph_vector_ptr_init(&result, 0); igraph_tree(&g, 5, 2, IGRAPH_TREE_OUT); for (j = 0; j < sizeof(params) / (2 * sizeof(params[0])); j++) { if (params[2 * j + 1] != 0) { igraph_independent_vertex_sets(&g, &result, params[2 * j], params[2 * j + 1]); } else { igraph_largest_independent_vertex_sets(&g, &result); } n = igraph_vector_ptr_size(&result); printf("%ld independent sets found\n", (long)n); for (i = 0; i < n; i++) { igraph_vector_t* v; v = igraph_vector_ptr_e(&result, i); print_vector((igraph_vector_t*)v); igraph_vector_destroy(v); igraph_free(v); } } igraph_destroy(&g); igraph_tree(&g, 10, 2, IGRAPH_TREE_OUT); igraph_maximal_independent_vertex_sets(&g, &result); n = igraph_vector_ptr_size(&result); printf("%ld maximal independent sets found\n", (long)n); for (i = 0; i < n; i++) { igraph_vector_t* v; v = igraph_vector_ptr_e(&result, i); print_vector((igraph_vector_t*)v); igraph_vector_destroy(v); igraph_free(v); } igraph_vector_ptr_destroy(&result); igraph_independence_number(&g, &alpha); printf("alpha=%ld\n", (long)alpha); igraph_destroy(&g); return 0; }