Import igraph_0.9.10+ds-1.debian.tar.xz
authorJerome Benoit <calculus@rezozer.net>
Sat, 10 Sep 2022 11:37:09 +0000 (12:37 +0100)
committerJerome Benoit <calculus@rezozer.net>
Sat, 10 Sep 2022 11:37:09 +0000 (12:37 +0100)
[dgit import tarball igraph 0.9.10+ds-1 igraph_0.9.10+ds-1.debian.tar.xz]

27 files changed:
adhoc/examples/benchmarks/Makefile [new file with mode: 0644]
adhoc/examples/simple/Makefile [new file with mode: 0644]
adhoc/examples/tutorial/Makefile [new file with mode: 0644]
changelog [new file with mode: 0644]
control [new file with mode: 0644]
copyright [new file with mode: 0644]
libigraph-dev.install [new file with mode: 0644]
libigraph-dev.manpages [new file with mode: 0644]
libigraph-doc.doc-base [new file with mode: 0644]
libigraph-doc.docs [new file with mode: 0644]
libigraph-doc.install [new file with mode: 0644]
libigraph2.install [new file with mode: 0644]
libigraph2.symbols [new file with mode: 0644]
patches/debianization-doc-local_fonts.patch [new file with mode: 0644]
patches/debianization-suitesparse-header_folder.patch [new file with mode: 0644]
patches/debianization.patch [new file with mode: 0644]
patches/series [new file with mode: 0644]
patches/upstream-external-plfit.patch [new file with mode: 0644]
patches/upstream-source-lintian-spelling.patch [new file with mode: 0644]
rules [new file with mode: 0755]
salsa-ci.yml [new file with mode: 0644]
source/format [new file with mode: 0644]
source/lintian-overrides [new file with mode: 0644]
tests/check [new file with mode: 0755]
tests/control [new file with mode: 0644]
upstream/metadata [new file with mode: 0644]
watch [new file with mode: 0644]

