1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
# Check functions for graph operators
# Test suite for the IGraph library.
# Copyright (C) 2005 Gabor Csardi <csardi@rmki.kfki.hu>
# MTA RMKI, Konkoly-Thege Miklos st. 29-33, Budapest 1121, Hungary
#
# 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
AT_BANNER([[Graphs operators]])
AT_SETUP([Disjoint union (igraph_disjoint_union, igraph_dosjoint_union_many):])
AT_KEYWORDS([igraph_disjoint_union, igraph_disjoint_union_many,
disjoint_union, union])
AT_COMPILE_CHECK([simple/igraph_disjoint_union.c],
[simple/igraph_disjoint_union.out])
AT_CLEANUP
AT_SETUP([Union (igraph_union, igraph_union_many):])
AT_KEYWORDS([igraph_union, igraph_union_many, union])
AT_COMPILE_CHECK([simple/igraph_union.c],
[simple/igraph_union.out])
AT_CLEANUP
AT_SETUP([Intersection (igraph_intersection, igraph_intersection_many):])
AT_KEYWORDS([igraph_intersection, igraph_intersection_many, intersection])
AT_COMPILE_CHECK([simple/igraph_intersection.c],
[simple/igraph_intersection.out])
AT_CLEANUP
AT_SETUP([Difference (igraph_difference):])
AT_KEYWORDS([igraph_difference, difference])
AT_COMPILE_CHECK([simple/igraph_difference.c],
[simple/igraph_difference.out])
AT_CLEANUP
AT_SETUP([Complementer (igraph_complementer):])
AT_KEYWORDS([igraph_complementer, complementer])
AT_COMPILE_CHECK([simple/igraph_complementer.c],
[simple/igraph_complementer.out])
AT_CLEANUP
AT_SETUP([Composition (igraph_compose):])
AT_KEYWORDS([igraph_composition, composition, compose])
AT_COMPILE_CHECK([simple/igraph_compose.c],
[simple/igraph_compose.out])
AT_CLEANUP
|