Add graph references
This commit is contained in:
@@ -0,0 +1,205 @@
|
||||
/*
|
||||
igraph library.
|
||||
Copyright (C) 2007-2025 The igraph development team <igraph@igraph.org>
|
||||
|
||||
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 <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#define CONCAT2x(a,b) a ## _ ## b
|
||||
#define CONCAT2(a,b) CONCAT2x(a,b)
|
||||
#define CONCAT3x(a,b,c) a ## _ ## b ## _ ## c
|
||||
#define CONCAT3(a,b,c) CONCAT3x(a,b,c)
|
||||
#define CONCAT4x(a,b,c,d) a ## _ ## b ## _ ## c ## _ ## d
|
||||
#define CONCAT4(a,b,c,d) CONCAT4x(a,b,c,d)
|
||||
#define CONCAT5x(a,b,c,d,e) a ## _ ## b ## _ ## c ## _ ## d ## _ ## e
|
||||
#define CONCAT5(a,b,c,d,e) CONCAT5x(a,b,c,d,e)
|
||||
|
||||
#if defined(BASE_IGRAPH_REAL)
|
||||
#define BASE igraph_real_t
|
||||
#define BASE_VECTOR igraph_vector_t
|
||||
#define BASE_MATRIX igraph_matrix_t
|
||||
#define SHORT
|
||||
#define OUT_FORMAT "%g"
|
||||
#define PRINTFUNC(val) igraph_real_printf(val)
|
||||
#define SNPRINTFUNC(str, size, val) igraph_real_snprintf(str, size, val)
|
||||
#define FPRINTFUNC_ALIGNED(file, width, val) igraph_real_fprintf_aligned(file, width, val)
|
||||
#define FPRINTFUNC(file, val) igraph_real_fprintf(file, val)
|
||||
#define ZERO 0.0
|
||||
#define ONE 1.0
|
||||
#define MULTIPLICITY 1
|
||||
|
||||
#elif defined(BASE_CHAR)
|
||||
#define BASE char
|
||||
#define BASE_VECTOR igraph_vector_char_t
|
||||
#define BASE_MATRIX igraph_matrix_char_t
|
||||
#define SHORT char
|
||||
#define OUT_FORMAT "%d"
|
||||
#define ZERO 0
|
||||
#define ONE 1
|
||||
#define MULTIPLICITY 1
|
||||
|
||||
#elif defined(BASE_BOOL)
|
||||
#define BASE igraph_bool_t
|
||||
#define BASE_VECTOR igraph_vector_bool_t
|
||||
#define BASE_MATRIX igraph_matrix_bool_t
|
||||
#define SHORT bool
|
||||
#define OUT_FORMAT "%d"
|
||||
#define ZERO 0
|
||||
#define ONE 1
|
||||
#define MULTIPLICITY 1
|
||||
#define NOTORDERED 1
|
||||
#define NOABS 1
|
||||
#define EQ(a,b) ((a && b) || (!a && !b))
|
||||
|
||||
#elif defined(BASE_INT)
|
||||
#define BASE igraph_int_t
|
||||
#define BASE_VECTOR igraph_vector_int_t
|
||||
#define BASE_MATRIX igraph_matrix_int_t
|
||||
#define SHORT int
|
||||
#define OUT_FORMAT "%" IGRAPH_PRId
|
||||
#define ZERO 0
|
||||
#define ONE 1
|
||||
#define MULTIPLICITY 1
|
||||
|
||||
#elif defined(BASE_FORTRAN_INT)
|
||||
#define BASE int
|
||||
#define SHORT fortran_int
|
||||
#define OUT_FORMAT "%d"
|
||||
#define ZERO 0
|
||||
#define ONE 1
|
||||
#define MULTIPLICITY 1
|
||||
|
||||
#elif defined(BASE_PTR)
|
||||
#define BASE void*
|
||||
#define SHORT ptr
|
||||
#define ZERO 0
|
||||
#define MULTIPLICITY 1
|
||||
|
||||
#elif defined(BASE_COMPLEX)
|
||||
#undef complex
|
||||
#define BASE igraph_complex_t
|
||||
#define BASE_VECTOR igraph_vector_complex_t
|
||||
#define BASE_MATRIX igraph_matrix_complex_t
|
||||
#define SHORT complex
|
||||
#define PRINTFUNC(val) igraph_complex_printf(val)
|
||||
#define SNPRINTFUNC(str, size, val) igraph_complex_snprintf(str, size, val)
|
||||
#define FPRINTFUNC_ALIGNED(file, width, val) igraph_complex_fprintf_aligned(file, width, val)
|
||||
#define FPRINTFUNC(file, val) igraph_complex_fprintf(file, val)
|
||||
#define ZERO {{0.0, 0.0}}
|
||||
#define ONE {{1.0, 0.0}}
|
||||
#define MULTIPLICITY 2
|
||||
#define NOTORDERED 1
|
||||
#define NOABS 1
|
||||
#define SUM(a,b,c) ((a) = igraph_complex_add((b),(c)))
|
||||
#define DIFF(a,b,c) ((a) = igraph_complex_sub((b),(c)))
|
||||
#define PROD(a,b,c) ((a) = igraph_complex_mul((b),(c)))
|
||||
#define DIV(a,b,c) ((a) = igraph_complex_div((b),(c)))
|
||||
#define EQ(a,b) IGRAPH_COMPLEX_EQ((a),(b))
|
||||
#define SQ(a) IGRAPH_REAL(igraph_complex_mul((a),(a)))
|
||||
|
||||
#elif defined(BASE_GRAPH)
|
||||
#define BASE igraph_t
|
||||
|
||||
#elif defined(BASE_ATTRIBUTE_RECORD)
|
||||
#define BASE igraph_attribute_record_t
|
||||
|
||||
#elif defined(BASE_BITSET)
|
||||
#define BASE igraph_bitset_t
|
||||
|
||||
#else
|
||||
#error unknown BASE_ directive
|
||||
#endif
|
||||
|
||||
#if defined(VECTOR_LIST)
|
||||
#if defined(BASE_IGRAPH_REAL)
|
||||
#define FUNCTION(c) CONCAT2x(igraph_vector_list,c)
|
||||
#define INTERNAL_FUNCTION(c) CONCAT2x(igraph_i_vector_list,c)
|
||||
#define TYPE igraph_vector_list_t
|
||||
#elif defined(BASE_BOOL)
|
||||
/* Special case because stdbool.h defines bool as a macro to _Bool which would
|
||||
* screw things up */
|
||||
#define FUNCTION(c) CONCAT2x(igraph_vector_bool_list,c)
|
||||
#define INTERNAL_FUNCTION(c) CONCAT2x(igraph_i_vector_bool_list,c)
|
||||
#define TYPE igraph_vector_bool_list_t
|
||||
#else
|
||||
#define FUNCTION(c) CONCAT4(igraph_vector,SHORT,list,c)
|
||||
#define INTERNAL_FUNCTION(c) CONCAT4(igraph_i_vector,SHORT,list,c)
|
||||
#define TYPE CONCAT3(igraph_vector,SHORT,list_t)
|
||||
#endif
|
||||
#elif defined(MATRIX_LIST)
|
||||
#if defined(BASE_IGRAPH_REAL)
|
||||
#define FUNCTION(c) CONCAT2x(igraph_matrix_list,c)
|
||||
#define INTERNAL_FUNCTION(c) CONCAT2x(igraph_i_matrix_list,c)
|
||||
#define TYPE igraph_matrix_list_t
|
||||
#elif defined(BASE_BOOL)
|
||||
/* Special case because stdbool.h defines bool as a macro to _Bool which would
|
||||
* screw things up */
|
||||
#define FUNCTION(c) CONCAT2x(igraph_matrix_bool_list,c)
|
||||
#define INTERNAL_FUNCTION(c) CONCAT2x(igraph_i_matrix_bool_list,c)
|
||||
#define TYPE igraph_matrix_bool_list_t
|
||||
#else
|
||||
#define FUNCTION(c) CONCAT4(igraph_matrix,SHORT,list,c)
|
||||
#define INTERNAL_FUNCTION(c) CONCAT4(igraph_i_matrix,SHORT,list,c)
|
||||
#define TYPE CONCAT3(igraph_matrix,SHORT,list_t)
|
||||
#endif
|
||||
#elif defined(GRAPH_LIST)
|
||||
#define FUNCTION(c) CONCAT2x(igraph_graph_list,c)
|
||||
#define INTERNAL_FUNCTION(c) CONCAT2x(igraph_i_graph_list,c)
|
||||
#define TYPE igraph_graph_list_t
|
||||
#elif defined(ATTRIBUTE_RECORD_LIST)
|
||||
#define FUNCTION(c) CONCAT2x(igraph_attribute_record_list,c)
|
||||
#define INTERNAL_FUNCTION(c) CONCAT2x(igraph_i_attribute_record_list,c)
|
||||
#define TYPE igraph_attribute_record_list_t
|
||||
#elif defined(BITSET_LIST)
|
||||
#define FUNCTION(c) CONCAT2x(igraph_bitset_list,c)
|
||||
#define INTERNAL_FUNCTION(c) CONCAT2x(igraph_i_bitset_list,c)
|
||||
#define TYPE igraph_bitset_list_t
|
||||
#else
|
||||
#if defined(BASE_IGRAPH_REAL)
|
||||
#define FUNCTION(a,c) CONCAT2(a,c)
|
||||
#define TYPE(a) CONCAT2(a,t)
|
||||
#elif defined(BASE_BOOL)
|
||||
/* Special case because stdbool.h defines bool as a macro to _Bool which would
|
||||
* screw things up */
|
||||
#define FUNCTION(a,c) CONCAT3x(a,bool,c)
|
||||
#define TYPE(a) CONCAT3x(a,bool,t)
|
||||
#else
|
||||
#define FUNCTION(a,c) CONCAT3(a,SHORT,c)
|
||||
#define TYPE(a) CONCAT3(a,SHORT,t)
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(HEAP_TYPE_MIN)
|
||||
#define HEAPMORE <
|
||||
#define HEAPMOREEQ <=
|
||||
#define HEAPLESS >
|
||||
#define HEAPLESSEQ >=
|
||||
#undef FUNCTION
|
||||
#undef INTERNAL_FUNCTION
|
||||
#undef TYPE
|
||||
#if defined(BASE_IGRAPH_REAL)
|
||||
#define FUNCTION(dir,name) CONCAT3(dir,min,name)
|
||||
#define TYPE(dir) CONCAT3(dir,min,t)
|
||||
#else
|
||||
#define FUNCTION(a,c) CONCAT4(a,min,SHORT,c)
|
||||
#define TYPE(dir) CONCAT4(dir,min,SHORT,t)
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(HEAP_TYPE_MAX)
|
||||
#define HEAPMORE >
|
||||
#define HEAPMOREEQ >=
|
||||
#define HEAPLESS <
|
||||
#define HEAPLESSEQ <=
|
||||
#endif
|
||||
Reference in New Issue
Block a user