diff --git a/adhoc/examples/benchmarks/Makefile b/adhoc/examples/benchmarks/Makefile
new file mode 100644 (file)
index 0000000..139b30a
--- /dev/null
@@ -0,0 +1,61 @@
+# /usr/share/doc/libigraph-dev/examples/benchmarks/Makefile
+#
+# Ad hoc Makefile for building and playing with the sample sources
+# distributed within the debian package libigraph-examples.
+#
+# Recommended usage:
+#  create a dedicated folder somewhere in your HOME directory;
+#  link all the files in /usr/share/doc/libigraph-dev/examples/benchmarks
+#  in the dedicated folder; launch this Makefile in the dedicated folder:
+#  $ make
+#  for a basic cleanup, consider the clean target:
+#  $ make clean
+#  for an entire cleanup, the maintainer-clean target:
+#  $ make maintainer-clean
+#  for other targets, just read the Makefile.
+#
+# written for Debian by Jerome Benoit <calculus@rezozer.net>
+# on behalf of the Debian Med Packaging Team
+# copyright: 2020-2022 Jerome Benoit <calculus@rezozer.net>
+# distributed under the terms and conditions of GPL version 2 or later
+#
+
+SHELL=/bin/bash
+
+default: all
+
+PROGRAMS = \
+       $(patsubst %.c,%,$(wildcard *.c))
+
+RESULTFILES = \
+       $(addsuffix .res,$(PROGRAMS))
+
+CFLAGS = $(shell pkg-config igraph --cflags)
+LDLIBS = $(shell pkg-config igraph --libs)
+
+CFLAGS += -Wall -g
+LDLIBS += -lm
+
+all: build check
+
+build: $(PROGRAMS)
+
+checkclean:
+       $(RM) $(RESULTFILES)
+
+check-run: $(RESULTFILES)
+
+check: checkclean check-run
+
+clean: checkclean
+       $(RM) $(PROGRAMS)
+
+maintainer-clean: clean
+
+%.res : %
+       @echo "===8><--- $* ---"
+       ( set -o pipefail ; ./$< | tee $@ )
+       @echo "----------><8==="
+       @echo
+
+.NOTPARALLEL:
diff --git a/adhoc/examples/simple/Makefile b/adhoc/examples/simple/Makefile
new file mode 100644 (file)
index 0000000..bbad80b
--- /dev/null
@@ -0,0 +1,92 @@
+# /usr/share/doc/libigraph-dev/examples/simple/Makefile
+#
+# Ad hoc Makefile for building and playing with the sample sources
+# distributed within the debian package libigraph-examples.
+#
+# Recommended usage:
+#  create a dedicated folder somewhere in your HOME directory;
+#  link all the files in /usr/share/doc/libigraph-dev/examples/simple
+#  in the dedicated folder; launch this Makefile in the dedicated folder:
+#  $ make
+#  for a basic cleanup, consider the clean target:
+#  $ make clean
+#  for an entire cleanup, the maintainer-clean target:
+#  $ make maintainer-clean
+#  for other targets, just read the Makefile.
+#
+# written for Debian by Jerome Benoit <calculus@rezozer.net>
+# on behalf of the Debian Med Packaging Team
+# copyright: 2020-2022 Jerome Benoit <calculus@rezozer.net>
+# distributed under the terms and conditions of GPL version 2 or later
+#
+
+SHELL=/bin/bash
+
+default: all
+
+XPROGRAMS = \
+       tls1
+
+XOUTPOUTS = \
+       igraph_power_law_fit.out
+
+PROGRAMS = \
+       $(patsubst %.c,%,$(wildcard *.c))
+
+RESULTFILES = \
+       $(addsuffix .res,$(filter-out $(XPROGRAMS),$(PROGRAMS)))
+
+DIFFFILES = \
+       $(patsubst %.out,%.diff,$(filter-out $(XOUTPOUTS),$(wildcard *.out)))
+
+XDIFFFILES = \
+       $(patsubst %.out,%.xdiff,$(filter $(XOUTPOUTS),$(wildcard *.out)))
+
+CFLAGS = $(shell pkg-config igraph --cflags)
+LDLIBS = $(shell pkg-config igraph --libs) -lm
+
+CFLAGS += -Wall -g
+CFLAGS += -Wno-maybe-uninitialized
+
+all: build check
+
+build: $(PROGRAMS)
+
+checkclean:
+       $(RM) $(XDIFFFILES) $(DIFFFILES) $(RESULTFILES)
+
+check-run: $(RESULTFILES)
+
+check-res: $(DIFFFILES) $(XDIFFFILES)
+
+check: checkclean check-run check-res
+
+clean: checkclean
+       $(RM) $(PROGRAMS)
+
+maintainer-clean: clean
+
+%.res %.xres : %
+       @echo "===8><--- $* ---"
+       ( set -o pipefail ; ./$< | tee $@ )
+       @echo "----------><8==="
+       @echo
+
+%.diff : %.res %.out
+       @echo "===8><--- $* ---"
+       ( set -o pipefail ; diff -N $^ | tee $@ )
+       @echo "----------><8==="
+       @echo
+
+%.xdiff : %.res %.out
+       @echo "===8><--- $* ---"
+       diff -N $^ | tee $@
+       @echo "----------><8==="
+       @echo
+
+%.out : %
+#### do nothing
+
+.PRECIOUS: %.res %.xres
+
+.NOTPARALLEL:
diff --git a/adhoc/examples/tutorial/Makefile b/adhoc/examples/tutorial/Makefile
new file mode 100644 (file)
index 0000000..c081b20
--- /dev/null
@@ -0,0 +1,61 @@
+# /usr/share/doc/libigraph-dev/examples/tutorial/Makefile
+#
+# Ad hoc Makefile for building and playing with the sample sources
+# distributed within the debian package libigraph-examples.
+#
+# Recommended usage:
+#  create a dedicated folder somewhere in your HOME directory;
+#  link all the files in /usr/share/doc/libigraph-dev/examples/tutorial
+#  in the dedicated folder; launch this Makefile in the dedicated folder:
+#  $ make
+#  for a basic cleanup, consider the clean target:
+#  $ make clean
+#  for an entire cleanup, the maintainer-clean target:
+#  $ make maintainer-clean
+#  for other targets, just read the Makefile.
+#
+# written for Debian by Jerome Benoit <calculus@rezozer.net>
+# on behalf of the Debian Med Packaging Team
+# copyright: 2021-2022 Jerome Benoit <calculus@rezozer.net>
+# distributed under the terms and conditions of GPL version 2 or later
+#
+
+SHELL=/bin/bash
+
+default: all
+
+PROGRAMS = \
+       $(patsubst %.c,%,$(wildcard *.c))
+
+RESULTFILES = \
+       $(addsuffix .res,$(PROGRAMS))
+
+CFLAGS = $(shell pkg-config igraph --cflags)
+LDLIBS = $(shell pkg-config igraph --libs)
+
+CFLAGS += -Wall -g
+CFLAGS += -Wno-maybe-uninitialized
+
+all: build check
+
+build: $(PROGRAMS)
+
+checkclean:
+       $(RM) $(RESULTFILES)
+
+check-run: $(RESULTFILES)
+
+check: checkclean check-run
+
+clean: checkclean
+       $(RM) $(PROGRAMS)
+
+maintainer-clean: clean
+
+%.res : %
+       @echo "===8><--- $* ---"
+       ( set -o pipefail ; ./$< | tee $@ )
+       @echo "----------><8==="
+       @echo
+
+.NOTPARALLEL:
diff --git a/changelog b/changelog
new file mode 100644 (file)
index 0000000..9cc86c4
--- /dev/null
+++ b/changelog
@@ -0,0 +1,462 @@
+igraph (0.9.10+ds-1) unstable; urgency=medium
+
+  * New upstream nano version.
+  * Debianization:
+    - d/libigraph2.symbols, update;
+    - d/control:
+      - Standards-Version, dump to 4.6.1 (no change);
+    - d/patches/*:
+      - d/p/upstream-source-lintian-spelling.patch, imported
+        from experimental.
+
+ -- Jerome Benoit <calculus@rezozer.net>  Sat, 10 Sep 2022 11:37:09 +0000
+
+igraph (0.9.9+ds-1) unstable; urgency=medium
+
+  * New upstream nano version.
+  * Debianization:
+    - d/watch, now download directly from github.
+
+ -- Jerome Benoit <calculus@rezozer.net>  Sat, 04 Jun 2022 12:45:17 +0000
+
+igraph (0.9.8+ds-1) unstable; urgency=medium
+
+  * New upstream nano version.
+  * Debianization:
+    - d/libigraph2.symbols, update.
+
+ -- Jerome Benoit <calculus@rezozer.net>  Sat, 09 Apr 2022 13:45:34 +0000
+
+igraph (0.9.7+ds-1) unstable; urgency=medium
+
+  * New upstream nano version.
+  * Debianization:
+    - d/rules:
+      - explicitly disable LTO for the static library as LTO does
+        not really achieve anything for static libraries (thanks to
+        Timo Röhling <roehling@debian.org> for the hint).
+    - d/patches/*:
+      - d/p/upstream-external-plfit.patch, update (partially integrated).
+
+ -- Jerome Benoit <calculus@rezozer.net>  Wed, 16 Mar 2022 23:11:57 +0000
+
+igraph (0.9.6+ds-2) unstable; urgency=medium
+
+  * Source only upload
+  * Add missing build dependency on dh addon.
+  * Add two missing symbols in symbols file
+
+ -- Andreas Tille <tille@debian.org>  Sat, 08 Jan 2022 21:50:51 +0100
+
+igraph (0.9.6+ds-1) unstable; urgency=medium
+
+  * New upstream nano version.
+  * Debianization:
+    - d/aptches/*:
+      - d/p/debianization{,-suitesparse-header_folder}.patch, update;
+      - d/p/upstream-external-plfit.patch, refresh;
+      - d/p/8c5711d8d143a40602dbd177f1a343471304efa7.patch, obsoleted.
+
+ -- Jerome Benoit <calculus@rezozer.net>  Thu, 06 Jan 2022 09:29:26 +0000
+
+igraph (0.9.5+ds-3) unstable; urgency=medium
+
+  * Debianization:
+    - d/copyright, update copyright year tuples;
+    - d/adhoc/examples/*/Makfile, idem;
+    - d/patches/*:
+      - d/p/upstream-external-plfit.patch, refresh.
+
+ -- Jerome Benoit <calculus@rezozer.net>  Tue, 04 Jan 2022 20:46:03 +0000
+
+igraph (0.9.5+ds-2) unstable; urgency=medium
+
+  * Fix watchfile (comment) to detect new versions on github
+  * cme fix dpkg-control
+  * Fix test suite on i386 (see upstream issue #1894)
+
+ -- Andreas Tille <tille@debian.org>  Sun, 19 Dec 2021 08:28:23 +0100
+
+igraph (0.9.5+ds-1) experimental; urgency=medium
+
+  * New upstream nano version.
+  * Debianization:
+    - d/copyright:
+      - Files-Excluded list, now discard vendor/plfit;
+    - d/control:
+      - Build-Depends field, add libplfit-dev;
+    - d/tests/control:
+      - Depends field for benchmarks test, add libplfit-dev;
+    - d/rules:
+      - override_dh_install-indep target, update;
+      - override_dh_fixterm target, obsoleted;
+    - d/patches/upstream-external-plfit.patch, introduce;
+    - d/adhoc/adhoc/examples/{simple,tutorial}/Makefile,
+        add option -Wno-maybe-uninitialized to CFLAGS;
+    - d/libigraph-doc.docs, introduce;
+    - d/libigraph2.symbols, refresh;
+    - d/README.Debian, obsoleted.
+
+ -- Jerome Benoit <calculus@rezozer.net>  Sun, 14 Nov 2021 20:24:31 +0000
+
+igraph (0.9.4+ds-3) experimental; urgency=medium
+
+  * Debianization:
+    - d/control:
+      - Build-Depends-Indep, add python3;
+    - d/copyright, harden.
+
+ -- Jerome Benoit <calculus@rezozer.net>  Wed, 03 Nov 2021 21:04:55 +0000
+
+igraph (0.9.4+ds-2) experimental; urgency=medium
+
+  * FTBFS fix release: the new major upstream version appears to build
+    successfully with gcc-11 (Closes: #984058).
+  * Debianization:
+    - d/rules, fix typo in CONF_FLAGS;
+    - d/control:
+      - Standards-Version, dump to 4.6.0 (no change).
+
+ -- Jerome Benoit <calculus@rezozer.net>  Mon, 11 Oct 2021 19:53:51 +0000
+
+igraph (0.9.4+ds-1) experimental; urgency=medium
+
+  * New upstream minor version (minor changes)
+  * Debianization;
+    - d/copyright:
+      - Files-Excluded field, refresh;
+    - d/watch, update;
+    - d/rules:
+      - override_dh_install-indep target, update;
+    - d/libigraph-dev.install, install (new) cmake material;
+    - d/libigraph-doc.{install,doc-base}, now manage PDF manual;
+    - d/libigraph2.symbols, introduce;
+    - d/s/lintian-overrides, introduce;
+    - d/a/e/b/Makefile, refresh.
+
+ -- Jerome Benoit <calculus@rezozer.net>  Sun, 18 Jul 2021 11:18:58 +0000
+
+igraph (0.9.1+ds1-1) UNRELEASED; urgency=medium
+
+  * New upstream minor version (major changes)
+  * Debianization:
+    - d/control:
+      - SO version, bump to version 2;
+      - Build-Depends-Indep field, introduce;
+      - Build-Depends field:
+        - cmake, add (migration to cmake);
+        - jdupes, discard (no more needed);
+      - Package libigraph2:
+        - introduce (bumped SO version, see above);
+        - Conflicts and Replaces fields, discard;
+      - Package libigraph-examples, renamed libigraph-doc;
+    - d/copyright:
+      - Files-Excluded field, refresh;
+      - Debian Files:
+        - copyright, add myself;
+      - refresh;
+    - d/rules:
+      - migrate from autotools to cmake;
+      - refresh;
+    - d/clean, discard;
+    - d/tests:
+      - d/t/control:
+        - internal tests check, discard;
+        - tutorial check, introduce;
+      - d/t/check, set simple as default;
+    - d/patches:
+      - d/p/upstream-fix-examples_benchmarks_bench_h-missing-include.patch,
+        integrated;
+      - d/p/upstream-fix-examples_simple-gcc-warnings.patch, integrated;
+      - d/p/upstream-fix-lintian-spelling_error_in_binary.patch, refresh;
+      - d/p/upstream-fixed-{git-interfer-nomore,cmake-check,XSOVERSION},patch,
+        fixed by and imported from upstream (thanks to upstream team);
+      - d/p/debianization{,-doc-local_fonts}.patch, introduce;
+      - d/p/soversion.patch, SO version manage via d/p/debianization.patch;
+      - d/p/upstream-enhance-external_suitesparse.patch, obsoleted;
+      - d/p/do_not_make_anything_in_doc.patch, obsoleted;
+      - d/p/enable_removing_third_party_code.patch, obsoleted;
+    - d/adhoc/examples/*, refresh;
+    - d/libigraph-dev.manpages, introduce;
+    - d/libigraph-doc.{install,doc-base}, introduce;
+    - d/libigraph1.symbols.amd64, temporarily discard (new and not fixed ABI);
+    - d/libigraph-examples.links, obsoleted.
+
+ -- Jerome Benoit <calculus@rezozer.net>  Mon, 12 Apr 2021 18:36:28 +0000
+
+igraph (0.8.5+ds1-1) unstable; urgency=medium
+
+  * Discard d/p/skip_tests_accessing_remote.patch as it is now obsolete.
+  * Make external SuiteSparse library suite:
+    - d/p/upstream-enhance-external_suitesparse.patch ;
+    - d/p/debianization-suitesparse-header_folder.patch .
+  * Add libsuitesparse-dev to Build-Depends in d/control
+    and to Depends in d/t/control (simple tests).
+  * Simplify d/rules
+  * Uncomment and update d/libigraph{1,-dev}.install .
+  * Add to Files-Excluded list: src/{cs,SuiteSparse_config} config.h.in .
+  * Update repacksuffix and dversionmangle options in d/watch .
+  * Refresh d/libigraph1.symbols.amd64 .
+
+ -- Jerome Benoit <calculus@rezozer.net>  Sat, 26 Dec 2020 15:41:15 +0000
+
+igraph (0.8.5+ds-3) unstable; urgency=medium
+
+  * Add do-nothing override_dh_auto_{build,test,install}-indep targets in
+    d/rules to allow arch all build.
+
+ -- Jerome Benoit <calculus@rezozer.net>  Sun, 20 Dec 2020 16:29:31 +0000
+
+igraph (0.8.5+ds-2) unstable; urgency=medium
+
+  * Add myself to Uploaders.
+  * d/tests based on examples material, introduce.
+  * d/adhoc/examples/{tests,simple,benchmarks}/Makefile, introduce
+      (ease d/tests).
+  * d/patches/*:
+    - d/p/upstream-fix-examples*.patch, introduce (ease d/tests);
+    - d/p/upstream-fix-lintian-spelling_error_in_binary.patch, introduce.
+  * d/rules:
+    - override_dh_installchangelogs target: CHANGELOG.md as changelog;
+    - override_dh_compress-indep target: examples material is now
+       uncompressed (ease d/tests);
+    - override_dh_install-indep target, machinery to permit tests over
+       examples material (ease d/tests).
+  * Add Multi-Arch fields.
+
+ -- Jerome Benoit <calculus@rezozer.net>  Sun, 20 Dec 2020 14:40:34 +0000
+
+igraph (0.8.5+ds-1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * New upstream version
+  * Update Files-Excluded list (clean debclean)
+  * Update symbols (d/libigraph1.symbols.amd64)
+  * Bump Standards Version to 4.5.1 (no change)
+  * Set Forwarded field in patches to not-needed (Debian specific patches)
+  * Update d/copyright
+  * Add hardening=+all to DEB_BUILD_MAINT_OPTIONS in d/rules
+  * Link duplicates in libigraph-examples with jdupes(1)
+  * Introduce d/clean
+
+ -- Jerome Benoit <calculus@rezozer.net>  Sun, 13 Dec 2020 19:27:48 +0000
+
+igraph (0.8.3+ds-1) unstable; urgency=medium
+
+  * New upstream version
+  * New symbols
+
+ -- Andreas Tille <tille@debian.org>  Sat, 03 Oct 2020 13:07:34 +0200
+
+igraph (0.8.2+ds-2) unstable; urgency=medium
+
+  * debhelper-compat 13 (routine-update)
+  * Remove *.la file from debian/tmp to enable dh_missing --fail-missing
+  * Fix symbols to build with gcc-10
+    Closes: #966963
+
+ -- Andreas Tille <tille@debian.org>  Mon, 03 Aug 2020 17:27:43 +0200
+
+igraph (0.8.2+ds-1) unstable; urgency=medium
+
+  * New upstream version
+  * Most patches are applied upstream
+  * Point watch file to official download location
+    Closes: #958999
+  * Remove trailing whitespace in debian/changelog (routine-update)
+  * Remove trailing whitespace in debian/rules (routine-update)
+  * Add new symbol
+
+ -- Andreas Tille <tille@debian.org>  Thu, 30 Apr 2020 10:18:11 +0200
+
+igraph (0.8.1+ds-3) unstable; urgency=medium
+
+  [ Tamás Nepusz ]
+  * Another set of upstream patches relaxing tests to enable building on
+    all architectures
+    Closes: #956821
+
+  [ Andreas Tille ]
+  * Provide symbols file only for amd64 to reduce maintenance burden
+
+ -- Andreas Tille <tille@debian.org>  Fri, 24 Apr 2020 10:39:44 +0200
+
+igraph (0.8.1+ds-2) unstable; urgency=medium
+
+  * Drop --with-external-f2c (thanks for the hint to Szabolcs Horvát)
+
+  [ Tamás Nepusz ]
+  * Upstream patches relaxing tests to enable building on all architectures
+
+ -- Andreas Tille <tille@debian.org>  Mon, 20 Apr 2020 21:22:20 +0200
+
+igraph (0.8.1+ds-1) unstable; urgency=medium
+
+  * New upstream version
+  * Remove third party code that is not used anyway from upstream source
+  * Add missings in d/copyright
+    Closes: #953941
+  * New upstream version
+  * Add salsa-ci file (routine-update)
+  * Rules-Requires-Root: no (routine-update)
+  * Update symbols file
+
+ -- Andreas Tille <tille@debian.org>  Mon, 30 Mar 2020 15:02:01 +0200
+
+igraph (0.8.0-1) unstable; urgency=medium
+
+  * New upstream version
+  * Point watch file to github
+  * Standards-Version: 4.5.0 (routine-update)
+  * debhelper-compat 12 (routine-update)
+  * Use secure URI in Homepage field.
+  * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository,
+    Repository-Browse.
+  * Call ./bootstrap.sh in dh_autoreconf
+  * Build-Depends: bison, flex
+  * Add README.source for Rdata files
+  * Add symbols file
+  * Build-Depends: liblzma-dev
+    Closes: #951933
+  * Bump soname due to ABI change
+  * Use d-shlibs
+  * Upstream does not provide texinfo file any more
+  * Add example package
+  * Fix permissions
+
+ -- Andreas Tille <tille@debian.org>  Sun, 23 Feb 2020 17:04:14 +0100
+
+igraph (0.7.1-4) unstable; urgency=medium
+
+  * use a different starting vector for
+    igraph_community_leading_eigenvector() to prevent errors
+    with ARPACK 3.6.3 (Thanks for the patch to Tamás Nepusz)
+    Closes: #902760
+  * Drop Tamás Nepusz <ntamas@gmail.com> from uploaders (Tamás, thanks
+    for your previous work on the Debian package and the support you
+    provide on upstream code)
+  * debhelper 12
+  * Standards-Version: 4.3.0
+
+ -- Andreas Tille <tille@debian.org>  Tue, 15 Jan 2019 15:10:32 +0100
+
+igraph (0.7.1-3) unstable; urgency=medium
+
+  [ Mathieu Malaterre ]
+  * Remove self from Uploaders.
+
+  [ Andreas Tille ]
+  * debhelper 11
+  * Point Vcs fields to salsa.debian.org
+  * Standards-Version: 4.2.1
+  * Versioned Build-Depends: libarpack2-dev (>= 3.6.2-1~) and
+    Fixing issues with ARPACK 3.6, related to igraph issue #1107
+    Partly deals with bug #902760
+  * Exclude tests requiring remote access
+  * Secure URI in copyright format
+  * Drop useless get-orig-source target
+  * Remove trailing whitespace in debian/changelog
+  * Apply fix for CVE-2018-20349
+    Closes: #917211
+  * Ignore remaining build time errors to get fix for CVE-2018-20349 out
+
+ -- Andreas Tille <tille@debian.org>  Mon, 24 Dec 2018 15:25:53 +0100
+
+igraph (0.7.1-2.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Rename library packages for g++5 ABI transition (closes: 791075).
+
+ -- Julien Cristau <jcristau@debian.org>  Sun, 16 Aug 2015 17:36:15 +0200
+
+igraph (0.7.1-2) unstable; urgency=medium
+
+  [ Andreas Tille ]
+  * Move packagiong from SVN to Git
+
+  [ Tamas Nepusz ]
+  * Remove debian/patches/link_f2c.patch; f2c linkage not needed if
+    BLAS, LAPACK and ARPACK are all linked dynamically
+    Closes: #702882
+  * debian/patches/remove_unused_test_target.patch added to make
+    dh_auto_test work
+  * debian/patches/fix_failing_tests.patch added to fix some failing
+    test cases
+  * debian/patches/cppflags_restore.patch added to fix incorrect
+    handling of CPPFLAGS in the configure script
+  * debian/patches/drl_spelling_fix.patch added to fix a spelling
+    error in the source and silence a lintian warning
+
+ -- Tamás Nepusz <ntamas@gmail.com>  Fri, 29 Aug 2014 08:39:02 +0000
+
+igraph (0.7.1-1) unstable; urgency=medium
+
+  * New upstream version
+
+ -- Andreas Tille <tille@debian.org>  Fri, 08 Aug 2014 16:12:35 +0200
+
+igraph (0.6.5-5) unstable; urgency=medium
+
+  * use dh-autoreconf instead of autotools-dev (thanks to Logan Rosen
+    <logan@ubuntu.com> for the patch)
+    Closes: #733712
+
+ -- Andreas Tille <tille@debian.org>  Tue, 31 Dec 2013 08:37:18 +0100
+
+igraph (0.6.5-4) unstable; urgency=medium
+
+  * cme fix dpkg-control
+  * debian/patches/link_f2c.patch: Make sure libf2c will be properly linked
+    Closes: #702882
+
+ -- Andreas Tille <tille@debian.org>  Thu, 19 Dec 2013 11:23:31 +0100
+
+igraph (0.6.5-3) unstable; urgency=low
+
+  * Team upload.
+  * Rebuild against latest gmp
+  * debian/control:
+     - cme fix dpkg-control
+     - Canonical Vcs-Svn
+
+ -- Andreas Tille <tille@debian.org>  Tue, 16 Jul 2013 09:12:52 +0200
+
+igraph (0.6.5-2) unstable; urgency=low
+
+  * Upload to sid
+
+ -- Mathieu Malaterre <malat@debian.org>  Mon, 27 May 2013 14:01:54 +0200
+
+igraph (0.6.5-1) experimental; urgency=low
+
+  * New upstream
+  * Bump Std-Vers to 3.9.4. No changes needed
+
+ -- Mathieu Malaterre <malat@debian.org>  Tue, 12 Mar 2013 14:34:23 +0100
+
+igraph (0.5.4-2) unstable; urgency=low
+
+  * Use my @d.o alias
+  * Remove DMUA flag
+  * Bump Std-Vers to 3.9.3, no changes needed
+  * Switch to dpkg-source 3.0 (quilt) format
+  * Use dh(9), get hardening for free
+
+ -- Mathieu Malaterre <malat@debian.org>  Wed, 11 Apr 2012 13:09:46 +0200
+
+igraph (0.5.4-1) unstable; urgency=low
+
+  * New upstream.
+
+  * control: Change depends libgmp3-dev --> libgmp-dev.  Update
+    Standards-Version to 3.9.1.
+
+  * rules: empty out dependency_libs.
+
+ -- Steve M. Robbins <smr@debian.org>  Wed, 16 Mar 2011 23:42:10 -0500
+
+igraph (0.5.3-1) unstable; urgency=low
+
+  * Initial upload to Debian. Closes: #546752.
+
+ -- Mathieu Malaterre <mathieu.malaterre@gmail.com>  Mon, 16 Nov 2009 18:12:42 +0100
diff --git a/control b/control
new file mode 100644 (file)
index 0000000..283726d
--- /dev/null
+++ b/control
@@ -0,0 +1,92 @@
+Source: igraph
+Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.org>
+Uploaders: Jerome Benoit <calculus@rezozer.net>,
+           Andreas Tille <tille@debian.org>
+Section: science
+Priority: optional
+Build-Depends: debhelper-compat (= 13),
+               cmake (>= 3.16),
+               d-shlibs,
+               libtool,
+               bison,
+               flex,
+               libxml2-dev,
+               libplfit-dev,
+               libgmp-dev,
+               libarpack2-dev,
+               libblas-dev,
+               liblapack-dev,
+               libsuitesparse-dev,
+               libglpk-dev (>= 5.0),
+               libf2c2-dev,
+               liblzma-dev,
+               debhelper
+Build-Depends-Indep: python3,
+                     xmlto,
+                     source-highlight,
+                     fop,
+                     fonts-font-awesome
+Standards-Version: 4.6.1
+Vcs-Browser: https://salsa.debian.org/med-team/igraph
+Vcs-Git: https://salsa.debian.org/med-team/igraph.git
+Homepage: https://igraph.org/c/
+Rules-Requires-Root: no
+
+Package: libigraph2
+Architecture: any
+Multi-Arch: same
+Section: libs
+Depends: ${shlibs:Depends},
+         ${misc:Depends}
+Pre-Depends: ${misc:Pre-Depends}
+Description: library for creating and manipulating graphs
+ igraph is a library for creating and manipulating graphs.
+ It is intended to be as powerful (ie. fast) as possible to enable the
+ analysis of large graphs.
+ .
+ This is the runtime library package.
+
+Package: libigraph-dev
+Architecture: any
+Multi-Arch: same
+Section: libdevel
+Depends: libigraph2 (= ${binary:Version}),
+         ${devlibs:Depends},
+         ${misc:Depends}
+Suggests: libigraph-doc,
+          pkg-config
+Description: library for creating and manipulating graphs - development files
+ igraph is a library for creating and manipulating graphs.
+ It is intended to be as powerful (ie. fast) as possible to enable the
+ analysis of large graphs.
+ .
+ This package contains the include files and static library for the igraph
+ C library.
+
+Package: libigraph-doc
+Architecture: all
+Multi-Arch: foreign
+Section: doc
+Depends: fonts-font-awesome,
+         ${misc:Depends}
+Suggests: libigraph-dev (= ${binary:Version}),
+          libsuitesparse-dev,
+          www-browser
+Breaks: libigraph-examples (<< 0.9)
+Replaces: libigraph-examples (<< 0.9)
+Description: library for creating and manipulating graphs - reference manual
+ igraph is a library for creating and manipulating graphs.
+ It is intended to be as powerful (ie. fast) as possible to enable the
+ analysis of large graphs.
+ .
+ This package provides the reference manual for the igraph C library;
+ it also contains examples and tutorial material.
+
+Package: libigraph-examples
+Architecture: all
+Multi-Arch: foreign
+Section: oldlibs
+Depends: libigraph-doc,
+         ${misc:Depends}
+Description: transitional package
+ This is a transitional package. It can safely be removed.
diff --git a/copyright b/copyright
new file mode 100644 (file)
index 0000000..d23a663
--- /dev/null
+++ b/copyright
@@ -0,0 +1,359 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: igraph
+Source: https://github.com/igraph/igraph/releases
+Files-Excluded:
+ msvc
+ vendor/plfit
+ vendor/mini-gmp
+ vendor/lapack
+ vendor/glpk
+ vendor/f2c
+ vendor/cs
+ src/f2c.h
+ doc/html/*.html
+ doc/html/stamp
+
+Files: *
+Copyright:
+ 2005-2022 The igraph development team:
+  Gabor Csardi <csardi.gabor@gmail.com>,
+  Tamas Nepusz <ntamas@gmail.com>,
+  Szabolcs Horvat <szhorvat@gmail.com>,
+  Vincent Traag <v.a.traag@cwts.leidenuniv.nl>, and
+  Fabio Zanini <fabio.zanini@unsw.edu.au>
+License: GPL-2+
+
+Files: src/games/degree_sequence_vl/*
+Copyright: 2006 Fabien Viger
+License: GPL-2+
+
+Files:
+ src/isomorphism/bliss/*.hh
+ src/isomorphism/bliss/*.cc
+Copyright: 2003-2022 Tommi Junttila
+License: LGPL-3
+
+Files: src/layout/drl/*
+Copyright: 2007 Sandia Corporation.
+License: BSD-3-clause
+ Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
+ the U.S. Government retains certain rights in this software.
+
+Files:
+ src/cliques/cliquer/cliquer.c
+ src/cliques/cliquer/cliquer_graph.c
+ src/cliques/cliquer/reorder.c
+ src/cliques/cliquer/set.h
+Copyright: 2002 Sampo Niskanen and Patric Ã–stergÃ¥rd
+License: GPL-2+
+
+Files:
+ src/scg/scg_exact_scg.c
+ src/scg/scg_kmeans.c
+ src/scg/scg_optimal_method.c
+ src/scg/scg_utils.c
+Copyright: 2008 David Morton de Lachapelle <david.morton@a3.epfl.ch>
+License: GPL-2+
+
+Files:
+ src/scg/scg_headers.h
+ src/scg/scg.c
+ src/scg/scg_approximate_methods.c
+Copyright:
+ 2008 David Morton de Lachapelle <david.morton@a3.epfl.ch>
+ 2011-2012 Gabor Csardi
+License: GPL-2+
+
+Files: src/hrg/hrg_types.cc
+Copyright: 2004-2008 Aaron Clauset
+License: GPL-2+
+
+Files: src/core/psumtree.c
+Copyright:
+ 2006 Elliot Paquette <Elliot.Paquette05@kzoo.edu>
+ 2006-2012, Gabor Csardi
+License: GPL-2+
+
+Files: tests/unit/ring.c
+Copyright:
+ 2006-2012, Gabor Csardi
+ 2011 Minh Van Nguyen <nguyenminh2@gmail.com>
+License: GPL-2+
+
+Files: src/internal/pstdint.h
+Copyright: 2005-2007 Paul Hsieh
+License: BSD-3-clause
+
+Files: src/internal/qsort.c
+Copyright: 1992-1993 The Regents of the University of California.
+License: BSD-4-clause
+
+Files: src/internal/qsort_r.c
+Copyright: 2002 Garrett A. Wollman
+License: public-domain
+ This file is in the public domain.
+
+Files:
+ etc/cmake/GetGitRevisionDescription.cmake
+ etc/cmake/GetGitRevisionDescription.cmake.in
+Copyright: 2009-2010 Iowa State University
+License: BSL-1.0
+
+Files: etc/cmake/sanitizers.cmake
+Copyright: 2018 George Cave <gcave@stablecoder.ca>
+License: Apache-2.0
+
+Files: etc/cmake/PreventInSourceBuilds.cmake
+Copyright:
+ 1999-2019 Insight Software Consortium
+ 2020 NumFOCUS
+License: Apache-2.0
+Comment:
+ Retrieved from https://github.com/InsightSoftwareConsortium/ITK
+
+Files: etc/cmake/BuildType.cmake
+Copyright:  Marcus D. Hanwell <https://www.kitware.com/contact-us/>
+License: public-domain
+ This material is literaly in the public domain at the below address.
+Comment:
+ Retrieved from https://blog.kitware.com/cmake-and-the-default-build-type/
+
+Files: etc/cmake/JoinPaths.cmake
+Copyright: 2020 Jan Tojnar
+License: MIT
+Comment:
+ Retrieved from https://github.com/jtojnar/cmake-snips
+
+Files: etc/cmake/CodeCoverage.cmake
+Copyright: 2012-2017 Lars Bilke
+License: BSD-3-clause
+
+Files: etc/cmake/PadString.cmake
+Copyright: 2011 Johannes Wienke <jwienke@techfak.uni-bielefeld.de>
+License: GPL-2+
+
+Files: etc/cmake/FindGMP.cmake
+Copyright:
+ 2008-2010 Kent State University
+ 2011-2012 Texas A&M University
+License: MIT
+Comment:
+ Adapted by Tamas Nepusz
+
+Files: etc/cmake/FindARPACK.cmake
+Copyright: 2004-2022 The DUNE development team
+License: GPL-2
+Comment:
+ Retrieved from https://github.com/dune-project/dune-istl/
+
+Files: etc/cmake/FindCXSparse.cmake
+Copyright: Microsoft Corporation
+License: BSD-3-clause
+Comment:
+ Retrieved from https://github.com/microsoft/vcpkg/
+
+Files: etc/cmake/FindGLPK.cmake
+Copyright: N/A
+License: CC0-1.0
+Comment:
+ Retrieved from https://github.com/CGAL/cgal/
+
+Files: doc/*
+Copyright:
+ 2005-2019 Gabor Csardi and Tamas Nepusz
+ 2020-2022 The igraph development team:
+  Gabor Csardi,
+  Tamas Nepusz,
+  Szabolcs Horvat,
+  Vincent Traag, and
+  Fabio Zanini.
+License: GFDL-1.2+
+
+Files: debian/*
+Copyright:
+ 2009-2012 Mathieu Malaterre <malat@debian.org>
+ 2013-2020 Andreas Tille <tille@debian.org>
+ 2021-2022 Jerome Benoit <calculus@debian.org>
+License: GPL-2+
+
+License: Apache-2.0
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+ .
+ http://www.apache.org/licenses/LICENSE-2.0
+ .
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ .
+ On Debian systems, the complete text of the Apache version 2.0 license
+ can be found in "/usr/share/common-licenses/Apache-2.0".
+
+License: BSD-3-clause
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are
+ met:
+ .
+  * Redistributions of source code must retain the above copyright
+    notice, this list of conditions and the following disclaimer.
+  * Redistributions in binary form must reproduce the above copyright
+    notice, this list of conditions and the following disclaimer in the
+    documentation and/or other materials provided with the distribution.
+  * Neither the name of Sandia National Laboratories nor the names of
+    its contributors may be used to endorse or promote products derived from
+    this software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
+ TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+License: BSD-4-clause
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ 1. Redistributions of source code must retain the above copyright
+    notice, this list of conditions and the following disclaimer.
+ 2. Redistributions in binary form must reproduce the above copyright
+    notice, this list of conditions and the following disclaimer in the
+    documentation and/or other materials provided with the distribution.
+ 3. All advertising materials mentioning features or use of this software
+    must display the following acknowledgement:
+    This product includes software developed by the University of
+    California, Berkeley and its contributors.
+ 4. Neither the name of the University nor the names of its contributors
+    may be used to endorse or promote products derived from this software
+    without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ SUCH DAMAGE.
+
+License: BSL-1.0
+ Permission is hereby granted, free of charge, to any person or organization
+ obtaining a copy of the software and accompanying documentation covered by
+ this license (the "Software") to use, reproduce, display, distribute,
+ execute, and transmit the Software, and to prepare derivative works of the
+ Software, and to permit third-parties to whom the Software is furnished to
+ do so, all subject to the following:
+ .
+ The copyright notices in the Software and this entire statement, including
+ the above license grant, this restriction and the following disclaimer,
+ must be included in all copies of the Software, in whole or in part, and
+ all derivative works of the Software, unless such copies or derivative
+ works are solely in the form of machine-executable object code generated by
+ a source language processor.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
+ SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
+ FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+ DEALINGS IN THE SOFTWARE.
+
+License: GPL-2
+ This package is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License versiojn 2 as
+ published by the Free Software Foundation.
+ .
+ This package 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 package. If not, see <http://www.gnu.org/licenses/>.
+ .
+ On Debian systems, the complete text of the GNU General
+ Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".
+
+License: GPL-2+
+ This package 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 package 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 package. If not, see <http://www.gnu.org/licenses/>.
+ .
+ On Debian systems, the complete text of the GNU General
+ Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".
+
+License: LGPL-3
+ This package is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License version 3 as published by the Free Software Foundation.
+ .
+ This package 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
+ Lesser 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 <http://www.gnu.org/licenses/>.
+ .
+ On Debian systems, the complete text of the GNU Lesser General
+ Public License can be found in "/usr/share/common-licenses/LGPL-3".
+
+License: MIT
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+ .
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.
+
+License: GFDL-1.2+
+ Permission is granted to copy, distribute and/or modify this document
+ under the terms of the GNU Free Documentation License, Version 1.2
+ or any later version published by the Free Software Foundation;
+ with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
+ A copy of the license is included in the section entitled "GNU Free
+ Documentation License".
+ .
+ The complete text of the GNU Free Documentation License version 1.2
+ can be found in "/usr/share/common-licenses/GFDL-1.2".
+
+License: CC0-1.0
+ To the extent possible under law, the author(s) have dedicated all
+ copyright and related and neighboring rights to this software to the public
+ domain worldwide. This software is distributed without any warranty.
+ .
+ On Debian systems the full text of the CC0-1.0 license can be found in
+ "/usr/share/common-licenses/CC0-1.0"
+
diff --git a/libigraph-dev.install b/libigraph-dev.install
new file mode 100644 (file)
index 0000000..b5a9c36
--- /dev/null
@@ -0,0 +1,5 @@
+usr/lib/*/libigraph.so
+usr/lib/*/libigraph.a
+usr/lib/*/pkgconfig/*.pc
+usr/lib/*/cmake/igraph
+usr/include/igraph/*.h
diff --git a/libigraph-dev.manpages b/libigraph-dev.manpages
new file mode 100644 (file)
index 0000000..8d4d4a4
--- /dev/null
@@ -0,0 +1 @@
+doc/igraph.3
diff --git a/libigraph-doc.doc-base b/libigraph-doc.doc-base
new file mode 100644 (file)
index 0000000..ad2bfec
--- /dev/null
@@ -0,0 +1,12 @@
+Document: libigraph
+Title: igraph C library
+Author: Gábor Csárdi, Tamás Nepusz, Vincent Traag, Szabolcs Horvát, Fabio Zanini
+Abstract: This manual documents how to use the igraph C Library
+Section: Programming
+
+Format: PDF
+Files: /usr/share/doc/libigraph-dev/igraph.pdf.gz
+
+Format: HTML
+Index: /usr/share/doc/libigraph-dev/html/index.html
+Files: /usr/share/doc/libigraph-dev/html/*.html
diff --git a/libigraph-doc.docs b/libigraph-doc.docs
new file mode 100644 (file)
index 0000000..f62a09a
--- /dev/null
@@ -0,0 +1,8 @@
+AUTHORS
+ACKNOWLEDGEMENTS.md
+CODE_OF_CONDUCT.md
+CONTRIBUTING.md
+NEWS
+ONEWS
+README.md
+SUPPORT.md
diff --git a/libigraph-doc.install b/libigraph-doc.install
new file mode 100644 (file)
index 0000000..19209be
--- /dev/null
@@ -0,0 +1,5 @@
+examples usr/share/doc/libigraph-dev
+tests/benchmarks usr/share/doc/libigraph-dev/examples
+debian/adhoc/examples usr/share/doc/libigraph-dev
+_BUILD_SHARED/doc/html usr/share/doc/libigraph-dev
+_BUILD_SHARED/doc/igraph.pdf usr/share/doc/libigraph-dev
diff --git a/libigraph2.install b/libigraph2.install
new file mode 100644 (file)
index 0000000..2a892c1
--- /dev/null
@@ -0,0 +1 @@
+usr/lib/*/libigraph.so.*
diff --git a/libigraph2.symbols b/libigraph2.symbols
new file mode 100644 (file)
index 0000000..d0ea891
--- /dev/null
@@ -0,0 +1,2085 @@
+libigraph.so.2 libigraph2 #MINVER#
+* Build-Depends-Package: libigraph-dev
+ IGRAPH_FINALLY_CLEAN@Base 0.9.4
+ IGRAPH_FINALLY_FREE@Base 0.9.4
+ IGRAPH_FINALLY_REAL@Base 0.9.4
+ IGRAPH_FINALLY_STACK_SIZE@Base 0.9.4
+ igraph_2wheap_check@Base 0.9.4
+ igraph_2wheap_clear@Base 0.9.4
+ igraph_2wheap_deactivate_max@Base 0.9.4
+ igraph_2wheap_delete_max@Base 0.9.4
+ igraph_2wheap_delete_max_index@Base 0.9.4
+ igraph_2wheap_destroy@Base 0.9.4
+ igraph_2wheap_empty@Base 0.9.4
+ igraph_2wheap_get@Base 0.9.4
+ igraph_2wheap_has_active@Base 0.9.4
+ igraph_2wheap_has_elem@Base 0.9.4
+ igraph_2wheap_init@Base 0.9.4
+ igraph_2wheap_max@Base 0.9.4
+ igraph_2wheap_max_index@Base 0.9.4
+ igraph_2wheap_max_size@Base 0.9.4
+ igraph_2wheap_modify@Base 0.9.4
+ igraph_2wheap_push_with_index@Base 0.9.4
+ igraph_2wheap_size@Base 0.9.4
+ igraph_add_edge@Base 0.9.4
+ igraph_add_edges@Base 0.9.4
+ igraph_add_vertices@Base 0.9.4
+ igraph_adhesion@Base 0.9.4
+ igraph_adjacency@Base 0.9.4
+ igraph_adjacency_spectral_embedding@Base 0.9.4
+ igraph_adjacent_triangles@Base 0.9.4
+ igraph_adjlist@Base 0.9.4
+ igraph_adjlist_clear@Base 0.9.4
+ igraph_adjlist_destroy@Base 0.9.4
+ igraph_adjlist_fprint@Base 0.9.4
+ igraph_adjlist_has_edge@Base 0.9.4
+ igraph_adjlist_init@Base 0.9.4
+ igraph_adjlist_init_complementer@Base 0.9.4
+ igraph_adjlist_init_empty@Base 0.9.4
+ igraph_adjlist_print@Base 0.9.4
+ igraph_adjlist_remove_duplicate@Base 0.9.4
+ igraph_adjlist_replace_edge@Base 0.9.4
+ igraph_adjlist_simplify@Base 0.9.4
+ igraph_adjlist_size@Base 0.9.4
+ igraph_adjlist_sort@Base 0.9.4
+ igraph_all_minimal_st_separators@Base 0.9.4
+ igraph_all_st_cuts@Base 0.9.4
+ igraph_all_st_mincuts@Base 0.9.4
+ igraph_allow_interruption@Base 0.9.4
+ igraph_almost_equals@Base 0.9.6
+ igraph_are_connected@Base 0.9.4
+ igraph_arpack_options_init@Base 0.9.4
+ igraph_arpack_rnsolve@Base 0.9.4
+ igraph_arpack_rssolve@Base 0.9.4
+ igraph_arpack_storage_destroy@Base 0.9.4
+ igraph_arpack_storage_init@Base 0.9.4
+ igraph_arpack_unpack_complex@Base 0.9.4
+ igraph_array3_bool_destroy@Base 0.9.4
+ igraph_array3_bool_fill@Base 0.9.4
+ igraph_array3_bool_init@Base 0.9.4
+ igraph_array3_bool_n@Base 0.9.4
+ igraph_array3_bool_null@Base 0.9.4
+ igraph_array3_bool_resize@Base 0.9.4
+ igraph_array3_bool_scale@Base 0.9.4
+ igraph_array3_bool_size@Base 0.9.4
+ igraph_array3_bool_sum@Base 0.9.4
+ igraph_array3_bool_update@Base 0.9.4
+ igraph_array3_char_destroy@Base 0.9.4
+ igraph_array3_char_fill@Base 0.9.4
+ igraph_array3_char_init@Base 0.9.4
+ igraph_array3_char_n@Base 0.9.4
+ igraph_array3_char_null@Base 0.9.4
+ igraph_array3_char_resize@Base 0.9.4
+ igraph_array3_char_scale@Base 0.9.4
+ igraph_array3_char_size@Base 0.9.4
+ igraph_array3_char_sum@Base 0.9.4
+ igraph_array3_char_update@Base 0.9.4
+ igraph_array3_destroy@Base 0.9.4
+ igraph_array3_fill@Base 0.9.4
+ igraph_array3_init@Base 0.9.4
+ igraph_array3_long_destroy@Base 0.9.4
+ igraph_array3_long_fill@Base 0.9.4
+ igraph_array3_long_init@Base 0.9.4
+ igraph_array3_long_n@Base 0.9.4
+ igraph_array3_long_null@Base 0.9.4
+ igraph_array3_long_resize@Base 0.9.4
+ igraph_array3_long_scale@Base 0.9.4
+ igraph_array3_long_size@Base 0.9.4
+ igraph_array3_long_sum@Base 0.9.4
+ igraph_array3_long_update@Base 0.9.4
+ igraph_array3_n@Base 0.9.4
+ igraph_array3_null@Base 0.9.4
+ igraph_array3_resize@Base 0.9.4
+ igraph_array3_scale@Base 0.9.4
+ igraph_array3_size@Base 0.9.4
+ igraph_array3_sum@Base 0.9.4
+ igraph_array3_update@Base 0.9.4
+ igraph_articulation_points@Base 0.9.4
+ igraph_assortativity@Base 0.9.4
+ igraph_assortativity_degree@Base 0.9.4
+ igraph_assortativity_nominal@Base 0.9.4
+ igraph_asymmetric_preference_game@Base 0.9.4
+ igraph_atlas@Base 0.9.4
+ igraph_attribute_combination@Base 0.9.4
+ igraph_attribute_combination_add@Base 0.9.4
+ igraph_attribute_combination_destroy@Base 0.9.4
+ igraph_attribute_combination_init@Base 0.9.4
+ igraph_attribute_combination_query@Base 0.9.4
+ igraph_attribute_combination_remove@Base 0.9.4
+ igraph_authority_score@Base 0.9.4
+ igraph_automorphism_group@Base 0.9.4
+ igraph_automorphisms@Base 0.9.4
+ igraph_average_local_efficiency@Base 0.9.4
+ igraph_average_path_length@Base 0.9.4
+ igraph_average_path_length_dijkstra@Base 0.9.4
+ igraph_avg_nearest_neighbor_degree@Base 0.9.4
+ igraph_barabasi_aging_game@Base 0.9.4
+ igraph_barabasi_game@Base 0.9.4
+ igraph_betweenness@Base 0.9.4
+ igraph_betweenness_cutoff@Base 0.9.4
+ igraph_betweenness_estimate@Base 0.9.4
+ igraph_bfgs@Base 0.9.4
+ igraph_bfs@Base 0.9.4
+ igraph_bfs_simple@Base 0.9.4
+ igraph_bibcoupling@Base 0.9.4
+ igraph_biconnected_components@Base 0.9.4
+ igraph_bipartite_game@Base 0.9.4
+ igraph_bipartite_game_gnm@Base 0.9.4
+ igraph_bipartite_game_gnp@Base 0.9.4
+ igraph_bipartite_projection@Base 0.9.4
+ igraph_bipartite_projection_size@Base 0.9.4
+ igraph_blas_ddot@Base 0.9.4
+ igraph_blas_dgemv@Base 0.9.4
+ igraph_blas_dgemv_array@Base 0.9.4
+ igraph_blas_dnrm2@Base 0.9.4
+ igraph_bridges@Base 0.9.4
+ igraph_callaway_traits_game@Base 0.9.4
+ igraph_canonical_permutation@Base 0.9.4
+ igraph_cattribute_EAB@Base 0.9.4
+ igraph_cattribute_EABV@Base 0.9.4
+ igraph_cattribute_EAB_set@Base 0.9.4
+ igraph_cattribute_EAB_setv@Base 0.9.4
+ igraph_cattribute_EAN@Base 0.9.4
+ igraph_cattribute_EANV@Base 0.9.4
+ igraph_cattribute_EAN_set@Base 0.9.4
+ igraph_cattribute_EAN_setv@Base 0.9.4
+ igraph_cattribute_EAS@Base 0.9.4
+ igraph_cattribute_EASV@Base 0.9.4
+ igraph_cattribute_EAS_set@Base 0.9.4
+ igraph_cattribute_EAS_setv@Base 0.9.4
+ igraph_cattribute_GAB@Base 0.9.4
+ igraph_cattribute_GAB_set@Base 0.9.4
+ igraph_cattribute_GAN@Base 0.9.4
+ igraph_cattribute_GAN_set@Base 0.9.4
+ igraph_cattribute_GAS@Base 0.9.4
+ igraph_cattribute_GAS_set@Base 0.9.4
+ igraph_cattribute_VAB@Base 0.9.4
+ igraph_cattribute_VABV@Base 0.9.4
+ igraph_cattribute_VAB_set@Base 0.9.4
+ igraph_cattribute_VAB_setv@Base 0.9.4
+ igraph_cattribute_VAN@Base 0.9.4
+ igraph_cattribute_VANV@Base 0.9.4
+ igraph_cattribute_VAN_set@Base 0.9.4
+ igraph_cattribute_VAN_setv@Base 0.9.4
+ igraph_cattribute_VAS@Base 0.9.4
+ igraph_cattribute_VASV@Base 0.9.4
+ igraph_cattribute_VAS_set@Base 0.9.4
+ igraph_cattribute_VAS_setv@Base 0.9.4
+ igraph_cattribute_has_attr@Base 0.9.4
+ igraph_cattribute_list@Base 0.9.4
+ igraph_cattribute_remove_all@Base 0.9.4
+ igraph_cattribute_remove_e@Base 0.9.4
+ igraph_cattribute_remove_g@Base 0.9.4
+ igraph_cattribute_remove_v@Base 0.9.4
+ igraph_cattribute_table@Base 0.9.4
+ igraph_centralization@Base 0.9.4
+ igraph_centralization_betweenness@Base 0.9.4
+ igraph_centralization_betweenness_tmax@Base 0.9.4
+ igraph_centralization_closeness@Base 0.9.4
+ igraph_centralization_closeness_tmax@Base 0.9.4
+ igraph_centralization_degree@Base 0.9.4
+ igraph_centralization_degree_tmax@Base 0.9.4
+ igraph_centralization_eigenvector_centrality@Base 0.9.4
+ igraph_centralization_eigenvector_centrality_tmax@Base 0.9.4
+ igraph_cited_type_game@Base 0.9.4
+ igraph_citing_cited_type_game@Base 0.9.4
+ igraph_clique_number@Base 0.9.4
+ igraph_clique_size_hist@Base 0.9.4
+ igraph_cliques@Base 0.9.4
+ igraph_cliques_callback@Base 0.9.4
+ igraph_closeness@Base 0.9.4
+ igraph_closeness_cutoff@Base 0.9.4
+ igraph_closeness_estimate@Base 0.9.4
+ igraph_clusters@Base 0.9.4
+ igraph_cmp_epsilon@Base 0.9.6
+ igraph_cocitation@Base 0.9.4
+ igraph_cohesion@Base 0.9.4
+ igraph_cohesive_blocks@Base 0.9.4
+ igraph_community_eb_get_merges@Base 0.9.4
+ igraph_community_edge_betweenness@Base 0.9.4
+ igraph_community_fastgreedy@Base 0.9.4
+ igraph_community_fluid_communities@Base 0.9.4
+ igraph_community_infomap@Base 0.9.4
+ igraph_community_label_propagation@Base 0.9.4
+ igraph_community_leading_eigenvector@Base 0.9.4
+ igraph_community_leiden@Base 0.9.4
+ igraph_community_multilevel@Base 0.9.4
+ igraph_community_optimal_modularity@Base 0.9.4
+ igraph_community_spinglass@Base 0.9.4
+ igraph_community_spinglass_single@Base 0.9.4
+ igraph_community_to_membership@Base 0.9.4
+ igraph_community_walktrap@Base 0.9.4
+ igraph_compare_communities@Base 0.9.4
+ igraph_complementer@Base 0.9.4
+ igraph_complex@Base 0.9.4
+ igraph_complex_abs@Base 0.9.4
+ igraph_complex_add@Base 0.9.4
+ igraph_complex_add_imag@Base 0.9.4
+ igraph_complex_add_real@Base 0.9.4
+ igraph_complex_arg@Base 0.9.4
+ igraph_complex_conj@Base 0.9.4
+ igraph_complex_cos@Base 0.9.4
+ igraph_complex_cot@Base 0.9.4
+ igraph_complex_csc@Base 0.9.4
+ igraph_complex_div@Base 0.9.4
+ igraph_complex_div_imag@Base 0.9.4
+ igraph_complex_div_real@Base 0.9.4
+ igraph_complex_eq_tol@Base 0.9.4
+ igraph_complex_exp@Base 0.9.4
+ igraph_complex_inv@Base 0.9.4
+ igraph_complex_log10@Base 0.9.4
+ igraph_complex_log@Base 0.9.4
+ igraph_complex_log_b@Base 0.9.4
+ igraph_complex_logabs@Base 0.9.4
+ igraph_complex_mod@Base 0.9.4
+ igraph_complex_mul@Base 0.9.4
+ igraph_complex_mul_imag@Base 0.9.4
+ igraph_complex_mul_real@Base 0.9.4
+ igraph_complex_neg@Base 0.9.4
+ igraph_complex_polar@Base 0.9.4
+ igraph_complex_pow@Base 0.9.4
+ igraph_complex_pow_real@Base 0.9.4
+ igraph_complex_sec@Base 0.9.4
+ igraph_complex_sin@Base 0.9.4
+ igraph_complex_sqrt@Base 0.9.4
+ igraph_complex_sqrt_real@Base 0.9.4
+ igraph_complex_sub@Base 0.9.4
+ igraph_complex_sub_imag@Base 0.9.4
+ igraph_complex_sub_real@Base 0.9.4
+ igraph_complex_tan@Base 0.9.4
+ igraph_compose@Base 0.9.4
+ igraph_connect_neighborhood@Base 0.9.4
+ igraph_constraint@Base 0.9.4
+ igraph_contract_vertices@Base 0.9.4
+ igraph_convergence_degree@Base 0.9.4
+ igraph_convex_hull@Base 0.9.4
+ igraph_copy@Base 0.9.4
+ igraph_coreness@Base 0.9.4
+ igraph_correlated_game@Base 0.9.4
+ igraph_correlated_pair_game@Base 0.9.4
+ igraph_count_isomorphisms_vf2@Base 0.9.4
+ igraph_count_multiple@Base 0.9.4
+ igraph_count_subisomorphisms_vf2@Base 0.9.4
+ igraph_create@Base 0.9.4
+ igraph_create_bipartite@Base 0.9.4
+ igraph_d_indheap_delete_max@Base 0.9.4
+ igraph_d_indheap_destroy@Base 0.9.4
+ igraph_d_indheap_empty@Base 0.9.4
+ igraph_d_indheap_init@Base 0.9.4
+ igraph_d_indheap_max@Base 0.9.4
+ igraph_d_indheap_max_index@Base 0.9.4
+ igraph_d_indheap_push@Base 0.9.4
+ igraph_d_indheap_reserve@Base 0.9.4
+ igraph_d_indheap_size@Base 0.9.4
+ igraph_de_bruijn@Base 0.9.4
+ igraph_decompose@Base 0.9.4
+ igraph_decompose_destroy@Base 0.9.4
+ igraph_degree@Base 0.9.4
+ igraph_degree_sequence_game@Base 0.9.4
+ igraph_delete_edges@Base 0.9.4
+ igraph_delete_vertices@Base 0.9.4
+ igraph_delete_vertices_idx@Base 0.9.4
+ igraph_density@Base 0.9.4
+ igraph_destroy@Base 0.9.4
+ igraph_deterministic_optimal_imitation@Base 0.9.4
+ igraph_dfs@Base 0.9.4
+ igraph_diameter@Base 0.9.4
+ igraph_diameter_dijkstra@Base 0.9.4
+ igraph_difference@Base 0.9.4
+ igraph_dim_select@Base 0.9.4
+ igraph_disjoint_union@Base 0.9.4
+ igraph_disjoint_union_many@Base 0.9.4
+ igraph_diversity@Base 0.9.4
+ igraph_dnorm@Base 0.9.4
+ igraph_dominator_tree@Base 0.9.4
+ igraph_dot_product_game@Base 0.9.4
+ igraph_dqueue_back@Base 0.9.4
+ igraph_dqueue_bool_back@Base 0.9.4
+ igraph_dqueue_bool_clear@Base 0.9.4
+ igraph_dqueue_bool_destroy@Base 0.9.4
+ igraph_dqueue_bool_e@Base 0.9.4
+ igraph_dqueue_bool_empty@Base 0.9.4
+ igraph_dqueue_bool_fprint@Base 0.9.4
+ igraph_dqueue_bool_full@Base 0.9.4
+ igraph_dqueue_bool_head@Base 0.9.4
+ igraph_dqueue_bool_init@Base 0.9.4
+ igraph_dqueue_bool_pop@Base 0.9.4
+ igraph_dqueue_bool_pop_back@Base 0.9.4
+ igraph_dqueue_bool_print@Base 0.9.4
+ igraph_dqueue_bool_push@Base 0.9.4
+ igraph_dqueue_bool_size@Base 0.9.4
+ igraph_dqueue_char_back@Base 0.9.4
+ igraph_dqueue_char_clear@Base 0.9.4
+ igraph_dqueue_char_destroy@Base 0.9.4
+ igraph_dqueue_char_e@Base 0.9.4
+ igraph_dqueue_char_empty@Base 0.9.4
+ igraph_dqueue_char_fprint@Base 0.9.4
+ igraph_dqueue_char_full@Base 0.9.4
+ igraph_dqueue_char_head@Base 0.9.4
+ igraph_dqueue_char_init@Base 0.9.4
+ igraph_dqueue_char_pop@Base 0.9.4
+ igraph_dqueue_char_pop_back@Base 0.9.4
+ igraph_dqueue_char_print@Base 0.9.4
+ igraph_dqueue_char_push@Base 0.9.4
+ igraph_dqueue_char_size@Base 0.9.4
+ igraph_dqueue_clear@Base 0.9.4
+ igraph_dqueue_destroy@Base 0.9.4
+ igraph_dqueue_e@Base 0.9.4
+ igraph_dqueue_empty@Base 0.9.4
+ igraph_dqueue_fprint@Base 0.9.4
+ igraph_dqueue_full@Base 0.9.4
+ igraph_dqueue_head@Base 0.9.4
+ igraph_dqueue_init@Base 0.9.4
+ igraph_dqueue_int_back@Base 0.9.4
+ igraph_dqueue_int_clear@Base 0.9.4
+ igraph_dqueue_int_destroy@Base 0.9.4
+ igraph_dqueue_int_e@Base 0.9.4
+ igraph_dqueue_int_empty@Base 0.9.4
+ igraph_dqueue_int_fprint@Base 0.9.4
+ igraph_dqueue_int_full@Base 0.9.4
+ igraph_dqueue_int_head@Base 0.9.4
+ igraph_dqueue_int_init@Base 0.9.4
+ igraph_dqueue_int_pop@Base 0.9.4
+ igraph_dqueue_int_pop_back@Base 0.9.4
+ igraph_dqueue_int_print@Base 0.9.4
+ igraph_dqueue_int_push@Base 0.9.4
+ igraph_dqueue_int_size@Base 0.9.4
+ igraph_dqueue_long_back@Base 0.9.4
+ igraph_dqueue_long_clear@Base 0.9.4
+ igraph_dqueue_long_destroy@Base 0.9.4
+ igraph_dqueue_long_e@Base 0.9.4
+ igraph_dqueue_long_empty@Base 0.9.4
+ igraph_dqueue_long_fprint@Base 0.9.4
+ igraph_dqueue_long_full@Base 0.9.4
+ igraph_dqueue_long_head@Base 0.9.4
+ igraph_dqueue_long_init@Base 0.9.4
+ igraph_dqueue_long_pop@Base 0.9.4
+ igraph_dqueue_long_pop_back@Base 0.9.4
+ igraph_dqueue_long_print@Base 0.9.4
+ igraph_dqueue_long_push@Base 0.9.4
+ igraph_dqueue_long_size@Base 0.9.4
+ igraph_dqueue_pop@Base 0.9.4
+ igraph_dqueue_pop_back@Base 0.9.4
+ igraph_dqueue_print@Base 0.9.4
+ igraph_dqueue_push@Base 0.9.4
+ igraph_dqueue_size@Base 0.9.4
+ igraph_dyad_census@Base 0.9.4
+ igraph_eccentricity@Base 0.9.4
+ igraph_ecount@Base 0.9.4
+ igraph_edge@Base 0.9.4
+ igraph_edge_betweenness@Base 0.9.4
+ igraph_edge_betweenness_cutoff@Base 0.9.4
+ igraph_edge_betweenness_estimate@Base 0.9.4
+ igraph_edge_connectivity@Base 0.9.4
+ igraph_edge_disjoint_paths@Base 0.9.4
+ igraph_edges@Base 0.9.4
+ igraph_eigen_adjacency@Base 0.9.4
+ igraph_eigen_laplacian@Base 0.9.4
+ igraph_eigen_matrix@Base 0.9.4
+ igraph_eigen_matrix_symmetric@Base 0.9.4
+ igraph_eigenvector_centrality@Base 0.9.4
+ igraph_eit_as_vector@Base 0.9.4
+ igraph_eit_create@Base 0.9.4
+ igraph_eit_destroy@Base 0.9.4
+ igraph_empty@Base 0.9.4
+ igraph_empty_attrs@Base 0.9.4
+ igraph_erdos_renyi_game@Base 0.9.4
+ igraph_erdos_renyi_game_gnm@Base 0.9.4
+ igraph_erdos_renyi_game_gnp@Base 0.9.4
+ igraph_error@Base 0.9.4
+ igraph_error_handler_abort@Base 0.9.4
+ igraph_error_handler_ignore@Base 0.9.4
+ igraph_error_handler_printignore@Base 0.9.4
+ igraph_errorf@Base 0.9.4
+ igraph_errorvf@Base 0.9.4
+ igraph_es_1@Base 0.9.4
+ igraph_es_all@Base 0.9.4
+ igraph_es_as_vector@Base 0.9.4
+ igraph_es_copy@Base 0.9.4
+ igraph_es_destroy@Base 0.9.4
+ igraph_es_fromto@Base 0.9.4
+ igraph_es_incident@Base 0.9.4
+ igraph_es_is_all@Base 0.9.4
+ igraph_es_multipairs@Base 0.9.4
+ igraph_es_none@Base 0.9.4
+ igraph_es_pairs@Base 0.9.4
+ igraph_es_pairs_small@Base 0.9.4
+ igraph_es_path@Base 0.9.4
+ igraph_es_path_small@Base 0.9.4
+ igraph_es_seq@Base 0.9.4
+ igraph_es_size@Base 0.9.4
+ igraph_es_type@Base 0.9.4
+ igraph_es_vector@Base 0.9.4
+ igraph_es_vector_copy@Base 0.9.4
+ igraph_ess_1@Base 0.9.4
+ igraph_ess_all@Base 0.9.4
+ igraph_ess_none@Base 0.9.4
+ igraph_ess_seq@Base 0.9.4
+ igraph_ess_vector@Base 0.9.4
+ igraph_establishment_game@Base 0.9.4
+ igraph_estack_destroy@Base 0.9.4
+ igraph_estack_init@Base 0.9.4
+ igraph_estack_iselement@Base 0.9.4
+ igraph_estack_pop@Base 0.9.4
+ igraph_estack_print@Base 0.9.4
+ igraph_estack_push@Base 0.9.4
+ igraph_estack_size@Base 0.9.4
+ igraph_eulerian_cycle@Base 0.9.4
+ igraph_eulerian_path@Base 0.9.4
+ igraph_even_tarjan_reduction@Base 0.9.4
+ igraph_extended_chordal_ring@Base 0.9.4
+ igraph_famous@Base 0.9.4
+ igraph_fatal@Base 0.9.4
+ igraph_fatal_handler_abort@Base 0.9.4
+ igraph_fatalf@Base 0.9.4
+ igraph_feedback_arc_set@Base 0.9.4
+ igraph_finite@Base 0.9.4
+ igraph_forest_fire_game@Base 0.9.4
+ igraph_free@Base 0.9.4
+ igraph_from_prufer@Base 0.9.4
+ igraph_full@Base 0.9.4
+ igraph_full_bipartite@Base 0.9.4
+ igraph_full_citation@Base 0.9.4
+ igraph_get_adjacency@Base 0.9.4
+ igraph_get_adjacency_sparse@Base 0.9.4
+ igraph_get_all_shortest_paths@Base 0.9.4
+ igraph_get_all_shortest_paths_dijkstra@Base 0.9.4
+ igraph_get_all_simple_paths@Base 0.9.4
+ igraph_get_edgelist@Base 0.9.4
+ igraph_get_eid@Base 0.9.4
+ igraph_get_eids@Base 0.9.4
+ igraph_get_eids_multi@Base 0.9.4
+ igraph_get_incidence@Base 0.9.4
+ igraph_get_isomorphisms_vf2@Base 0.9.4
+ igraph_get_shortest_path@Base 0.9.4
+ igraph_get_shortest_path_bellman_ford@Base 0.9.4
+ igraph_get_shortest_path_dijkstra@Base 0.9.4
+ igraph_get_shortest_paths@Base 0.9.4
+ igraph_get_shortest_paths_bellman_ford@Base 0.9.4
+ igraph_get_shortest_paths_dijkstra@Base 0.9.4
+ igraph_get_sparsemat@Base 0.9.4
+ igraph_get_stochastic@Base 0.9.4
+ igraph_get_stochastic_sparsemat@Base 0.9.4
+ igraph_get_subisomorphisms_vf2@Base 0.9.4
+ igraph_girth@Base 0.9.4
+ igraph_global_efficiency@Base 0.9.4
+ igraph_gomory_hu_tree@Base 0.9.4
+ igraph_graphlets@Base 0.9.4
+ igraph_graphlets_candidate_basis@Base 0.9.4
+ igraph_graphlets_project@Base 0.9.4
+ igraph_grg_game@Base 0.9.4
+ igraph_growing_random_game@Base 0.9.4
+ igraph_harmonic_centrality@Base 0.9.4
+ igraph_harmonic_centrality_cutoff@Base 0.9.4
+ igraph_has_attribute_table@Base 0.9.4
+ igraph_has_loop@Base 0.9.4
+ igraph_has_multiple@Base 0.9.4
+ igraph_heap_char_delete_top@Base 0.9.4
+ igraph_heap_char_destroy@Base 0.9.4
+ igraph_heap_char_empty@Base 0.9.4
+ igraph_heap_char_init@Base 0.9.4
+ igraph_heap_char_init_array@Base 0.9.4
+ igraph_heap_char_push@Base 0.9.4
+ igraph_heap_char_reserve@Base 0.9.4
+ igraph_heap_char_size@Base 0.9.4
+ igraph_heap_char_top@Base 0.9.4
+ igraph_heap_delete_top@Base 0.9.4
+ igraph_heap_destroy@Base 0.9.4
+ igraph_heap_empty@Base 0.9.4
+ igraph_heap_init@Base 0.9.4
+ igraph_heap_init_array@Base 0.9.4
+ igraph_heap_long_delete_top@Base 0.9.4
+ igraph_heap_long_destroy@Base 0.9.4
+ igraph_heap_long_empty@Base 0.9.4
+ igraph_heap_long_init@Base 0.9.4
+ igraph_heap_long_init_array@Base 0.9.4
+ igraph_heap_long_push@Base 0.9.4
+ igraph_heap_long_reserve@Base 0.9.4
+ igraph_heap_long_size@Base 0.9.4
+ igraph_heap_long_top@Base 0.9.4
+ igraph_heap_min_char_delete_top@Base 0.9.4
+ igraph_heap_min_char_destroy@Base 0.9.4
+ igraph_heap_min_char_empty@Base 0.9.4
+ igraph_heap_min_char_init@Base 0.9.4
+ igraph_heap_min_char_init_array@Base 0.9.4
+ igraph_heap_min_char_push@Base 0.9.4
+ igraph_heap_min_char_reserve@Base 0.9.4
+ igraph_heap_min_char_size@Base 0.9.4
+ igraph_heap_min_char_top@Base 0.9.4
+ igraph_heap_min_delete_top@Base 0.9.4
+ igraph_heap_min_destroy@Base 0.9.4
+ igraph_heap_min_empty@Base 0.9.4
+ igraph_heap_min_init@Base 0.9.4
+ igraph_heap_min_init_array@Base 0.9.4
+ igraph_heap_min_long_delete_top@Base 0.9.4
+ igraph_heap_min_long_destroy@Base 0.9.4
+ igraph_heap_min_long_empty@Base 0.9.4
+ igraph_heap_min_long_init@Base 0.9.4
+ igraph_heap_min_long_init_array@Base 0.9.4
+ igraph_heap_min_long_push@Base 0.9.4
+ igraph_heap_min_long_reserve@Base 0.9.4
+ igraph_heap_min_long_size@Base 0.9.4
+ igraph_heap_min_long_top@Base 0.9.4
+ igraph_heap_min_push@Base 0.9.4
+ igraph_heap_min_reserve@Base 0.9.4
+ igraph_heap_min_size@Base 0.9.4
+ igraph_heap_min_top@Base 0.9.4
+ igraph_heap_push@Base 0.9.4
+ igraph_heap_reserve@Base 0.9.4
+ igraph_heap_size@Base 0.9.4
+ igraph_heap_top@Base 0.9.4
+ igraph_hrg_consensus@Base 0.9.4
+ igraph_hrg_create@Base 0.9.4
+ igraph_hrg_dendrogram@Base 0.9.4
+ igraph_hrg_destroy@Base 0.9.4
+ igraph_hrg_fit@Base 0.9.4
+ igraph_hrg_game@Base 0.9.4
+ igraph_hrg_init@Base 0.9.4
+ igraph_hrg_predict@Base 0.9.4
+ igraph_hrg_resize@Base 0.9.4
+ igraph_hrg_sample@Base 0.9.4
+ igraph_hrg_size@Base 0.9.4
+ igraph_hsbm_game@Base 0.9.4
+ igraph_hsbm_list_game@Base 0.9.4
+ igraph_hub_score@Base 0.9.4
+ igraph_i_all_st_cuts_pivot@Base 0.9.4
+ igraph_i_cutheap_active_size@Base 0.9.4
+ igraph_i_cutheap_destroy@Base 0.9.4
+ igraph_i_cutheap_empty@Base 0.9.4
+ igraph_i_cutheap_init@Base 0.9.4
+ igraph_i_cutheap_maxvalue@Base 0.9.4
+ igraph_i_cutheap_popmax@Base 0.9.4
+ igraph_i_cutheap_reset_undefine@Base 0.9.4
+ igraph_i_cutheap_size@Base 0.9.4
+ igraph_i_cutheap_update@Base 0.9.4
+ igraph_i_incident@Base 0.9.4
+ igraph_i_induced_subgraph_map@Base 0.9.5
+ igraph_i_layout_merge_dla@Base 0.9.4
+ igraph_i_layout_merge_place_sphere@Base 0.9.4
+ igraph_i_layout_mergegrid_destroy@Base 0.9.4
+ igraph_i_layout_mergegrid_init@Base 0.9.4
+ igraph_i_layout_point_segment_dist2@Base 0.9.4
+ igraph_i_layout_segments_intersect@Base 0.9.4
+ igraph_i_layout_sphere_2d@Base 0.9.4
+ igraph_i_layout_sphere_3d@Base 0.9.4
+ igraph_i_lazy_adjlist_get_real@Base 0.9.4
+ igraph_i_lazy_inclist_get_real@Base 0.9.4
+ igraph_i_neighbors@Base 0.9.4
+ igraph_i_rewire@Base 0.9.4
+ igraph_i_set_attribute_table@Base 0.9.4
+ igraph_i_sparsemat_view@Base 0.9.4
+ igraph_incidence@Base 0.9.4
+ igraph_incident@Base 0.9.4
+ igraph_inclist_clear@Base 0.9.4
+ igraph_inclist_destroy@Base 0.9.4
+ igraph_inclist_fprint@Base 0.9.4
+ igraph_inclist_init@Base 0.9.4
+ igraph_inclist_init_empty@Base 0.9.4
+ igraph_inclist_print@Base 0.9.4
+ igraph_inclist_remove_duplicate@Base 0.9.4
+ igraph_inclist_size@Base 0.9.4
+ igraph_independence_number@Base 0.9.4
+ igraph_independent_vertex_sets@Base 0.9.4
+ igraph_induced_subgraph@Base 0.9.4
+ igraph_induced_subgraph_map@Base 0.9.4
+ igraph_intersection@Base 0.9.4
+ igraph_intersection_many@Base 0.9.4
+ igraph_is_bigraphical@Base 0.9.4
+ igraph_is_bipartite@Base 0.9.4
+ igraph_is_chordal@Base 0.9.4
+ igraph_is_connected@Base 0.9.4
+ igraph_is_dag@Base 0.9.4
+ igraph_is_degree_sequence@Base 0.9.4
+ igraph_is_directed@Base 0.9.4
+ igraph_is_eulerian@Base 0.9.4
+ igraph_is_graphical@Base 0.9.4
+ igraph_is_graphical_degree_sequence@Base 0.9.4
+ igraph_is_inf@Base 0.9.4
+ igraph_is_loop@Base 0.9.4
+ igraph_is_matching@Base 0.9.4
+ igraph_is_maximal_matching@Base 0.9.4
+ igraph_is_minimal_separator@Base 0.9.4
+ igraph_is_multiple@Base 0.9.4
+ igraph_is_mutual@Base 0.9.4
+ igraph_is_nan@Base 0.9.4
+ igraph_is_neginf@Base 0.9.4
+ igraph_is_posinf@Base 0.9.4
+ igraph_is_same_graph@Base 0.9.4
+ igraph_is_separator@Base 0.9.4
+ igraph_is_simple@Base 0.9.4
+ igraph_is_tree@Base 0.9.4
+ igraph_isoclass@Base 0.9.4
+ igraph_isoclass_create@Base 0.9.4
+ igraph_isoclass_subgraph@Base 0.9.4
+ igraph_isomorphic@Base 0.9.4
+ igraph_isomorphic_34@Base 0.9.4
+ igraph_isomorphic_bliss@Base 0.9.4
+ igraph_isomorphic_function_vf2@Base 0.9.4
+ igraph_isomorphic_vf2@Base 0.9.4
+ igraph_k_regular_game@Base 0.9.4
+ igraph_kautz@Base 0.9.4
+ igraph_lapack_dgeev@Base 0.9.4
+ igraph_lapack_dgeevx@Base 0.9.4
+ igraph_lapack_dgehrd@Base 0.9.4
+ igraph_lapack_dgesv@Base 0.9.4
+ igraph_lapack_dgetrf@Base 0.9.4
+ igraph_lapack_dgetrs@Base 0.9.4
+ igraph_lapack_dsyevr@Base 0.9.4
+ igraph_laplacian@Base 0.9.4
+ igraph_laplacian_spectral_embedding@Base 0.9.4
+ igraph_largest_cliques@Base 0.9.4
+ igraph_largest_independent_vertex_sets@Base 0.9.4
+ igraph_largest_weighted_cliques@Base 0.9.4
+ igraph_lastcit_game@Base 0.9.4
+ igraph_lattice@Base 0.9.4
+ igraph_layout_bipartite@Base 0.9.4
+ igraph_layout_circle@Base 0.9.4
+ igraph_layout_davidson_harel@Base 0.9.4
+ igraph_layout_drl@Base 0.9.4
+ igraph_layout_drl_3d@Base 0.9.4
+ igraph_layout_drl_options_init@Base 0.9.4
+ igraph_layout_fruchterman_reingold@Base 0.9.4
+ igraph_layout_fruchterman_reingold_3d@Base 0.9.4
+ igraph_layout_gem@Base 0.9.4
+ igraph_layout_graphopt@Base 0.9.4
+ igraph_layout_grid@Base 0.9.4
+ igraph_layout_grid_3d@Base 0.9.4
+ igraph_layout_kamada_kawai@Base 0.9.4
+ igraph_layout_kamada_kawai_3d@Base 0.9.4
+ igraph_layout_lgl@Base 0.9.4
+ igraph_layout_mds@Base 0.9.4
+ igraph_layout_merge_dla@Base 0.9.4
+ igraph_layout_random@Base 0.9.4
+ igraph_layout_random_3d@Base 0.9.4
+ igraph_layout_reingold_tilford@Base 0.9.4
+ igraph_layout_reingold_tilford_circular@Base 0.9.4
+ igraph_layout_sphere@Base 0.9.4
+ igraph_layout_star@Base 0.9.4
+ igraph_layout_sugiyama@Base 0.9.4
+ igraph_lazy_adjlist_clear@Base 0.9.4
+ igraph_lazy_adjlist_destroy@Base 0.9.4
+ igraph_lazy_adjlist_init@Base 0.9.4
+ igraph_lazy_adjlist_size@Base 0.9.4
+ igraph_lazy_inclist_clear@Base 0.9.4
+ igraph_lazy_inclist_destroy@Base 0.9.4
+ igraph_lazy_inclist_init@Base 0.9.4
+ igraph_lazy_inclist_size@Base 0.9.4
+ igraph_lcf@Base 0.9.4
+ igraph_lcf_vector@Base 0.9.4
+ igraph_le_community_to_membership@Base 0.9.4
+ igraph_linegraph@Base 0.9.4
+ igraph_list_triangles@Base 0.9.4
+ igraph_local_efficiency@Base 0.9.4
+ igraph_local_scan_0@Base 0.9.4
+ igraph_local_scan_0_them@Base 0.9.4
+ igraph_local_scan_1_ecount@Base 0.9.4
+ igraph_local_scan_1_ecount_them@Base 0.9.4
+ igraph_local_scan_k_ecount@Base 0.9.4
+ igraph_local_scan_k_ecount_them@Base 0.9.4
+ igraph_local_scan_neighborhood_ecount@Base 0.9.4
+ igraph_malloc@Base 0.9.4
+ igraph_marked_queue_as_vector@Base 0.9.4
+ igraph_marked_queue_destroy@Base 0.9.4
+ igraph_marked_queue_empty@Base 0.9.4
+ igraph_marked_queue_fprint@Base 0.9.4
+ igraph_marked_queue_init@Base 0.9.4
+ igraph_marked_queue_iselement@Base 0.9.4
+ igraph_marked_queue_pop_back_batch@Base 0.9.4
+ igraph_marked_queue_print@Base 0.9.4
+ igraph_marked_queue_push@Base 0.9.4
+ igraph_marked_queue_reset@Base 0.9.4
+ igraph_marked_queue_size@Base 0.9.4
+ igraph_marked_queue_start_batch@Base 0.9.4
+ igraph_matrix_add@Base 0.9.4
+ igraph_matrix_add_cols@Base 0.9.4
+ igraph_matrix_add_constant@Base 0.9.4
+ igraph_matrix_add_rows@Base 0.9.4
+ igraph_matrix_all_e@Base 0.9.4
+ igraph_matrix_all_e_tol@Base 0.9.4
+ igraph_matrix_all_g@Base 0.9.4
+ igraph_matrix_all_ge@Base 0.9.4
+ igraph_matrix_all_l@Base 0.9.4
+ igraph_matrix_all_le@Base 0.9.4
+ igraph_matrix_as_sparsemat@Base 0.9.4
+ igraph_matrix_bool_add@Base 0.9.4
+ igraph_matrix_bool_add_cols@Base 0.9.4
+ igraph_matrix_bool_add_constant@Base 0.9.4
+ igraph_matrix_bool_add_rows@Base 0.9.4
+ igraph_matrix_bool_all_e@Base 0.9.4
+ igraph_matrix_bool_capacity@Base 0.9.4
+ igraph_matrix_bool_cbind@Base 0.9.4
+ igraph_matrix_bool_colsum@Base 0.9.4
+ igraph_matrix_bool_contains@Base 0.9.4
+ igraph_matrix_bool_copy@Base 0.9.4
+ igraph_matrix_bool_copy_to@Base 0.9.4
+ igraph_matrix_bool_delete_rows_neg@Base 0.9.4
+ igraph_matrix_bool_destroy@Base 0.9.4
+ igraph_matrix_bool_div_elements@Base 0.9.4
+ igraph_matrix_bool_e@Base 0.9.4
+ igraph_matrix_bool_e_ptr@Base 0.9.4
+ igraph_matrix_bool_empty@Base 0.9.4
+ igraph_matrix_bool_fill@Base 0.9.4
+ igraph_matrix_bool_fprint@Base 0.9.4
+ igraph_matrix_bool_get_col@Base 0.9.4
+ igraph_matrix_bool_get_row@Base 0.9.4
+ igraph_matrix_bool_init@Base 0.9.4
+ igraph_matrix_bool_is_equal@Base 0.9.4
+ igraph_matrix_bool_is_symmetric@Base 0.9.4
+ igraph_matrix_bool_isnull@Base 0.9.4
+ igraph_matrix_bool_mul_elements@Base 0.9.4
+ igraph_matrix_bool_ncol@Base 0.9.4
+ igraph_matrix_bool_nrow@Base 0.9.4
+ igraph_matrix_bool_null@Base 0.9.4
+ igraph_matrix_bool_permdelete_rows@Base 0.9.4
+ igraph_matrix_bool_print@Base 0.9.4
+ igraph_matrix_bool_printf@Base 0.9.4
+ igraph_matrix_bool_prod@Base 0.9.4
+ igraph_matrix_bool_rbind@Base 0.9.4
+ igraph_matrix_bool_remove_col@Base 0.9.4
+ igraph_matrix_bool_remove_row@Base 0.9.4
+ igraph_matrix_bool_resize@Base 0.9.4
+ igraph_matrix_bool_resize_min@Base 0.9.4
+ igraph_matrix_bool_rowsum@Base 0.9.4
+ igraph_matrix_bool_scale@Base 0.9.4
+ igraph_matrix_bool_search@Base 0.9.4
+ igraph_matrix_bool_select_cols@Base 0.9.4
+ igraph_matrix_bool_select_rows@Base 0.9.4
+ igraph_matrix_bool_select_rows_cols@Base 0.9.4
+ igraph_matrix_bool_set@Base 0.9.4
+ igraph_matrix_bool_set_col@Base 0.9.4
+ igraph_matrix_bool_set_row@Base 0.9.4
+ igraph_matrix_bool_size@Base 0.9.4
+ igraph_matrix_bool_sub@Base 0.9.4
+ igraph_matrix_bool_sum@Base 0.9.4
+ igraph_matrix_bool_swap@Base 0.9.4
+ igraph_matrix_bool_swap_cols@Base 0.9.4
+ igraph_matrix_bool_swap_rows@Base 0.9.4
+ igraph_matrix_bool_transpose@Base 0.9.4
+ igraph_matrix_bool_update@Base 0.9.4
+ igraph_matrix_bool_view@Base 0.9.4
+ igraph_matrix_capacity@Base 0.9.4
+ igraph_matrix_cbind@Base 0.9.4
+ igraph_matrix_char_add@Base 0.9.4
+ igraph_matrix_char_add_cols@Base 0.9.4
+ igraph_matrix_char_add_constant@Base 0.9.4
+ igraph_matrix_char_add_rows@Base 0.9.4
+ igraph_matrix_char_all_e@Base 0.9.4
+ igraph_matrix_char_all_g@Base 0.9.4
+ igraph_matrix_char_all_ge@Base 0.9.4
+ igraph_matrix_char_all_l@Base 0.9.4
+ igraph_matrix_char_all_le@Base 0.9.4
+ igraph_matrix_char_capacity@Base 0.9.4
+ igraph_matrix_char_cbind@Base 0.9.4
+ igraph_matrix_char_colsum@Base 0.9.4
+ igraph_matrix_char_contains@Base 0.9.4
+ igraph_matrix_char_copy@Base 0.9.4
+ igraph_matrix_char_copy_to@Base 0.9.4
+ igraph_matrix_char_delete_rows_neg@Base 0.9.4
+ igraph_matrix_char_destroy@Base 0.9.4
+ igraph_matrix_char_div_elements@Base 0.9.4
+ igraph_matrix_char_e@Base 0.9.4
+ igraph_matrix_char_e_ptr@Base 0.9.4
+ igraph_matrix_char_empty@Base 0.9.4
+ igraph_matrix_char_fill@Base 0.9.4
+ igraph_matrix_char_fprint@Base 0.9.4
+ igraph_matrix_char_get_col@Base 0.9.4
+ igraph_matrix_char_get_row@Base 0.9.4
+ igraph_matrix_char_init@Base 0.9.4
+ igraph_matrix_char_is_equal@Base 0.9.4
+ igraph_matrix_char_is_symmetric@Base 0.9.4
+ igraph_matrix_char_isnull@Base 0.9.4
+ igraph_matrix_char_max@Base 0.9.4
+ igraph_matrix_char_maxdifference@Base 0.9.4
+ igraph_matrix_char_min@Base 0.9.4
+ igraph_matrix_char_minmax@Base 0.9.4
+ igraph_matrix_char_mul_elements@Base 0.9.4
+ igraph_matrix_char_ncol@Base 0.9.4
+ igraph_matrix_char_nrow@Base 0.9.4
+ igraph_matrix_char_null@Base 0.9.4
+ igraph_matrix_char_permdelete_rows@Base 0.9.4
+ igraph_matrix_char_print@Base 0.9.4
+ igraph_matrix_char_printf@Base 0.9.4
+ igraph_matrix_char_prod@Base 0.9.4
+ igraph_matrix_char_rbind@Base 0.9.4
+ igraph_matrix_char_remove_col@Base 0.9.4
+ igraph_matrix_char_remove_row@Base 0.9.4
+ igraph_matrix_char_resize@Base 0.9.4
+ igraph_matrix_char_resize_min@Base 0.9.4
+ igraph_matrix_char_rowsum@Base 0.9.4
+ igraph_matrix_char_scale@Base 0.9.4
+ igraph_matrix_char_search@Base 0.9.4
+ igraph_matrix_char_select_cols@Base 0.9.4
+ igraph_matrix_char_select_rows@Base 0.9.4
+ igraph_matrix_char_select_rows_cols@Base 0.9.4
+ igraph_matrix_char_set@Base 0.9.4
+ igraph_matrix_char_set_col@Base 0.9.4
+ igraph_matrix_char_set_row@Base 0.9.4
+ igraph_matrix_char_size@Base 0.9.4
+ igraph_matrix_char_sub@Base 0.9.4
+ igraph_matrix_char_sum@Base 0.9.4
+ igraph_matrix_char_swap@Base 0.9.4
+ igraph_matrix_char_swap_cols@Base 0.9.4
+ igraph_matrix_char_swap_rows@Base 0.9.4
+ igraph_matrix_char_transpose@Base 0.9.4
+ igraph_matrix_char_update@Base 0.9.4
+ igraph_matrix_char_view@Base 0.9.4
+ igraph_matrix_char_which_max@Base 0.9.4
+ igraph_matrix_char_which_min@Base 0.9.4
+ igraph_matrix_char_which_minmax@Base 0.9.4
+ igraph_matrix_colsum@Base 0.9.4
+ igraph_matrix_complex_add@Base 0.9.4
+ igraph_matrix_complex_add_cols@Base 0.9.4
+ igraph_matrix_complex_add_constant@Base 0.9.4
+ igraph_matrix_complex_add_rows@Base 0.9.4
+ igraph_matrix_complex_all_e@Base 0.9.4
+ igraph_matrix_complex_capacity@Base 0.9.4
+ igraph_matrix_complex_cbind@Base 0.9.4
+ igraph_matrix_complex_colsum@Base 0.9.4
+ igraph_matrix_complex_contains@Base 0.9.4
+ igraph_matrix_complex_copy@Base 0.9.4
+ igraph_matrix_complex_copy_to@Base 0.9.4
+ igraph_matrix_complex_create@Base 0.9.4
+ igraph_matrix_complex_create_polar@Base 0.9.4
+ igraph_matrix_complex_delete_rows_neg@Base 0.9.4
+ igraph_matrix_complex_destroy@Base 0.9.4
+ igraph_matrix_complex_div_elements@Base 0.9.4
+ igraph_matrix_complex_e@Base 0.9.4
+ igraph_matrix_complex_e_ptr@Base 0.9.4
+ igraph_matrix_complex_empty@Base 0.9.4
+ igraph_matrix_complex_fill@Base 0.9.4
+ igraph_matrix_complex_fprint@Base 0.9.4
+ igraph_matrix_complex_get_col@Base 0.9.4
+ igraph_matrix_complex_get_row@Base 0.9.4
+ igraph_matrix_complex_imag@Base 0.9.4
+ igraph_matrix_complex_init@Base 0.9.4
+ igraph_matrix_complex_is_equal@Base 0.9.4
+ igraph_matrix_complex_is_symmetric@Base 0.9.4
+ igraph_matrix_complex_isnull@Base 0.9.4
+ igraph_matrix_complex_mul_elements@Base 0.9.4
+ igraph_matrix_complex_ncol@Base 0.9.4
+ igraph_matrix_complex_nrow@Base 0.9.4
+ igraph_matrix_complex_null@Base 0.9.4
+ igraph_matrix_complex_permdelete_rows@Base 0.9.4
+ igraph_matrix_complex_print@Base 0.9.4
+ igraph_matrix_complex_prod@Base 0.9.4
+ igraph_matrix_complex_rbind@Base 0.9.4
+ igraph_matrix_complex_real@Base 0.9.4
+ igraph_matrix_complex_realimag@Base 0.9.4
+ igraph_matrix_complex_remove_col@Base 0.9.4
+ igraph_matrix_complex_remove_row@Base 0.9.4
+ igraph_matrix_complex_resize@Base 0.9.4
+ igraph_matrix_complex_resize_min@Base 0.9.4
+ igraph_matrix_complex_rowsum@Base 0.9.4
+ igraph_matrix_complex_scale@Base 0.9.4
+ igraph_matrix_complex_search@Base 0.9.4
+ igraph_matrix_complex_select_cols@Base 0.9.4
+ igraph_matrix_complex_select_rows@Base 0.9.4
+ igraph_matrix_complex_select_rows_cols@Base 0.9.4
+ igraph_matrix_complex_set@Base 0.9.4
+ igraph_matrix_complex_set_col@Base 0.9.4
+ igraph_matrix_complex_set_row@Base 0.9.4
+ igraph_matrix_complex_size@Base 0.9.4
+ igraph_matrix_complex_sub@Base 0.9.4
+ igraph_matrix_complex_sum@Base 0.9.4
+ igraph_matrix_complex_swap@Base 0.9.4
+ igraph_matrix_complex_swap_cols@Base 0.9.4
+ igraph_matrix_complex_swap_rows@Base 0.9.4
+ igraph_matrix_complex_transpose@Base 0.9.4
+ igraph_matrix_complex_update@Base 0.9.4
+ igraph_matrix_complex_view@Base 0.9.4
+ igraph_matrix_contains@Base 0.9.4
+ igraph_matrix_copy@Base 0.9.4
+ igraph_matrix_copy_to@Base 0.9.4
+ igraph_matrix_delete_rows_neg@Base 0.9.4
+ igraph_matrix_destroy@Base 0.9.4
+ igraph_matrix_div_elements@Base 0.9.4
+ igraph_matrix_e@Base 0.9.4
+ igraph_matrix_e_ptr@Base 0.9.4
+ igraph_matrix_empty@Base 0.9.4
+ igraph_matrix_fill@Base 0.9.4
+ igraph_matrix_fprint@Base 0.9.4
+ igraph_matrix_get_col@Base 0.9.4
+ igraph_matrix_get_row@Base 0.9.4
+ igraph_matrix_init@Base 0.9.4
+ igraph_matrix_int_add@Base 0.9.4
+ igraph_matrix_int_add_cols@Base 0.9.4
+ igraph_matrix_int_add_constant@Base 0.9.4
+ igraph_matrix_int_add_rows@Base 0.9.4
+ igraph_matrix_int_all_e@Base 0.9.4
+ igraph_matrix_int_all_g@Base 0.9.4
+ igraph_matrix_int_all_ge@Base 0.9.4
+ igraph_matrix_int_all_l@Base 0.9.4
+ igraph_matrix_int_all_le@Base 0.9.4
+ igraph_matrix_int_capacity@Base 0.9.4
+ igraph_matrix_int_cbind@Base 0.9.4
+ igraph_matrix_int_colsum@Base 0.9.4
+ igraph_matrix_int_contains@Base 0.9.4
+ igraph_matrix_int_copy@Base 0.9.4
+ igraph_matrix_int_copy_to@Base 0.9.4
+ igraph_matrix_int_delete_rows_neg@Base 0.9.4
+ igraph_matrix_int_destroy@Base 0.9.4
+ igraph_matrix_int_div_elements@Base 0.9.4
+ igraph_matrix_int_e@Base 0.9.4
+ igraph_matrix_int_e_ptr@Base 0.9.4
+ igraph_matrix_int_empty@Base 0.9.4
+ igraph_matrix_int_fill@Base 0.9.4
+ igraph_matrix_int_fprint@Base 0.9.4
+ igraph_matrix_int_get_col@Base 0.9.4
+ igraph_matrix_int_get_row@Base 0.9.4
+ igraph_matrix_int_init@Base 0.9.4
+ igraph_matrix_int_is_equal@Base 0.9.4
+ igraph_matrix_int_is_symmetric@Base 0.9.4
+ igraph_matrix_int_isnull@Base 0.9.4
+ igraph_matrix_int_max@Base 0.9.4
+ igraph_matrix_int_maxdifference@Base 0.9.4
+ igraph_matrix_int_min@Base 0.9.4
+ igraph_matrix_int_minmax@Base 0.9.4
+ igraph_matrix_int_mul_elements@Base 0.9.4
+ igraph_matrix_int_ncol@Base 0.9.4
+ igraph_matrix_int_nrow@Base 0.9.4
+ igraph_matrix_int_null@Base 0.9.4
+ igraph_matrix_int_permdelete_rows@Base 0.9.4
+ igraph_matrix_int_print@Base 0.9.4
+ igraph_matrix_int_printf@Base 0.9.4
+ igraph_matrix_int_prod@Base 0.9.4
+ igraph_matrix_int_rbind@Base 0.9.4
+ igraph_matrix_int_remove_col@Base 0.9.4
+ igraph_matrix_int_remove_row@Base 0.9.4
+ igraph_matrix_int_resize@Base 0.9.4
+ igraph_matrix_int_resize_min@Base 0.9.4
+ igraph_matrix_int_rowsum@Base 0.9.4
+ igraph_matrix_int_scale@Base 0.9.4
+ igraph_matrix_int_search@Base 0.9.4
+ igraph_matrix_int_select_cols@Base 0.9.4
+ igraph_matrix_int_select_rows@Base 0.9.4
+ igraph_matrix_int_select_rows_cols@Base 0.9.4
+ igraph_matrix_int_set@Base 0.9.4
+ igraph_matrix_int_set_col@Base 0.9.4
+ igraph_matrix_int_set_row@Base 0.9.4
+ igraph_matrix_int_size@Base 0.9.4
+ igraph_matrix_int_sub@Base 0.9.4
+ igraph_matrix_int_sum@Base 0.9.4
+ igraph_matrix_int_swap@Base 0.9.4
+ igraph_matrix_int_swap_cols@Base 0.9.4
+ igraph_matrix_int_swap_rows@Base 0.9.4
+ igraph_matrix_int_transpose@Base 0.9.4
+ igraph_matrix_int_update@Base 0.9.4
+ igraph_matrix_int_view@Base 0.9.4
+ igraph_matrix_int_which_max@Base 0.9.4
+ igraph_matrix_int_which_min@Base 0.9.4
+ igraph_matrix_int_which_minmax@Base 0.9.4
+ igraph_matrix_is_equal@Base 0.9.4
+ igraph_matrix_is_symmetric@Base 0.9.4
+ igraph_matrix_isnull@Base 0.9.4
+ igraph_matrix_long_add@Base 0.9.4
+ igraph_matrix_long_add_cols@Base 0.9.4
+ igraph_matrix_long_add_constant@Base 0.9.4
+ igraph_matrix_long_add_rows@Base 0.9.4
+ igraph_matrix_long_all_e@Base 0.9.4
+ igraph_matrix_long_all_g@Base 0.9.4
+ igraph_matrix_long_all_ge@Base 0.9.4
+ igraph_matrix_long_all_l@Base 0.9.4
+ igraph_matrix_long_all_le@Base 0.9.4
+ igraph_matrix_long_capacity@Base 0.9.4
+ igraph_matrix_long_cbind@Base 0.9.4
+ igraph_matrix_long_colsum@Base 0.9.4
+ igraph_matrix_long_contains@Base 0.9.4
+ igraph_matrix_long_copy@Base 0.9.4
+ igraph_matrix_long_copy_to@Base 0.9.4
+ igraph_matrix_long_delete_rows_neg@Base 0.9.4
+ igraph_matrix_long_destroy@Base 0.9.4
+ igraph_matrix_long_div_elements@Base 0.9.4
+ igraph_matrix_long_e@Base 0.9.4
+ igraph_matrix_long_e_ptr@Base 0.9.4
+ igraph_matrix_long_empty@Base 0.9.4
+ igraph_matrix_long_fill@Base 0.9.4
+ igraph_matrix_long_fprint@Base 0.9.4
+ igraph_matrix_long_get_col@Base 0.9.4
+ igraph_matrix_long_get_row@Base 0.9.4
+ igraph_matrix_long_init@Base 0.9.4
+ igraph_matrix_long_is_equal@Base 0.9.4
+ igraph_matrix_long_is_symmetric@Base 0.9.4
+ igraph_matrix_long_isnull@Base 0.9.4
+ igraph_matrix_long_max@Base 0.9.4
+ igraph_matrix_long_maxdifference@Base 0.9.4
+ igraph_matrix_long_min@Base 0.9.4
+ igraph_matrix_long_minmax@Base 0.9.4
+ igraph_matrix_long_mul_elements@Base 0.9.4
+ igraph_matrix_long_ncol@Base 0.9.4
+ igraph_matrix_long_nrow@Base 0.9.4
+ igraph_matrix_long_null@Base 0.9.4
+ igraph_matrix_long_permdelete_rows@Base 0.9.4
+ igraph_matrix_long_print@Base 0.9.4
+ igraph_matrix_long_printf@Base 0.9.4
+ igraph_matrix_long_prod@Base 0.9.4
+ igraph_matrix_long_rbind@Base 0.9.4
+ igraph_matrix_long_remove_col@Base 0.9.4
+ igraph_matrix_long_remove_row@Base 0.9.4
+ igraph_matrix_long_resize@Base 0.9.4
+ igraph_matrix_long_resize_min@Base 0.9.4
+ igraph_matrix_long_rowsum@Base 0.9.4
+ igraph_matrix_long_scale@Base 0.9.4
+ igraph_matrix_long_search@Base 0.9.4
+ igraph_matrix_long_select_cols@Base 0.9.4
+ igraph_matrix_long_select_rows@Base 0.9.4
+ igraph_matrix_long_select_rows_cols@Base 0.9.4
+ igraph_matrix_long_set@Base 0.9.4
+ igraph_matrix_long_set_col@Base 0.9.4
+ igraph_matrix_long_set_row@Base 0.9.4
+ igraph_matrix_long_size@Base 0.9.4
+ igraph_matrix_long_sub@Base 0.9.4
+ igraph_matrix_long_sum@Base 0.9.4
+ igraph_matrix_long_swap@Base 0.9.4
+ igraph_matrix_long_swap_cols@Base 0.9.4
+ igraph_matrix_long_swap_rows@Base 0.9.4
+ igraph_matrix_long_transpose@Base 0.9.4
+ igraph_matrix_long_update@Base 0.9.4
+ igraph_matrix_long_view@Base 0.9.4
+ igraph_matrix_long_which_max@Base 0.9.4
+ igraph_matrix_long_which_min@Base 0.9.4
+ igraph_matrix_long_which_minmax@Base 0.9.4
+ igraph_matrix_max@Base 0.9.4
+ igraph_matrix_maxdifference@Base 0.9.4
+ igraph_matrix_min@Base 0.9.4
+ igraph_matrix_minmax@Base 0.9.4
+ igraph_matrix_mul_elements@Base 0.9.4
+ igraph_matrix_ncol@Base 0.9.4
+ igraph_matrix_nrow@Base 0.9.4
+ igraph_matrix_null@Base 0.9.4
+ igraph_matrix_permdelete_rows@Base 0.9.4
+ igraph_matrix_print@Base 0.9.4
+ igraph_matrix_printf@Base 0.9.4
+ igraph_matrix_prod@Base 0.9.4
+ igraph_matrix_rbind@Base 0.9.4
+ igraph_matrix_remove_col@Base 0.9.4
+ igraph_matrix_remove_row@Base 0.9.4
+ igraph_matrix_resize@Base 0.9.4
+ igraph_matrix_resize_min@Base 0.9.4
+ igraph_matrix_rowsum@Base 0.9.4
+ igraph_matrix_scale@Base 0.9.4
+ igraph_matrix_search@Base 0.9.4
+ igraph_matrix_select_cols@Base 0.9.4
+ igraph_matrix_select_rows@Base 0.9.4
+ igraph_matrix_select_rows_cols@Base 0.9.4
+ igraph_matrix_set@Base 0.9.4
+ igraph_matrix_set_col@Base 0.9.4
+ igraph_matrix_set_row@Base 0.9.4
+ igraph_matrix_size@Base 0.9.4
+ igraph_matrix_sub@Base 0.9.4
+ igraph_matrix_sum@Base 0.9.4
+ igraph_matrix_swap@Base 0.9.4
+ igraph_matrix_swap_cols@Base 0.9.4
+ igraph_matrix_swap_rows@Base 0.9.4
+ igraph_matrix_transpose@Base 0.9.4
+ igraph_matrix_update@Base 0.9.4
+ igraph_matrix_view@Base 0.9.4
+ igraph_matrix_which_max@Base 0.9.4
+ igraph_matrix_which_min@Base 0.9.4
+ igraph_matrix_which_minmax@Base 0.9.4
+ igraph_matrix_zapsmall@Base 0.9.4
+ igraph_maxdegree@Base 0.9.4
+ igraph_maxflow@Base 0.9.4
+ igraph_maxflow_value@Base 0.9.4
+ igraph_maximal_cliques@Base 0.9.4
+ igraph_maximal_cliques_callback@Base 0.9.4
+ igraph_maximal_cliques_count@Base 0.9.4
+ igraph_maximal_cliques_file@Base 0.9.4
+ igraph_maximal_cliques_hist@Base 0.9.4
+ igraph_maximal_cliques_subset@Base 0.9.4
+ igraph_maximal_independent_vertex_sets@Base 0.9.4
+ igraph_maximum_bipartite_matching@Base 0.9.4
+ igraph_maximum_cardinality_search@Base 0.9.4
+ igraph_maximum_matching@Base 0.9.4
+ igraph_mincut@Base 0.9.4
+ igraph_mincut_value@Base 0.9.4
+ igraph_minimum_size_separators@Base 0.9.4
+ igraph_minimum_spanning_tree@Base 0.9.4
+ igraph_minimum_spanning_tree_prim@Base 0.9.4
+ igraph_minimum_spanning_tree_unweighted@Base 0.9.4
+ igraph_modularity@Base 0.9.4
+ igraph_modularity_matrix@Base 0.9.4
+ igraph_moran_process@Base 0.9.4
+ igraph_motifs_randesu@Base 0.9.4
+ igraph_motifs_randesu_callback@Base 0.9.4
+ igraph_motifs_randesu_estimate@Base 0.9.4
+ igraph_motifs_randesu_no@Base 0.9.4
+ igraph_neighborhood@Base 0.9.4
+ igraph_neighborhood_graphs@Base 0.9.4
+ igraph_neighborhood_size@Base 0.9.4
+ igraph_neighbors@Base 0.9.4
+ igraph_pagerank@Base 0.9.4
+ igraph_path_length_hist@Base 0.9.4
+ igraph_permute_vertices@Base 0.9.4
+ igraph_personalized_pagerank@Base 0.9.4
+ igraph_personalized_pagerank_vs@Base 0.9.4
+ igraph_power_law_fit@Base 0.9.4
+ igraph_preference_game@Base 0.9.4
+ igraph_progress@Base 0.9.4
+ igraph_progress_handler_stderr@Base 0.9.4
+ igraph_progressf@Base 0.9.4
+ igraph_psumtree_destroy@Base 0.9.4
+ igraph_psumtree_get@Base 0.9.4
+ igraph_psumtree_init@Base 0.9.4
+ igraph_psumtree_reset@Base 0.9.4
+ igraph_psumtree_search@Base 0.9.4
+ igraph_psumtree_size@Base 0.9.4
+ igraph_psumtree_sum@Base 0.9.4
+ igraph_psumtree_update@Base 0.9.4
+ igraph_qsort@Base 0.9.4
+ igraph_qsort_r@Base 0.9.4
+ igraph_radius@Base 0.9.4
+ igraph_random_edge_walk@Base 0.9.4
+ igraph_random_sample@Base 0.9.4
+ igraph_random_spanning_tree@Base 0.9.4
+ igraph_random_walk@Base 0.9.4
+ igraph_read_graph_dimacs@Base 0.9.4
+ igraph_read_graph_dl@Base 0.9.4
+ igraph_read_graph_edgelist@Base 0.9.4
+ igraph_read_graph_gml@Base 0.9.4
+ igraph_read_graph_graphdb@Base 0.9.4
+ igraph_read_graph_graphml@Base 0.9.4
+ igraph_read_graph_lgl@Base 0.9.4
+ igraph_read_graph_ncol@Base 0.9.4
+ igraph_read_graph_pajek@Base 0.9.4
+ igraph_real_fprintf@Base 0.9.4
+ igraph_real_fprintf_precise@Base 0.9.4
+ igraph_real_printf@Base 0.9.4
+ igraph_real_printf_precise@Base 0.9.4
+ igraph_real_snprintf@Base 0.9.4
+ igraph_real_snprintf_precise@Base 0.9.4
+ igraph_realize_degree_sequence@Base 0.9.4
+ igraph_recent_degree_aging_game@Base 0.9.4
+ igraph_recent_degree_game@Base 0.9.4
+ igraph_reciprocity@Base 0.9.4
+ igraph_reindex_membership@Base 0.9.4
+ igraph_residual_graph@Base 0.9.4
+ igraph_reverse_edges@Base 0.9.10
+ igraph_reverse_residual_graph@Base 0.9.4
+ igraph_rewire@Base 0.9.4
+ igraph_rewire_directed_edges@Base 0.9.4
+ igraph_rewire_edges@Base 0.9.4
+ igraph_ring@Base 0.9.4
+ igraph_rng_default@Base 0.9.4
+ igraph_rng_destroy@Base 0.9.4
+ igraph_rng_get_binom@Base 0.9.4
+ igraph_rng_get_dirichlet@Base 0.9.4
+ igraph_rng_get_exp@Base 0.9.4
+ igraph_rng_get_gamma@Base 0.9.4
+ igraph_rng_get_geom@Base 0.9.4
+ igraph_rng_get_int31@Base 0.9.4
+ igraph_rng_get_integer@Base 0.9.4
+ igraph_rng_get_normal@Base 0.9.4
+ igraph_rng_get_unif01@Base 0.9.4
+ igraph_rng_get_unif@Base 0.9.4
+ igraph_rng_init@Base 0.9.4
+ igraph_rng_max@Base 0.9.4
+ igraph_rng_min@Base 0.9.4
+ igraph_rng_name@Base 0.9.4
+ igraph_rng_seed@Base 0.9.4
+ igraph_rng_set_default@Base 0.9.4
+ igraph_rngtype_glibc2@Base 0.9.4
+ igraph_rngtype_mt19937@Base 0.9.4
+ igraph_rngtype_rand@Base 0.9.4
+ igraph_roulette_wheel_imitation@Base 0.9.4
+ igraph_running_mean@Base 0.9.4
+ igraph_sample_dirichlet@Base 0.9.4
+ igraph_sample_sphere_surface@Base 0.9.4
+ igraph_sample_sphere_volume@Base 0.9.4
+ igraph_sbm_game@Base 0.9.4
+ igraph_scg_adjacency@Base 0.9.4
+ igraph_scg_grouping@Base 0.9.4
+ igraph_scg_laplacian@Base 0.9.4
+ igraph_scg_norm_eps@Base 0.9.4
+ igraph_scg_semiprojectors@Base 0.9.4
+ igraph_scg_stochastic@Base 0.9.4
+ igraph_set_add@Base 0.9.4
+ igraph_set_attribute_table@Base 0.9.4
+ igraph_set_clear@Base 0.9.4
+ igraph_set_contains@Base 0.9.4
+ igraph_set_destroy@Base 0.9.4
+ igraph_set_empty@Base 0.9.4
+ igraph_set_error_handler@Base 0.9.4
+ igraph_set_fatal_handler@Base 0.9.4
+ igraph_set_init@Base 0.9.4
+ igraph_set_inited@Base 0.9.4
+ igraph_set_interruption_handler@Base 0.9.4
+ igraph_set_iterate@Base 0.9.4
+ igraph_set_progress_handler@Base 0.9.4
+ igraph_set_reserve@Base 0.9.4
+ igraph_set_size@Base 0.9.4
+ igraph_set_status_handler@Base 0.9.4
+ igraph_set_warning_handler@Base 0.9.4
+ igraph_shortest_paths@Base 0.9.4
+ igraph_shortest_paths_bellman_ford@Base 0.9.4
+ igraph_shortest_paths_dijkstra@Base 0.9.4
+ igraph_shortest_paths_johnson@Base 0.9.4
+ igraph_similarity_dice@Base 0.9.4
+ igraph_similarity_dice_es@Base 0.9.4
+ igraph_similarity_dice_pairs@Base 0.9.4
+ igraph_similarity_inverse_log_weighted@Base 0.9.4
+ igraph_similarity_jaccard@Base 0.9.4
+ igraph_similarity_jaccard_es@Base 0.9.4
+ igraph_similarity_jaccard_pairs@Base 0.9.4
+ igraph_simple_interconnected_islands_game@Base 0.9.4
+ igraph_simplify@Base 0.9.4
+ igraph_simplify_and_colorize@Base 0.9.4
+ igraph_sir@Base 0.9.4
+ igraph_sir_destroy@Base 0.9.4
+ igraph_sir_init@Base 0.9.4
+ igraph_small@Base 0.9.4
+ igraph_solve_lsap@Base 0.9.4
+ igraph_sort_vertex_ids_by_degree@Base 0.9.4
+ igraph_sparsemat@Base 0.9.4
+ igraph_sparsemat_add@Base 0.9.4
+ igraph_sparsemat_add_cols@Base 0.9.4
+ igraph_sparsemat_add_rows@Base 0.9.4
+ igraph_sparsemat_arpack_rnsolve@Base 0.9.4
+ igraph_sparsemat_arpack_rssolve@Base 0.9.4
+ igraph_sparsemat_as_matrix@Base 0.9.4
+ igraph_sparsemat_cholsol@Base 0.9.4
+ igraph_sparsemat_colmaxs@Base 0.9.4
+ igraph_sparsemat_colmins@Base 0.9.4
+ igraph_sparsemat_colsums@Base 0.9.4
+ igraph_sparsemat_compress@Base 0.9.4
+ igraph_sparsemat_copy@Base 0.9.4
+ igraph_sparsemat_count_nonzero@Base 0.9.4
+ igraph_sparsemat_count_nonzerotol@Base 0.9.4
+ igraph_sparsemat_dense_multiply@Base 0.9.4
+ igraph_sparsemat_destroy@Base 0.9.4
+ igraph_sparsemat_diag@Base 0.9.4
+ igraph_sparsemat_droptol@Base 0.9.4
+ igraph_sparsemat_dropzeros@Base 0.9.4
+ igraph_sparsemat_dupl@Base 0.9.4
+ igraph_sparsemat_entry@Base 0.9.4
+ igraph_sparsemat_eye@Base 0.9.4
+ igraph_sparsemat_fkeep@Base 0.9.4
+ igraph_sparsemat_gaxpy@Base 0.9.4
+ igraph_sparsemat_getelements@Base 0.9.4
+ igraph_sparsemat_getelements_sorted@Base 0.9.4
+ igraph_sparsemat_index@Base 0.9.4
+ igraph_sparsemat_init@Base 0.9.4
+ igraph_sparsemat_is_cc@Base 0.9.4
+ igraph_sparsemat_is_symmetric@Base 0.9.4
+ igraph_sparsemat_is_triplet@Base 0.9.4
+ igraph_sparsemat_iterator_col@Base 0.9.4
+ igraph_sparsemat_iterator_end@Base 0.9.4
+ igraph_sparsemat_iterator_get@Base 0.9.4
+ igraph_sparsemat_iterator_idx@Base 0.9.4
+ igraph_sparsemat_iterator_init@Base 0.9.4
+ igraph_sparsemat_iterator_next@Base 0.9.4
+ igraph_sparsemat_iterator_reset@Base 0.9.4
+ igraph_sparsemat_iterator_row@Base 0.9.4
+ igraph_sparsemat_lsolve@Base 0.9.4
+ igraph_sparsemat_ltsolve@Base 0.9.4
+ igraph_sparsemat_lu@Base 0.9.4
+ igraph_sparsemat_luresol@Base 0.9.4
+ igraph_sparsemat_lusol@Base 0.9.4
+ igraph_sparsemat_max@Base 0.9.4
+ igraph_sparsemat_min@Base 0.9.4
+ igraph_sparsemat_minmax@Base 0.9.4
+ igraph_sparsemat_multiply@Base 0.9.4
+ igraph_sparsemat_multiply_by_dense@Base 0.9.4
+ igraph_sparsemat_ncol@Base 0.9.4
+ igraph_sparsemat_neg@Base 0.9.4
+ igraph_sparsemat_nonzero_storage@Base 0.9.4
+ igraph_sparsemat_nrow@Base 0.9.4
+ igraph_sparsemat_numeric_destroy@Base 0.9.4
+ igraph_sparsemat_nzmax@Base 0.9.4
+ igraph_sparsemat_permute@Base 0.9.4
+ igraph_sparsemat_print@Base 0.9.4
+ igraph_sparsemat_qr@Base 0.9.4
+ igraph_sparsemat_qrresol@Base 0.9.4
+ igraph_sparsemat_realloc@Base 0.9.4
+ igraph_sparsemat_resize@Base 0.9.4
+ igraph_sparsemat_rowmaxs@Base 0.9.4
+ igraph_sparsemat_rowmins@Base 0.9.4
+ igraph_sparsemat_rowsums@Base 0.9.4
+ igraph_sparsemat_scale@Base 0.9.4
+ igraph_sparsemat_scale_cols@Base 0.9.4
+ igraph_sparsemat_scale_rows@Base 0.9.4
+ igraph_sparsemat_sort@Base 0.9.4
+ igraph_sparsemat_symblu@Base 0.9.4
+ igraph_sparsemat_symbolic_destroy@Base 0.9.4
+ igraph_sparsemat_symbqr@Base 0.9.4
+ igraph_sparsemat_transpose@Base 0.9.4
+ igraph_sparsemat_type@Base 0.9.4
+ igraph_sparsemat_usolve@Base 0.9.4
+ igraph_sparsemat_utsolve@Base 0.9.4
+ igraph_sparsemat_view@Base 0.9.4
+ igraph_sparsemat_which_min_cols@Base 0.9.4
+ igraph_sparsemat_which_min_rows@Base 0.9.4
+ igraph_split_join_distance@Base 0.9.4
+ igraph_spmatrix_add_col_values@Base 0.9.4
+ igraph_spmatrix_add_cols@Base 0.9.4
+ igraph_spmatrix_add_e@Base 0.9.4
+ igraph_spmatrix_add_rows@Base 0.9.4
+ igraph_spmatrix_clear_col@Base 0.9.4
+ igraph_spmatrix_clear_row@Base 0.9.4
+ igraph_spmatrix_colsums@Base 0.9.4
+ igraph_spmatrix_copy@Base 0.9.4
+ igraph_spmatrix_copy_to@Base 0.9.4
+ igraph_spmatrix_count_nonzero@Base 0.9.4
+ igraph_spmatrix_destroy@Base 0.9.4
+ igraph_spmatrix_e@Base 0.9.4
+ igraph_spmatrix_fprint@Base 0.9.4
+ igraph_spmatrix_init@Base 0.9.4
+ igraph_spmatrix_iter_create@Base 0.9.4
+ igraph_spmatrix_iter_destroy@Base 0.9.4
+ igraph_spmatrix_iter_end@Base 0.9.4
+ igraph_spmatrix_iter_next@Base 0.9.4
+ igraph_spmatrix_iter_reset@Base 0.9.4
+ igraph_spmatrix_max@Base 0.9.4
+ igraph_spmatrix_max_nonzero@Base 0.9.4
+ igraph_spmatrix_ncol@Base 0.9.4
+ igraph_spmatrix_nrow@Base 0.9.4
+ igraph_spmatrix_null@Base 0.9.4
+ igraph_spmatrix_print@Base 0.9.4
+ igraph_spmatrix_resize@Base 0.9.4
+ igraph_spmatrix_rowsums@Base 0.9.4
+ igraph_spmatrix_scale@Base 0.9.4
+ igraph_spmatrix_set@Base 0.9.4
+ igraph_spmatrix_size@Base 0.9.4
+ igraph_st_edge_connectivity@Base 0.9.4
+ igraph_st_mincut@Base 0.9.4
+ igraph_st_mincut_value@Base 0.9.4
+ igraph_st_vertex_connectivity@Base 0.9.4
+ igraph_stack_bool_clear@Base 0.9.4
+ igraph_stack_bool_destroy@Base 0.9.4
+ igraph_stack_bool_empty@Base 0.9.4
+ igraph_stack_bool_fprint@Base 0.9.4
+ igraph_stack_bool_init@Base 0.9.4
+ igraph_stack_bool_pop@Base 0.9.4
+ igraph_stack_bool_print@Base 0.9.4
+ igraph_stack_bool_push@Base 0.9.4
+ igraph_stack_bool_reserve@Base 0.9.4
+ igraph_stack_bool_size@Base 0.9.4
+ igraph_stack_bool_top@Base 0.9.4
+ igraph_stack_char_clear@Base 0.9.4
+ igraph_stack_char_destroy@Base 0.9.4
+ igraph_stack_char_empty@Base 0.9.4
+ igraph_stack_char_fprint@Base 0.9.4
+ igraph_stack_char_init@Base 0.9.4
+ igraph_stack_char_pop@Base 0.9.4
+ igraph_stack_char_print@Base 0.9.4
+ igraph_stack_char_push@Base 0.9.4
+ igraph_stack_char_reserve@Base 0.9.4
+ igraph_stack_char_size@Base 0.9.4
+ igraph_stack_char_top@Base 0.9.4
+ igraph_stack_clear@Base 0.9.4
+ igraph_stack_destroy@Base 0.9.4
+ igraph_stack_empty@Base 0.9.4
+ igraph_stack_fprint@Base 0.9.4
+ igraph_stack_init@Base 0.9.4
+ igraph_stack_int_clear@Base 0.9.4
+ igraph_stack_int_destroy@Base 0.9.4
+ igraph_stack_int_empty@Base 0.9.4
+ igraph_stack_int_fprint@Base 0.9.4
+ igraph_stack_int_init@Base 0.9.4
+ igraph_stack_int_pop@Base 0.9.4
+ igraph_stack_int_print@Base 0.9.4
+ igraph_stack_int_push@Base 0.9.4
+ igraph_stack_int_reserve@Base 0.9.4
+ igraph_stack_int_size@Base 0.9.4
+ igraph_stack_int_top@Base 0.9.4
+ igraph_stack_long_clear@Base 0.9.4
+ igraph_stack_long_destroy@Base 0.9.4
+ igraph_stack_long_empty@Base 0.9.4
+ igraph_stack_long_fprint@Base 0.9.4
+ igraph_stack_long_init@Base 0.9.4
+ igraph_stack_long_pop@Base 0.9.4
+ igraph_stack_long_print@Base 0.9.4
+ igraph_stack_long_push@Base 0.9.4
+ igraph_stack_long_reserve@Base 0.9.4
+ igraph_stack_long_size@Base 0.9.4
+ igraph_stack_long_top@Base 0.9.4
+ igraph_stack_pop@Base 0.9.4
+ igraph_stack_print@Base 0.9.4
+ igraph_stack_ptr_clear@Base 0.9.4
+ igraph_stack_ptr_destroy@Base 0.9.4
+ igraph_stack_ptr_destroy_all@Base 0.9.4
+ igraph_stack_ptr_empty@Base 0.9.4
+ igraph_stack_ptr_free_all@Base 0.9.4
+ igraph_stack_ptr_init@Base 0.9.4
+ igraph_stack_ptr_pop@Base 0.9.4
+ igraph_stack_ptr_push@Base 0.9.4
+ igraph_stack_ptr_reserve@Base 0.9.4
+ igraph_stack_ptr_size@Base 0.9.4
+ igraph_stack_ptr_top@Base 0.9.4
+ igraph_stack_push@Base 0.9.4
+ igraph_stack_reserve@Base 0.9.4
+ igraph_stack_size@Base 0.9.4
+ igraph_stack_top@Base 0.9.4
+ igraph_star@Base 0.9.4
+ igraph_static_fitness_game@Base 0.9.4
+ igraph_static_power_law_game@Base 0.9.4
+ igraph_status@Base 0.9.4
+ igraph_status_handler_stderr@Base 0.9.4
+ igraph_statusf@Base 0.9.4
+ igraph_stochastic_imitation@Base 0.9.4
+ igraph_strength@Base 0.9.4
+ igraph_strerror@Base 0.9.4
+ igraph_strvector_add@Base 0.9.4
+ igraph_strvector_append@Base 0.9.4
+ igraph_strvector_clear@Base 0.9.4
+ igraph_strvector_copy@Base 0.9.4
+ igraph_strvector_destroy@Base 0.9.4
+ igraph_strvector_get@Base 0.9.4
+ igraph_strvector_index@Base 0.9.4
+ igraph_strvector_init@Base 0.9.4
+ igraph_strvector_move_interval@Base 0.9.4
+ igraph_strvector_permdelete@Base 0.9.4
+ igraph_strvector_print@Base 0.9.4
+ igraph_strvector_remove@Base 0.9.4
+ igraph_strvector_remove_negidx@Base 0.9.4
+ igraph_strvector_remove_section@Base 0.9.4
+ igraph_strvector_resize@Base 0.9.4
+ igraph_strvector_set2@Base 0.9.4
+ igraph_strvector_set@Base 0.9.4
+ igraph_strvector_size@Base 0.9.4
+ igraph_subcomponent@Base 0.9.4
+ igraph_subgraph_edges@Base 0.9.4
+ igraph_subisomorphic@Base 0.9.4
+ igraph_subisomorphic_function_vf2@Base 0.9.4
+ igraph_subisomorphic_lad@Base 0.9.4
+ igraph_subisomorphic_vf2@Base 0.9.4
+ igraph_to_directed@Base 0.9.4
+ igraph_to_prufer@Base 0.9.4
+ igraph_to_undirected@Base 0.9.4
+ igraph_topological_sorting@Base 0.9.4
+ igraph_transitive_closure_dag@Base 0.9.4
+ igraph_transitivity_avglocal_undirected@Base 0.9.4
+ igraph_transitivity_barrat@Base 0.9.4
+ igraph_transitivity_local_undirected1@Base 0.9.4
+ igraph_transitivity_local_undirected2@Base 0.9.4
+ igraph_transitivity_local_undirected4@Base 0.9.4
+ igraph_transitivity_local_undirected@Base 0.9.4
+ igraph_transitivity_undirected@Base 0.9.4
+ igraph_tree@Base 0.9.4
+ igraph_tree_game@Base 0.9.4
+ igraph_triad_census@Base 0.9.4
+ igraph_triad_census_24@Base 0.9.4
+ igraph_trie_check@Base 0.9.4
+ igraph_trie_destroy@Base 0.9.4
+ igraph_trie_get2@Base 0.9.4
+ igraph_trie_get@Base 0.9.4
+ igraph_trie_getkeys@Base 0.9.4
+ igraph_trie_idx@Base 0.9.4
+ igraph_trie_init@Base 0.9.4
+ igraph_trie_size@Base 0.9.4
+ igraph_unfold_tree@Base 0.9.4
+ igraph_union@Base 0.9.4
+ igraph_union_many@Base 0.9.4
+ igraph_vcount@Base 0.9.4
+ igraph_vector_abs@Base 0.9.4
+ igraph_vector_add@Base 0.9.4
+ igraph_vector_add_constant@Base 0.9.4
+ igraph_vector_all_e@Base 0.9.4
+ igraph_vector_all_g@Base 0.9.4
+ igraph_vector_all_ge@Base 0.9.4
+ igraph_vector_all_l@Base 0.9.4
+ igraph_vector_all_le@Base 0.9.4
+ igraph_vector_any_smaller@Base 0.9.4
+ igraph_vector_append@Base 0.9.4
+ igraph_vector_binsearch2@Base 0.9.4
+ igraph_vector_binsearch@Base 0.9.4
+ igraph_vector_binsearch_slice@Base 0.9.4
+ igraph_vector_bool_add@Base 0.9.4
+ igraph_vector_bool_add_constant@Base 0.9.4
+ igraph_vector_bool_all_e@Base 0.9.4
+ igraph_vector_bool_append@Base 0.9.4
+ igraph_vector_bool_capacity@Base 0.9.4
+ igraph_vector_bool_clear@Base 0.9.4
+ igraph_vector_bool_contains@Base 0.9.4
+ igraph_vector_bool_copy@Base 0.9.4
+ igraph_vector_bool_copy_to@Base 0.9.4
+ igraph_vector_bool_cumsum@Base 0.9.4
+ igraph_vector_bool_destroy@Base 0.9.4
+ igraph_vector_bool_div@Base 0.9.4
+ igraph_vector_bool_e@Base 0.9.4
+ igraph_vector_bool_e_ptr@Base 0.9.4
+ igraph_vector_bool_empty@Base 0.9.4
+ igraph_vector_bool_fill@Base 0.9.4
+ igraph_vector_bool_fprint@Base 0.9.4
+ igraph_vector_bool_get_interval@Base 0.9.4
+ igraph_vector_bool_index@Base 0.9.4
+ igraph_vector_bool_index_int@Base 0.9.4
+ igraph_vector_bool_init@Base 0.9.4
+ igraph_vector_bool_init_copy@Base 0.9.4
+ igraph_vector_bool_init_int@Base 0.9.4
+ igraph_vector_bool_init_real@Base 0.9.4
+ igraph_vector_bool_init_real_end@Base 0.9.4
+ igraph_vector_bool_insert@Base 0.9.4
+ igraph_vector_bool_is_equal@Base 0.9.4
+ igraph_vector_bool_isnull@Base 0.9.4
+ igraph_vector_bool_move_interval2@Base 0.9.4
+ igraph_vector_bool_move_interval@Base 0.9.4
+ igraph_vector_bool_mul@Base 0.9.4
+ igraph_vector_bool_null@Base 0.9.4
+ igraph_vector_bool_permdelete@Base 0.9.4
+ igraph_vector_bool_pop_back@Base 0.9.4
+ igraph_vector_bool_print@Base 0.9.4
+ igraph_vector_bool_printf@Base 0.9.4
+ igraph_vector_bool_prod@Base 0.9.4
+ igraph_vector_bool_push_back@Base 0.9.4
+ igraph_vector_bool_remove@Base 0.9.4
+ igraph_vector_bool_remove_section@Base 0.9.4
+ igraph_vector_bool_reserve@Base 0.9.4
+ igraph_vector_bool_resize@Base 0.9.4
+ igraph_vector_bool_resize_min@Base 0.9.4
+ igraph_vector_bool_reverse@Base 0.9.4
+ igraph_vector_bool_scale@Base 0.9.4
+ igraph_vector_bool_search@Base 0.9.4
+ igraph_vector_bool_set@Base 0.9.4
+ igraph_vector_bool_shuffle@Base 0.9.4
+ igraph_vector_bool_size@Base 0.9.4
+ igraph_vector_bool_sub@Base 0.9.4
+ igraph_vector_bool_sum@Base 0.9.4
+ igraph_vector_bool_sumsq@Base 0.9.4
+ igraph_vector_bool_swap@Base 0.9.4
+ igraph_vector_bool_swap_elements@Base 0.9.4
+ igraph_vector_bool_tail@Base 0.9.4
+ igraph_vector_bool_update@Base 0.9.4
+ igraph_vector_bool_view@Base 0.9.4
+ igraph_vector_capacity@Base 0.9.4
+ igraph_vector_char_abs@Base 0.9.4
+ igraph_vector_char_add@Base 0.9.4
+ igraph_vector_char_add_constant@Base 0.9.4
+ igraph_vector_char_all_e@Base 0.9.4
+ igraph_vector_char_all_g@Base 0.9.4
+ igraph_vector_char_all_ge@Base 0.9.4
+ igraph_vector_char_all_l@Base 0.9.4
+ igraph_vector_char_all_le@Base 0.9.4
+ igraph_vector_char_any_smaller@Base 0.9.4
+ igraph_vector_char_append@Base 0.9.4
+ igraph_vector_char_binsearch2@Base 0.9.4
+ igraph_vector_char_binsearch@Base 0.9.4
+ igraph_vector_char_binsearch_slice@Base 0.9.4
+ igraph_vector_char_capacity@Base 0.9.4
+ igraph_vector_char_clear@Base 0.9.4
+ igraph_vector_char_colex_cmp@Base 0.9.4
+ igraph_vector_char_contains@Base 0.9.4
+ igraph_vector_char_copy@Base 0.9.4
+ igraph_vector_char_copy_to@Base 0.9.4
+ igraph_vector_char_cumsum@Base 0.9.4
+ igraph_vector_char_destroy@Base 0.9.4
+ igraph_vector_char_difference_sorted@Base 0.9.4
+ igraph_vector_char_div@Base 0.9.4
+ igraph_vector_char_e@Base 0.9.4
+ igraph_vector_char_e_ptr@Base 0.9.4
+ igraph_vector_char_empty@Base 0.9.4
+ igraph_vector_char_fill@Base 0.9.4
+ igraph_vector_char_filter_smaller@Base 0.9.4
+ igraph_vector_char_fprint@Base 0.9.4
+ igraph_vector_char_get_interval@Base 0.9.4
+ igraph_vector_char_index@Base 0.9.4
+ igraph_vector_char_index_int@Base 0.9.4
+ igraph_vector_char_init@Base 0.9.4
+ igraph_vector_char_init_copy@Base 0.9.4
+ igraph_vector_char_init_int@Base 0.9.4
+ igraph_vector_char_init_real@Base 0.9.4
+ igraph_vector_char_init_real_end@Base 0.9.4
+ igraph_vector_char_init_seq@Base 0.9.4
+ igraph_vector_char_insert@Base 0.9.4
+ igraph_vector_char_intersect_sorted@Base 0.9.4
+ igraph_vector_char_is_equal@Base 0.9.4
+ igraph_vector_char_isininterval@Base 0.9.4
+ igraph_vector_char_isnull@Base 0.9.4
+ igraph_vector_char_lex_cmp@Base 0.9.4
+ igraph_vector_char_max@Base 0.9.4
+ igraph_vector_char_maxdifference@Base 0.9.4
+ igraph_vector_char_min@Base 0.9.4
+ igraph_vector_char_minmax@Base 0.9.4
+ igraph_vector_char_move_interval2@Base 0.9.4
+ igraph_vector_char_move_interval@Base 0.9.4
+ igraph_vector_char_mul@Base 0.9.4
+ igraph_vector_char_null@Base 0.9.4
+ igraph_vector_char_permdelete@Base 0.9.4
+ igraph_vector_char_pop_back@Base 0.9.4
+ igraph_vector_char_print@Base 0.9.4
+ igraph_vector_char_printf@Base 0.9.4
+ igraph_vector_char_prod@Base 0.9.4
+ igraph_vector_char_push_back@Base 0.9.4
+ igraph_vector_char_qsort_ind@Base 0.9.4
+ igraph_vector_char_remove@Base 0.9.4
+ igraph_vector_char_remove_section@Base 0.9.4
+ igraph_vector_char_reserve@Base 0.9.4
+ igraph_vector_char_resize@Base 0.9.4
+ igraph_vector_char_resize_min@Base 0.9.4
+ igraph_vector_char_reverse@Base 0.9.4
+ igraph_vector_char_reverse_sort@Base 0.9.4
+ igraph_vector_char_scale@Base 0.9.4
+ igraph_vector_char_search@Base 0.9.4
+ igraph_vector_char_set@Base 0.9.4
+ igraph_vector_char_shuffle@Base 0.9.4
+ igraph_vector_char_size@Base 0.9.4
+ igraph_vector_char_sort@Base 0.9.4
+ igraph_vector_char_sub@Base 0.9.4
+ igraph_vector_char_sum@Base 0.9.4
+ igraph_vector_char_sumsq@Base 0.9.4
+ igraph_vector_char_swap@Base 0.9.4
+ igraph_vector_char_swap_elements@Base 0.9.4
+ igraph_vector_char_tail@Base 0.9.4
+ igraph_vector_char_update@Base 0.9.4
+ igraph_vector_char_view@Base 0.9.4
+ igraph_vector_char_which_max@Base 0.9.4
+ igraph_vector_char_which_min@Base 0.9.4
+ igraph_vector_char_which_minmax@Base 0.9.4
+ igraph_vector_clear@Base 0.9.4
+ igraph_vector_colex_cmp@Base 0.9.4
+ igraph_vector_complex_add@Base 0.9.4
+ igraph_vector_complex_add_constant@Base 0.9.4
+ igraph_vector_complex_all_e@Base 0.9.4
+ igraph_vector_complex_append@Base 0.9.4
+ igraph_vector_complex_capacity@Base 0.9.4
+ igraph_vector_complex_clear@Base 0.9.4
+ igraph_vector_complex_contains@Base 0.9.4
+ igraph_vector_complex_copy@Base 0.9.4
+ igraph_vector_complex_copy_to@Base 0.9.4
+ igraph_vector_complex_create@Base 0.9.4
+ igraph_vector_complex_create_polar@Base 0.9.4
+ igraph_vector_complex_cumsum@Base 0.9.4
+ igraph_vector_complex_destroy@Base 0.9.4
+ igraph_vector_complex_div@Base 0.9.4
+ igraph_vector_complex_e@Base 0.9.4
+ igraph_vector_complex_e_ptr@Base 0.9.4
+ igraph_vector_complex_empty@Base 0.9.4
+ igraph_vector_complex_fill@Base 0.9.4
+ igraph_vector_complex_fprint@Base 0.9.4
+ igraph_vector_complex_get_interval@Base 0.9.4
+ igraph_vector_complex_imag@Base 0.9.4
+ igraph_vector_complex_index@Base 0.9.4
+ igraph_vector_complex_index_int@Base 0.9.4
+ igraph_vector_complex_init@Base 0.9.4
+ igraph_vector_complex_init_copy@Base 0.9.4
+ igraph_vector_complex_insert@Base 0.9.4
+ igraph_vector_complex_is_equal@Base 0.9.4
+ igraph_vector_complex_isnull@Base 0.9.4
+ igraph_vector_complex_move_interval2@Base 0.9.4
+ igraph_vector_complex_move_interval@Base 0.9.4
+ igraph_vector_complex_mul@Base 0.9.4
+ igraph_vector_complex_null@Base 0.9.4
+ igraph_vector_complex_permdelete@Base 0.9.4
+ igraph_vector_complex_pop_back@Base 0.9.4
+ igraph_vector_complex_print@Base 0.9.4
+ igraph_vector_complex_prod@Base 0.9.4
+ igraph_vector_complex_push_back@Base 0.9.4
+ igraph_vector_complex_real@Base 0.9.4
+ igraph_vector_complex_realimag@Base 0.9.4
+ igraph_vector_complex_remove@Base 0.9.4
+ igraph_vector_complex_remove_section@Base 0.9.4
+ igraph_vector_complex_reserve@Base 0.9.4
+ igraph_vector_complex_resize@Base 0.9.4
+ igraph_vector_complex_resize_min@Base 0.9.4
+ igraph_vector_complex_reverse@Base 0.9.4
+ igraph_vector_complex_scale@Base 0.9.4
+ igraph_vector_complex_search@Base 0.9.4
+ igraph_vector_complex_set@Base 0.9.4
+ igraph_vector_complex_shuffle@Base 0.9.4
+ igraph_vector_complex_size@Base 0.9.4
+ igraph_vector_complex_sub@Base 0.9.4
+ igraph_vector_complex_sum@Base 0.9.4
+ igraph_vector_complex_sumsq@Base 0.9.4
+ igraph_vector_complex_swap@Base 0.9.4
+ igraph_vector_complex_swap_elements@Base 0.9.4
+ igraph_vector_complex_tail@Base 0.9.4
+ igraph_vector_complex_update@Base 0.9.4
+ igraph_vector_complex_view@Base 0.9.4
+ igraph_vector_contains@Base 0.9.4
+ igraph_vector_copy@Base 0.9.4
+ igraph_vector_copy_to@Base 0.9.4
+ igraph_vector_cumsum@Base 0.9.4
+ igraph_vector_destroy@Base 0.9.4
+ igraph_vector_difference_sorted@Base 0.9.4
+ igraph_vector_div@Base 0.9.4
+ igraph_vector_e@Base 0.9.4
+ igraph_vector_e_ptr@Base 0.9.4
+ igraph_vector_e_tol@Base 0.9.4
+ igraph_vector_empty@Base 0.9.4
+ igraph_vector_fill@Base 0.9.4
+ igraph_vector_filter_smaller@Base 0.9.4
+ igraph_vector_float_abs@Base 0.9.4
+ igraph_vector_float_add@Base 0.9.4
+ igraph_vector_float_add_constant@Base 0.9.4
+ igraph_vector_float_all_e@Base 0.9.4
+ igraph_vector_float_all_g@Base 0.9.4
+ igraph_vector_float_all_ge@Base 0.9.4
+ igraph_vector_float_all_l@Base 0.9.4
+ igraph_vector_float_all_le@Base 0.9.4
+ igraph_vector_float_any_smaller@Base 0.9.4
+ igraph_vector_float_append@Base 0.9.4
+ igraph_vector_float_binsearch2@Base 0.9.4
+ igraph_vector_float_binsearch@Base 0.9.4
+ igraph_vector_float_binsearch_slice@Base 0.9.4
+ igraph_vector_float_capacity@Base 0.9.4
+ igraph_vector_float_clear@Base 0.9.4
+ igraph_vector_float_colex_cmp@Base 0.9.4
+ igraph_vector_float_contains@Base 0.9.4
+ igraph_vector_float_copy@Base 0.9.4
+ igraph_vector_float_copy_to@Base 0.9.4
+ igraph_vector_float_cumsum@Base 0.9.4
+ igraph_vector_float_destroy@Base 0.9.4
+ igraph_vector_float_difference_sorted@Base 0.9.4
+ igraph_vector_float_div@Base 0.9.4
+ igraph_vector_float_e@Base 0.9.4
+ igraph_vector_float_e_ptr@Base 0.9.4
+ igraph_vector_float_empty@Base 0.9.4
+ igraph_vector_float_fill@Base 0.9.4
+ igraph_vector_float_filter_smaller@Base 0.9.4
+ igraph_vector_float_fprint@Base 0.9.4
+ igraph_vector_float_get_interval@Base 0.9.4
+ igraph_vector_float_index@Base 0.9.4
+ igraph_vector_float_index_int@Base 0.9.4
+ igraph_vector_float_init@Base 0.9.4
+ igraph_vector_float_init_copy@Base 0.9.4
+ igraph_vector_float_init_int@Base 0.9.4
+ igraph_vector_float_init_real@Base 0.9.4
+ igraph_vector_float_init_real_end@Base 0.9.4
+ igraph_vector_float_init_seq@Base 0.9.4
+ igraph_vector_float_insert@Base 0.9.4
+ igraph_vector_float_intersect_sorted@Base 0.9.4
+ igraph_vector_float_is_equal@Base 0.9.4
+ igraph_vector_float_isininterval@Base 0.9.4
+ igraph_vector_float_isnull@Base 0.9.4
+ igraph_vector_float_lex_cmp@Base 0.9.4
+ igraph_vector_float_max@Base 0.9.4
+ igraph_vector_float_maxdifference@Base 0.9.4
+ igraph_vector_float_min@Base 0.9.4
+ igraph_vector_float_minmax@Base 0.9.4
+ igraph_vector_float_move_interval2@Base 0.9.4
+ igraph_vector_float_move_interval@Base 0.9.4
+ igraph_vector_float_mul@Base 0.9.4
+ igraph_vector_float_null@Base 0.9.4
+ igraph_vector_float_permdelete@Base 0.9.4
+ igraph_vector_float_pop_back@Base 0.9.4
+ igraph_vector_float_print@Base 0.9.4
+ igraph_vector_float_printf@Base 0.9.4
+ igraph_vector_float_prod@Base 0.9.4
+ igraph_vector_float_push_back@Base 0.9.4
+ igraph_vector_float_qsort_ind@Base 0.9.4
+ igraph_vector_float_remove@Base 0.9.4
+ igraph_vector_float_remove_section@Base 0.9.4
+ igraph_vector_float_reserve@Base 0.9.4
+ igraph_vector_float_resize@Base 0.9.4
+ igraph_vector_float_resize_min@Base 0.9.4
+ igraph_vector_float_reverse@Base 0.9.4
+ igraph_vector_float_reverse_sort@Base 0.9.4
+ igraph_vector_float_scale@Base 0.9.4
+ igraph_vector_float_search@Base 0.9.4
+ igraph_vector_float_set@Base 0.9.4
+ igraph_vector_float_shuffle@Base 0.9.4
+ igraph_vector_float_size@Base 0.9.4
+ igraph_vector_float_sort@Base 0.9.4
+ igraph_vector_float_sub@Base 0.9.4
+ igraph_vector_float_sum@Base 0.9.4
+ igraph_vector_float_sumsq@Base 0.9.4
+ igraph_vector_float_swap@Base 0.9.4
+ igraph_vector_float_swap_elements@Base 0.9.4
+ igraph_vector_float_tail@Base 0.9.4
+ igraph_vector_float_update@Base 0.9.4
+ igraph_vector_float_view@Base 0.9.4
+ igraph_vector_float_which_max@Base 0.9.4
+ igraph_vector_float_which_min@Base 0.9.4
+ igraph_vector_float_which_minmax@Base 0.9.4
+ igraph_vector_floor@Base 0.9.4
+ igraph_vector_fprint@Base 0.9.4
+ igraph_vector_get_interval@Base 0.9.4
+ igraph_vector_index@Base 0.9.4
+ igraph_vector_index_int@Base 0.9.4
+ igraph_vector_init@Base 0.9.4
+ igraph_vector_init_copy@Base 0.9.4
+ igraph_vector_init_int@Base 0.9.4
+ igraph_vector_init_int_end@Base 0.9.4
+ igraph_vector_init_real@Base 0.9.4
+ igraph_vector_init_real_end@Base 0.9.4
+ igraph_vector_init_seq@Base 0.9.4
+ igraph_vector_insert@Base 0.9.4
+ igraph_vector_int_abs@Base 0.9.4
+ igraph_vector_int_add@Base 0.9.4
+ igraph_vector_int_add_constant@Base 0.9.4
+ igraph_vector_int_all_e@Base 0.9.4
+ igraph_vector_int_all_g@Base 0.9.4
+ igraph_vector_int_all_ge@Base 0.9.4
+ igraph_vector_int_all_l@Base 0.9.4
+ igraph_vector_int_all_le@Base 0.9.4
+ igraph_vector_int_any_smaller@Base 0.9.4
+ igraph_vector_int_append@Base 0.9.4
+ igraph_vector_int_binsearch2@Base 0.9.4
+ igraph_vector_int_binsearch@Base 0.9.4
+ igraph_vector_int_binsearch_slice@Base 0.9.4
+ igraph_vector_int_capacity@Base 0.9.4
+ igraph_vector_int_clear@Base 0.9.4
+ igraph_vector_int_colex_cmp@Base 0.9.4
+ igraph_vector_int_contains@Base 0.9.4
+ igraph_vector_int_copy@Base 0.9.4
+ igraph_vector_int_copy_to@Base 0.9.4
+ igraph_vector_int_cumsum@Base 0.9.4
+ igraph_vector_int_destroy@Base 0.9.4
+ igraph_vector_int_difference_sorted@Base 0.9.4
+ igraph_vector_int_div@Base 0.9.4
+ igraph_vector_int_e@Base 0.9.4
+ igraph_vector_int_e_ptr@Base 0.9.4
+ igraph_vector_int_empty@Base 0.9.4
+ igraph_vector_int_fill@Base 0.9.4
+ igraph_vector_int_filter_smaller@Base 0.9.4
+ igraph_vector_int_fprint@Base 0.9.4
+ igraph_vector_int_get_interval@Base 0.9.4
+ igraph_vector_int_index@Base 0.9.4
+ igraph_vector_int_index_int@Base 0.9.4
+ igraph_vector_int_init@Base 0.9.4
+ igraph_vector_int_init_copy@Base 0.9.4
+ igraph_vector_int_init_int@Base 0.9.4
+ igraph_vector_int_init_real@Base 0.9.4
+ igraph_vector_int_init_real_end@Base 0.9.4
+ igraph_vector_int_init_seq@Base 0.9.4
+ igraph_vector_int_insert@Base 0.9.4
+ igraph_vector_int_intersect_sorted@Base 0.9.4
+ igraph_vector_int_is_equal@Base 0.9.4
+ igraph_vector_int_isininterval@Base 0.9.4
+ igraph_vector_int_isnull@Base 0.9.4
+ igraph_vector_int_lex_cmp@Base 0.9.4
+ igraph_vector_int_max@Base 0.9.4
+ igraph_vector_int_maxdifference@Base 0.9.4
+ igraph_vector_int_min@Base 0.9.4
+ igraph_vector_int_minmax@Base 0.9.4
+ igraph_vector_int_move_interval2@Base 0.9.4
+ igraph_vector_int_move_interval@Base 0.9.4
+ igraph_vector_int_mul@Base 0.9.4
+ igraph_vector_int_null@Base 0.9.4
+ igraph_vector_int_permdelete@Base 0.9.4
+ igraph_vector_int_pop_back@Base 0.9.4
+ igraph_vector_int_print@Base 0.9.4
+ igraph_vector_int_printf@Base 0.9.4
+ igraph_vector_int_prod@Base 0.9.4
+ igraph_vector_int_push_back@Base 0.9.4
+ igraph_vector_int_qsort_ind@Base 0.9.4
+ igraph_vector_int_remove@Base 0.9.4
+ igraph_vector_int_remove_section@Base 0.9.4
+ igraph_vector_int_reserve@Base 0.9.4
+ igraph_vector_int_resize@Base 0.9.4
+ igraph_vector_int_resize_min@Base 0.9.4
+ igraph_vector_int_reverse@Base 0.9.4
+ igraph_vector_int_reverse_sort@Base 0.9.4
+ igraph_vector_int_scale@Base 0.9.4
+ igraph_vector_int_search@Base 0.9.4
+ igraph_vector_int_set@Base 0.9.4
+ igraph_vector_int_shuffle@Base 0.9.4
+ igraph_vector_int_size@Base 0.9.4
+ igraph_vector_int_sort@Base 0.9.4
+ igraph_vector_int_sub@Base 0.9.4
+ igraph_vector_int_sum@Base 0.9.4
+ igraph_vector_int_sumsq@Base 0.9.4
+ igraph_vector_int_swap@Base 0.9.4
+ igraph_vector_int_swap_elements@Base 0.9.4
+ igraph_vector_int_tail@Base 0.9.4
+ igraph_vector_int_update@Base 0.9.4
+ igraph_vector_int_view@Base 0.9.4
+ igraph_vector_int_which_max@Base 0.9.4
+ igraph_vector_int_which_min@Base 0.9.4
+ igraph_vector_int_which_minmax@Base 0.9.4
+ igraph_vector_intersect_sorted@Base 0.9.4
+ igraph_vector_is_any_nan@Base 0.9.4
+ igraph_vector_is_equal@Base 0.9.4
+ igraph_vector_is_nan@Base 0.9.4
+ igraph_vector_isininterval@Base 0.9.4
+ igraph_vector_isnull@Base 0.9.4
+ igraph_vector_lex_cmp@Base 0.9.4
+ igraph_vector_long_abs@Base 0.9.4
+ igraph_vector_long_add@Base 0.9.4
+ igraph_vector_long_add_constant@Base 0.9.4
+ igraph_vector_long_all_e@Base 0.9.4
+ igraph_vector_long_all_g@Base 0.9.4
+ igraph_vector_long_all_ge@Base 0.9.4
+ igraph_vector_long_all_l@Base 0.9.4
+ igraph_vector_long_all_le@Base 0.9.4
+ igraph_vector_long_any_smaller@Base 0.9.4
+ igraph_vector_long_append@Base 0.9.4
+ igraph_vector_long_binsearch2@Base 0.9.4
+ igraph_vector_long_binsearch@Base 0.9.4
+ igraph_vector_long_binsearch_slice@Base 0.9.4
+ igraph_vector_long_capacity@Base 0.9.4
+ igraph_vector_long_clear@Base 0.9.4
+ igraph_vector_long_colex_cmp@Base 0.9.4
+ igraph_vector_long_contains@Base 0.9.4
+ igraph_vector_long_copy@Base 0.9.4
+ igraph_vector_long_copy_to@Base 0.9.4
+ igraph_vector_long_cumsum@Base 0.9.4
+ igraph_vector_long_destroy@Base 0.9.4
+ igraph_vector_long_difference_sorted@Base 0.9.4
+ igraph_vector_long_div@Base 0.9.4
+ igraph_vector_long_e@Base 0.9.4
+ igraph_vector_long_e_ptr@Base 0.9.4
+ igraph_vector_long_empty@Base 0.9.4
+ igraph_vector_long_fill@Base 0.9.4
+ igraph_vector_long_filter_smaller@Base 0.9.4
+ igraph_vector_long_fprint@Base 0.9.4
+ igraph_vector_long_get_interval@Base 0.9.4
+ igraph_vector_long_index@Base 0.9.4
+ igraph_vector_long_index_int@Base 0.9.4
+ igraph_vector_long_init@Base 0.9.4
+ igraph_vector_long_init_copy@Base 0.9.4
+ igraph_vector_long_init_int@Base 0.9.4
+ igraph_vector_long_init_real@Base 0.9.4
+ igraph_vector_long_init_real_end@Base 0.9.4
+ igraph_vector_long_init_seq@Base 0.9.4
+ igraph_vector_long_insert@Base 0.9.4
+ igraph_vector_long_intersect_sorted@Base 0.9.4
+ igraph_vector_long_is_equal@Base 0.9.4
+ igraph_vector_long_isininterval@Base 0.9.4
+ igraph_vector_long_isnull@Base 0.9.4
+ igraph_vector_long_lex_cmp@Base 0.9.4
+ igraph_vector_long_max@Base 0.9.4
+ igraph_vector_long_maxdifference@Base 0.9.4
+ igraph_vector_long_min@Base 0.9.4
+ igraph_vector_long_minmax@Base 0.9.4
+ igraph_vector_long_move_interval2@Base 0.9.4
+ igraph_vector_long_move_interval@Base 0.9.4
+ igraph_vector_long_mul@Base 0.9.4
+ igraph_vector_long_null@Base 0.9.4
+ igraph_vector_long_permdelete@Base 0.9.4
+ igraph_vector_long_pop_back@Base 0.9.4
+ igraph_vector_long_print@Base 0.9.4
+ igraph_vector_long_printf@Base 0.9.4
+ igraph_vector_long_prod@Base 0.9.4
+ igraph_vector_long_push_back@Base 0.9.4
+ igraph_vector_long_qsort_ind@Base 0.9.4
+ igraph_vector_long_remove@Base 0.9.4
+ igraph_vector_long_remove_section@Base 0.9.4
+ igraph_vector_long_reserve@Base 0.9.4
+ igraph_vector_long_resize@Base 0.9.4
+ igraph_vector_long_resize_min@Base 0.9.4
+ igraph_vector_long_reverse@Base 0.9.4
+ igraph_vector_long_reverse_sort@Base 0.9.4
+ igraph_vector_long_scale@Base 0.9.4
+ igraph_vector_long_search@Base 0.9.4
+ igraph_vector_long_set@Base 0.9.4
+ igraph_vector_long_shuffle@Base 0.9.4
+ igraph_vector_long_size@Base 0.9.4
+ igraph_vector_long_sort@Base 0.9.4
+ igraph_vector_long_sub@Base 0.9.4
+ igraph_vector_long_sum@Base 0.9.4
+ igraph_vector_long_sumsq@Base 0.9.4
+ igraph_vector_long_swap@Base 0.9.4
+ igraph_vector_long_swap_elements@Base 0.9.4
+ igraph_vector_long_tail@Base 0.9.4
+ igraph_vector_long_update@Base 0.9.4
+ igraph_vector_long_view@Base 0.9.4
+ igraph_vector_long_which_max@Base 0.9.4
+ igraph_vector_long_which_min@Base 0.9.4
+ igraph_vector_long_which_minmax@Base 0.9.4
+ igraph_vector_max@Base 0.9.4
+ igraph_vector_maxdifference@Base 0.9.4
+ igraph_vector_min@Base 0.9.4
+ igraph_vector_minmax@Base 0.9.4
+ igraph_vector_move_interval2@Base 0.9.4
+ igraph_vector_move_interval@Base 0.9.4
+ igraph_vector_mul@Base 0.9.4
+ igraph_vector_null@Base 0.9.4
+ igraph_vector_order1@Base 0.9.4
+ igraph_vector_order1_int@Base 0.9.4
+ igraph_vector_order2@Base 0.9.4
+ igraph_vector_order@Base 0.9.4
+ igraph_vector_permdelete@Base 0.9.4
+ igraph_vector_pop_back@Base 0.9.4
+ igraph_vector_print@Base 0.9.4
+ igraph_vector_printf@Base 0.9.4
+ igraph_vector_prod@Base 0.9.4
+ igraph_vector_ptr_append@Base 0.9.4
+ igraph_vector_ptr_clear@Base 0.9.4
+ igraph_vector_ptr_copy@Base 0.9.4
+ igraph_vector_ptr_copy_to@Base 0.9.4
+ igraph_vector_ptr_destroy@Base 0.9.4
+ igraph_vector_ptr_destroy_all@Base 0.9.4
+ igraph_vector_ptr_e@Base 0.9.4
+ igraph_vector_ptr_empty@Base 0.9.4
+ igraph_vector_ptr_free_all@Base 0.9.4
+ igraph_vector_ptr_get_item_destructor@Base 0.9.4
+ igraph_vector_ptr_index_int@Base 0.9.4
+ igraph_vector_ptr_init@Base 0.9.4
+ igraph_vector_ptr_init_copy@Base 0.9.4
+ igraph_vector_ptr_insert@Base 0.9.4
+ igraph_vector_ptr_null@Base 0.9.4
+ igraph_vector_ptr_pop_back@Base 0.9.4
+ igraph_vector_ptr_push_back@Base 0.9.4
+ igraph_vector_ptr_remove@Base 0.9.4
+ igraph_vector_ptr_reserve@Base 0.9.4
+ igraph_vector_ptr_resize@Base 0.9.4
+ igraph_vector_ptr_set@Base 0.9.4
+ igraph_vector_ptr_set_item_destructor@Base 0.9.4
+ igraph_vector_ptr_size@Base 0.9.4
+ igraph_vector_ptr_sort@Base 0.9.4
+ igraph_vector_ptr_view@Base 0.9.4
+ igraph_vector_push_back@Base 0.9.4
+ igraph_vector_qsort_ind@Base 0.9.4
+ igraph_vector_rank@Base 0.9.4
+ igraph_vector_remove@Base 0.9.4
+ igraph_vector_remove_section@Base 0.9.4
+ igraph_vector_reserve@Base 0.9.4
+ igraph_vector_resize@Base 0.9.4
+ igraph_vector_resize_min@Base 0.9.4
+ igraph_vector_reverse@Base 0.9.4
+ igraph_vector_reverse_sort@Base 0.9.4
+ igraph_vector_round@Base 0.9.4
+ igraph_vector_scale@Base 0.9.4
+ igraph_vector_search@Base 0.9.4
+ igraph_vector_set@Base 0.9.4
+ igraph_vector_shuffle@Base 0.9.4
+ igraph_vector_size@Base 0.9.4
+ igraph_vector_sort@Base 0.9.4
+ igraph_vector_sub@Base 0.9.4
+ igraph_vector_sum@Base 0.9.4
+ igraph_vector_sumsq@Base 0.9.4
+ igraph_vector_swap@Base 0.9.4
+ igraph_vector_swap_elements@Base 0.9.4
+ igraph_vector_tail@Base 0.9.4
+ igraph_vector_update@Base 0.9.4
+ igraph_vector_view@Base 0.9.4
+ igraph_vector_which_max@Base 0.9.4
+ igraph_vector_which_min@Base 0.9.4
+ igraph_vector_which_minmax@Base 0.9.4
+ igraph_vector_zapsmall@Base 0.9.4
+ igraph_version@Base 0.9.4
+ igraph_vertex_coloring_greedy@Base 0.9.4
+ igraph_vertex_connectivity@Base 0.9.4
+ igraph_vertex_disjoint_paths@Base 0.9.4
+ igraph_vit_as_vector@Base 0.9.4
+ igraph_vit_create@Base 0.9.4
+ igraph_vit_destroy@Base 0.9.4
+ igraph_vs_1@Base 0.9.4
+ igraph_vs_adj@Base 0.9.4
+ igraph_vs_all@Base 0.9.4
+ igraph_vs_as_vector@Base 0.9.4
+ igraph_vs_copy@Base 0.9.4
+ igraph_vs_destroy@Base 0.9.4
+ igraph_vs_is_all@Base 0.9.4
+ igraph_vs_nonadj@Base 0.9.4
+ igraph_vs_none@Base 0.9.4
+ igraph_vs_seq@Base 0.9.4
+ igraph_vs_size@Base 0.9.4
+ igraph_vs_type@Base 0.9.4
+ igraph_vs_vector@Base 0.9.4
+ igraph_vs_vector_copy@Base 0.9.4
+ igraph_vs_vector_small@Base 0.9.4
+ igraph_vss_1@Base 0.9.4
+ igraph_vss_all@Base 0.9.4
+ igraph_vss_none@Base 0.9.4
+ igraph_vss_seq@Base 0.9.4
+ igraph_vss_vector@Base 0.9.4
+ igraph_warning@Base 0.9.4
+ igraph_warning_handler_ignore@Base 0.9.4
+ igraph_warning_handler_print@Base 0.9.4
+ igraph_warningf@Base 0.9.4
+ igraph_watts_strogatz_game@Base 0.9.4
+ igraph_weighted_adjacency@Base 0.9.4
+ igraph_weighted_clique_number@Base 0.9.4
+ igraph_weighted_cliques@Base 0.9.4
+ igraph_weighted_sparsemat@Base 0.9.4
+ igraph_write_graph_dimacs@Base 0.9.4
+ igraph_write_graph_dot@Base 0.9.4
+ igraph_write_graph_edgelist@Base 0.9.4
+ igraph_write_graph_gml@Base 0.9.4
+ igraph_write_graph_graphml@Base 0.9.4
+ igraph_write_graph_leda@Base 0.9.4
+ igraph_write_graph_lgl@Base 0.9.4
+ igraph_write_graph_ncol@Base 0.9.4
+ igraph_write_graph_pajek@Base 0.9.4
+ igraph_zeroin@Base 0.9.4
diff --git a/patches/debianization-doc-local_fonts.patch b/patches/debianization-doc-local_fonts.patch
new file mode 100644 (file)
index 0000000..08cd191
--- /dev/null
@@ -0,0 +1,17 @@
+Description: debianization: use local fonts
+Origin: debian
+Forwarded: not-needed
+Author: Jerome Benoit <calculus@rezozer.net>
+Last-Update: 2021-04-11
+
+--- a/doc/gtk-doc.xsl
++++ b/doc/gtk-doc.xsl
+@@ -102,7 +102,7 @@
+             content="GTK-Doc V{$gtkdoc.version} (XML mode)"/>
+     </xsl:if>
+     <link rel="stylesheet" href="style.css" type="text/css"/>
+-      <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" type="text/css"/>
++      <link rel="stylesheet" href="/usr/share/fonts-font-awesome/css/font-awesome.min.css" type="text/css"/>
+       <!-- copied from the html.head template in the docbook stylesheets
+            we don't want links for all refentrys, thats just too much
diff --git a/patches/debianization-suitesparse-header_folder.patch b/patches/debianization-suitesparse-header_folder.patch
new file mode 100644 (file)
index 0000000..b10c93a
--- /dev/null
@@ -0,0 +1,40 @@
+Description: debianization: SuiteSparse header folder
+ Rename the system wide SuiteSparse header folder to `suitesparse'.
+Origin: debian
+Forwarded: not-needed
+Author: Jerome Benoit <calculus@rezozer.net>
+Last-Update: 2022-01-06
+
+--- a/tests/unit/igraph_sparsemat2.c
++++ b/tests/unit/igraph_sparsemat2.c
+@@ -23,7 +23,7 @@
+ #define NCOMPLEX  /* to make it compile with MSVC on Windows */
+-#include <cs.h>
++#include <suitesparse/cs.h>
+ #include <igraph.h>
+ #include "linalg/blas_internal.h"
+ #include "linalg/arpack_internal.h"
+--- a/examples/simple/igraph_sparsemat3.c
++++ b/examples/simple/igraph_sparsemat3.c
+@@ -23,7 +23,7 @@
+ #define NCOMPLEX  /* to make it compile with MSVC on Windows */
+-#include <cs.h>
++#include <suitesparse/cs.h>
+ #include <igraph.h>
+ int permute(const igraph_matrix_t *M,
+--- a/examples/simple/igraph_sparsemat4.c
++++ b/examples/simple/igraph_sparsemat4.c
+@@ -23,7 +23,7 @@
+ #define NCOMPLEX  /* to make it compile with MSVC on Windows */
+-#include <cs.h>
++#include <suitesparse/cs.h>
+ #include <igraph.h>
+ igraph_bool_t check_solution(const igraph_sparsemat_t *A,
diff --git a/patches/debianization.patch b/patches/debianization.patch
new file mode 100644 (file)
index 0000000..697791a
--- /dev/null
@@ -0,0 +1,57 @@
+Description: debianization
+ Meant to maintain a minimal debian/rules, to fix warnings,
+ to address Debian specific stuff in general.
+Origin: debian
+Forwarded: not-needed
+Author: Jerome Benoit <calculus@rezozer.net>
+Last-Update: 2022-01-06
+
+--- a/src/CMakeLists.txt
++++ b/src/CMakeLists.txt
+@@ -283,20 +283,20 @@
+   version.c
+-  # Vendored library sources. Yes, this is horrible.
+-  $<IF:$<OR:$<BOOL:${ARPACK_IS_VENDORED}>,$<BOOL:${BLAS_IS_VENDORED}>,$<BOOL:${LAPACK_IS_VENDORED}>>,$<TARGET_OBJECTS:f2c_vendored>,>
+-  $<IF:$<BOOL:${ARPACK_IS_VENDORED}>,$<TARGET_OBJECTS:arpack_vendored>,>
+-  $<IF:$<BOOL:${BLAS_IS_VENDORED}>,$<TARGET_OBJECTS:blas_vendored>,>
+-  $<IF:$<BOOL:${CXSPARSE_IS_VENDORED}>,$<TARGET_OBJECTS:cxsparse_vendored>,>
+-  $<IF:$<BOOL:${GLPK_IS_VENDORED}>,$<TARGET_OBJECTS:glpk_vendored>,>
+-  $<IF:$<BOOL:${GMP_IS_VENDORED}>,$<TARGET_OBJECTS:gmp_vendored>,>
+-  $<IF:$<BOOL:${LAPACK_IS_VENDORED}>,$<TARGET_OBJECTS:lapack_vendored>,>
+-  $<IF:$<BOOL:${PLFIT_IS_VENDORED}>,$<TARGET_OBJECTS:plfit_vendored>,>
++##  # Vendored library sources. Yes, this is horrible.
++##  $<IF:$<OR:$<BOOL:${ARPACK_IS_VENDORED}>,$<BOOL:${BLAS_IS_VENDORED}>,$<BOOL:${LAPACK_IS_VENDORED}>>,$<TARGET_OBJECTS:f2c_vendored>,>
++##  $<IF:$<BOOL:${ARPACK_IS_VENDORED}>,$<TARGET_OBJECTS:arpack_vendored>,>
++##  $<IF:$<BOOL:${BLAS_IS_VENDORED}>,$<TARGET_OBJECTS:blas_vendored>,>
++##  $<IF:$<BOOL:${CXSPARSE_IS_VENDORED}>,$<TARGET_OBJECTS:cxsparse_vendored>,>
++##  $<IF:$<BOOL:${GLPK_IS_VENDORED}>,$<TARGET_OBJECTS:glpk_vendored>,>
++##  $<IF:$<BOOL:${GMP_IS_VENDORED}>,$<TARGET_OBJECTS:gmp_vendored>,>
++##  $<IF:$<BOOL:${LAPACK_IS_VENDORED}>,$<TARGET_OBJECTS:lapack_vendored>,>
++##  $<IF:$<BOOL:${PLFIT_IS_VENDORED}>,$<TARGET_OBJECTS:plfit_vendored>,>
+ )
+ # Set soname for the library
+-set_target_properties(igraph PROPERTIES VERSION "0.0.0")
+-set_target_properties(igraph PROPERTIES SOVERSION 0)
++set_target_properties(igraph PROPERTIES VERSION "2.0.0")
++set_target_properties(igraph PROPERTIES SOVERSION 2)
+ # Add extra compiler definitions if needed
+ target_compile_definitions(
+--- a/vendor/CMakeLists.txt
++++ b/vendor/CMakeLists.txt
+@@ -1,6 +1,6 @@
+-add_subdirectory(cs)
+-add_subdirectory(f2c)
+-add_subdirectory(glpk)
+-add_subdirectory(lapack)
+-add_subdirectory(mini-gmp)
+-add_subdirectory(plfit)
++##add_subdirectory(cs)
++##add_subdirectory(f2c)
++##add_subdirectory(glpk)
++##add_subdirectory(lapack)
++##add_subdirectory(mini-gmp)
++##add_subdirectory(plfit)
diff --git a/patches/series b/patches/series
new file mode 100644 (file)
index 0000000..e701463
--- /dev/null
@@ -0,0 +1,5 @@
+upstream-source-lintian-spelling.patch
+upstream-external-plfit.patch
+debianization.patch
+debianization-suitesparse-header_folder.patch
+debianization-doc-local_fonts.patch
diff --git a/patches/upstream-external-plfit.patch b/patches/upstream-external-plfit.patch
new file mode 100644 (file)
index 0000000..0fc72ef
--- /dev/null
@@ -0,0 +1,17 @@
+Description: upstream: non-internal support: plfit
+ This patch specify the folder of the `plfit` headers.
+ It is meant to be submitted to the upstream maintainer.
+Origin: debian
+Forwarded: https://github.com/igraph/igraph/pull/1921
+Author: Jerome Benoit <calculus@rezozer.net>
+Last-Update: 2022-03-16
+
+--- a/tests/benchmarks/igraph_power_law_fit.c
++++ b/tests/benchmarks/igraph_power_law_fit.c
+@@ -1,5 +1,5 @@
+ #include <igraph.h>
+-#include <plfit_sampling.h>
++#include <plfit/plfit_sampling.h>
+ #include "bench.h"
diff --git a/patches/upstream-source-lintian-spelling.patch b/patches/upstream-source-lintian-spelling.patch
new file mode 100644 (file)
index 0000000..e522e87
--- /dev/null
@@ -0,0 +1,30 @@
+Description: source typo
+ Correct spelling error as reported by lintian in some binaries;
+ meant to silence lintian and eventually to be submitted to the
+ upstream maintainer.
+Origin: vendor, Debian
+Forwarded: https://github.com/igraph/igraph/pull/2192
+Comment: spelling-error-in-binary
+Author: Jerome Benoit <calculus@rezozer.net>
+Last-Update: 2022-09-09
+
+--- a/src/graph/iterators.c
++++ b/src/graph/iterators.c
+@@ -772,7 +772,7 @@
+             IGRAPH_ERROR("Cannot create sequence iterator, starting vertex ID out of range.", IGRAPH_EINVAL);
+         }
+         if (vs.data.seq.to < 0 || vs.data.seq.to >= igraph_vcount(graph)) {
+-            IGRAPH_ERROR("Cannot create sequece iterator, ending vertex ID out of range.", IGRAPH_EINVAL);
++            IGRAPH_ERROR("Cannot create sequence iterator, ending vertex ID out of range.", IGRAPH_EINVAL);
+         }
+         vit->type = IGRAPH_VIT_SEQ;
+         vit->pos = vs.data.seq.from;
+@@ -1860,7 +1860,7 @@
+             IGRAPH_ERROR("Cannot create sequence iterator, starting edge ID out of range.", IGRAPH_EINVAL);
+         }
+         if (es.data.seq.to < 0 || es.data.seq.to >= igraph_ecount(graph)) {
+-            IGRAPH_ERROR("Cannot create sequece iterator, ending edge ID out of range.", IGRAPH_EINVAL);
++            IGRAPH_ERROR("Cannot create sequence iterator, ending edge ID out of range.", IGRAPH_EINVAL);
+         }
+         eit->type = IGRAPH_EIT_SEQ;
+         eit->pos = es.data.seq.from;
diff --git a/rules b/rules
new file mode 100755 (executable)
index 0000000..9487b39
--- /dev/null
+++ b/rules
@@ -0,0 +1,77 @@
+#!/usr/bin/make -f
+include /usr/share/dpkg/pkg-info.mk
+#export DH_VERBOSE=1
+
+export DEB_BUILD_MAINT_OPTIONS=hardening=+all
+
+BUILDIR_STATIC=_BUILD_STATIC
+BUILDIR_SHARED=_BUILD_SHARED
+
+%:
+       dh $@ --buildsystem=cmake --builddirectory=$(BUILDIR_SHARED)
+
+#      --enable-debug
+
+### disable TLS to fix warning with TLS and arpack
+CONF_FLAGS= \
+       -DIGRAPH_ENABLE_TLS=OFF \
+       -DIGRAPH_USE_INTERNAL_BLAS=OFF \
+       -DIGRAPH_USE_INTERNAL_LAPACK=OFF \
+       -DIGRAPH_USE_INTERNAL_ARPACK=OFF \
+       -DIGRAPH_USE_INTERNAL_GLPK=OFF \
+       -DIGRAPH_USE_INTERNAL_CXSPARSE=OFF \
+       -DIGRAPH_USE_INTERNAL_GMP=OFF \
+       -DIGRAPH_USE_INTERNAL_PLFIT=OFF \
+       -DIGRAPH_GLPK_SUPPORT=ON \
+       -DIGRAPH_GRAPHML_SUPPORT=ON \
+       -DIGRAPH_OPENMP_SUPPORT=ON
+
+
+### LTO does not really achieve anything for static libraries
+override_dh_auto_configure:
+       dh_auto_configure -B$(BUILDIR_SHARED) -- -DIGRAPH_ENABLE_LTO=ON  -DBUILD_SHARED_LIBS=ON  $(CONF_FLAGS)
+       dh_auto_configure -B$(BUILDIR_STATIC) -- -DIGRAPH_ENABLE_LTO=OFF -DBUILD_SHARED_LIBS=OFF $(CONF_FLAGS)
+
+override_dh_auto_build-indep:
+       make -C $(BUILDIR_SHARED)/doc pdf
+       make -C $(BUILDIR_SHARED)/doc html
+       mv -v $(BUILDIR_SHARED)/doc/igraph-docs.pdf $(BUILDIR_SHARED)/doc/igraph.pdf
+       make -C $(BUILDIR_SHARED)/doc clean
+
+override_dh_auto_build-arch:
+       dh_auto_build -a -B$(BUILDIR_STATIC)
+       dh_auto_build -a -B$(BUILDIR_SHARED)
+
+override_dh_auto_test-indep:
+
+override_dh_auto_test-arch:
+       dh_auto_test -a -B$(BUILDIR_STATIC)
+       dh_auto_test -a -B$(BUILDIR_SHARED)
+
+override_dh_auto_install-indep:
+
+override_dh_auto_install-arch:
+       dh_auto_install -a -B$(BUILDIR_STATIC)
+       dh_auto_install -a -B$(BUILDIR_SHARED)
+
+UPS_VERSION := $(firstword $(subst +, ,$(DEB_VERSION)))
+DEB_DH_INSTALL_INDEP_DOCDIR := $(CURDIR)/debian/libigraph-doc/usr/share/doc/libigraph-dev
+DEB_DH_INSTALL_INDEP_EXAMPLESDIR := $(DEB_DH_INSTALL_INDEP_DOCDIR)/examples
+override_dh_install-indep:
+       dh_install -i
+       cp -vp -t $(DEB_DH_INSTALL_INDEP_EXAMPLESDIR)/simple $(CURDIR)/tests/unit/test_utilities.inc
+       find $(DEB_DH_INSTALL_INDEP_EXAMPLESDIR)/simple -name '*.c'   -exec sed -i 's|../../tests/unit/test_utilities.inc|test_utilities.inc|' \{\} \;
+       find $(DEB_DH_INSTALL_INDEP_EXAMPLESDIR)/simple -name '*.out' -exec sed -i 's|@VERSION@|$(UPS_VERSION)|' \{\} \;
+
+override_dh_installchangelogs:
+       dh_installchangelogs --keep CHANGELOG.md
+
+override_dh_compress-indep:
+       dh_compress -X/examples/
+
+override_dh_missing:
+       dh_missing -X.la
+
+override_dh_auto_clean:
+       dh_auto_clean
+       rm -rf $(BUILDIR_SHARED) $(BUILDIR_STATIC)
diff --git a/salsa-ci.yml b/salsa-ci.yml
new file mode 100644 (file)
index 0000000..33c3a64
--- /dev/null
@@ -0,0 +1,4 @@
+---
+include:
+  - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/salsa-ci.yml
+  - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/pipeline-jobs.yml
diff --git a/source/format b/source/format
new file mode 100644 (file)
index 0000000..163aaf8
--- /dev/null
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/source/lintian-overrides b/source/lintian-overrides
new file mode 100644 (file)
index 0000000..602ab0c
--- /dev/null
@@ -0,0 +1,2 @@
+# The upstream source ball is downloaded from its GitHub repository
+debian-watch-does-not-check-gpg-signature
diff --git a/tests/check b/tests/check
new file mode 100755 (executable)
index 0000000..097920e
--- /dev/null
@@ -0,0 +1,16 @@
+#!/bin/sh
+set -ue
+testsuitename="${1:-simple}"
+
+examplesdir=/usr/share/doc/libigraph-dev/examples
+testfolder=$examplesdir/$testsuitename
+
+test -d $testfolder
+
+cp -prL $testfolder $AUTOPKGTEST_TMP
+
+cd $AUTOPKGTEST_TMP/$testsuitename
+
+make -k check
+
+exit 0
diff --git a/tests/control b/tests/control
new file mode 100644 (file)
index 0000000..82f2c93
--- /dev/null
@@ -0,0 +1,8 @@
+Test-Command: debian/tests/check simple
+Depends: libigraph-dev, libsuitesparse-dev, libigraph-doc, build-essential, pkg-config
+
+Test-Command: debian/tests/check tutorial
+Depends: libigraph-dev, libigraph-doc, build-essential, pkg-config
+
+Test-Command: debian/tests/check benchmarks
+Depends: libigraph-dev, libplfit-dev, libigraph-doc, build-essential, pkg-config
diff --git a/upstream/metadata b/upstream/metadata
new file mode 100644 (file)
index 0000000..55680f0
--- /dev/null
@@ -0,0 +1,4 @@
+Bug-Database: https://github.com/igraph/igraph/issues
+Bug-Submit: https://github.com/igraph/igraph/issues/new
+Repository: https://github.com/igraph/igraph.git
+Repository-Browse: https://github.com/igraph/igraph
diff --git a/watch b/watch
new file mode 100644 (file)
index 0000000..f1dc7c4
--- /dev/null
+++ b/watch
@@ -0,0 +1,7 @@
+version=4
+opts="repacksuffix=+ds,dversionmangle=s/\+ds[\d]?//,repack,compression=xz" \
+       https://github.com/igraph/igraph/releases .*/igraph-(\d[\d.-]+)\.tar\.gz
+
+# see https://github.com/igraph/igraph/issues/1377#issuecomment-620620166
+#  https://github.com/igraph/igraph/releases .*/(\d[\d.-]+)\.tar\.gz
+#  https://igraph.org/c/#downloads .*/releases/download/.*/igraph-(\d[\d.-]+)\.tar\.gz