igraph (0.10.15+ds-3) unstable; urgency=medium
authorJerome Benoit <calculus@rezozer.net>
Sun, 9 Mar 2025 16:12:59 +0000 (16:12 +0000)
committerJerome Benoit <calculus@rezozer.net>
Sun, 9 Mar 2025 16:12:59 +0000 (16:12 +0000)
  * Debianization:
    - d/rules:
      - override_dh_auto_build-indep target, now globally rename
        `igraph-docs.info` to `igraph.info` (thanks to Aymeric
        Agon-Rambosson <aymeric.agon@yandex.com> for pointing out
        the issue);
    - d/control:
      - Standards-Version, dump to 4.7.2 (no change);

[dgit import unpatched igraph 0.10.15+ds-3]

29 files changed:
1  2 
debian/adhoc/examples/benchmarks/Makefile
debian/adhoc/examples/simple/Makefile
debian/adhoc/examples/tutorial/Makefile
debian/changelog
debian/control
debian/copyright
debian/libigraph-dev.install
debian/libigraph-dev.manpages
debian/libigraph-doc.doc-base
debian/libigraph-doc.docs
debian/libigraph-doc.info
debian/libigraph-doc.install
debian/libigraph3t64.install
debian/libigraph3t64.lintian-overrides
debian/libigraph3t64.symbols
debian/patches/debianization-doc-local_fonts.patch
debian/patches/debianization.patch
debian/patches/series
debian/patches/upstream-external-plfit.patch
debian/patches/upstream-fix-lintian-spelling_error-silence.patch
debian/patches/upstream-fix-multiarch-file_conflict.patch
debian/rules
debian/salsa-ci.yml
debian/source/format
debian/source/lintian-overrides
debian/tests/check
debian/tests/control
debian/upstream/metadata
debian/watch

index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..9e00e522478f5f5edb039c1cf96f52974a12405d
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,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-2025 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:
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..676bfc12ba4b73ad4c2d19b6a41bf7feb0f0972a
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,98 @@@
++# /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-2025 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 : %
++      @echo "===8><--- $* ---"
++      ( set -o pipefail ; ./$< | tee $@ )
++      @echo "----------><8==="
++      @echo
++
++%.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 : %.xres %.out
++      @echo "===8><--- $* ---"
++      diff -N $^ | tee $@
++      @echo "----------><8==="
++      @echo
++
++%.out : %
++#### do nothing
++
++.PRECIOUS: %.res %.xres
++
++.NOTPARALLEL:
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..f578c59458171476169fe733d67cfec5958c8da5
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,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-2025 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:
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..55e9dfddd9ae1ec83f863de9c0e00bb4eae76aa0
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,720 @@@
++igraph (0.10.15+ds-3) unstable; urgency=medium
++
++  * Debianization:
++    - d/rules:
++      - override_dh_auto_build-indep target, now globally rename
++        `igraph-docs.info` to `igraph.info` (thanks to Aymeric
++        Agon-Rambosson <aymeric.agon@yandex.com> for pointing out
++        the issue);
++    - d/control:
++      - Standards-Version, dump to 4.7.2 (no change);
++
++ -- Jerome Benoit <calculus@rezozer.net>  Sun, 09 Mar 2025 16:12:59 +0000
++
++igraph (0.10.15+ds-2) unstable; urgency=medium
++
++  * Debianization:
++    - d/rules:
++      - DEB_BUILD_OPTIONS, disable LTO build (Closes: #1092834);
++    - d/adhoc/examples/simple/Makefile, hardden (thanks to Matthias
++      Klose <matthias.klose@canonical.com> for reporting the issue);
++    - various minor janitorial changes.
++
++ -- Jerome Benoit <calculus@rezozer.net>  Sat, 18 Jan 2025 23:34:52 +0000
++
++igraph (0.10.15+ds-1) unstable; urgency=medium
++
++  * New upstream micro version.
++  * Debianization:
++    - d/libigraph3t64.symbols, update;
++    - d/patches/*:
++      - d/p/upstream-silence-tests-benchmarks-*.patch, integrated;
++    - d/control:
++      - Standards-Version, dump to 4.7.0 (no change);
++    - d/libigraph-doc.docs, refresh;
++
++ -- Jerome Benoit <calculus@rezozer.net>  Sun, 10 Nov 2024 04:24:30 +0000
++
++igraph (0.10.13+ds-2) unstable; urgency=medium
++
++  * Debianization:
++    - d/patches/*:
++      - -d/p/upstream-fix-multiarch-file_conflict.patch, correct
++         (thanks to Szabolcs Horvat <szhorvat@gmail.com> for the correction).
++
++ -- Jerome Benoit <calculus@rezozer.net>  Mon, 15 Jul 2024 21:11:34 +0000
++
++igraph (0.10.13+ds-1) unstable; urgency=medium
++
++  * New upstream micro version.
++  * Debianization:
++    - d/libigraph3t64.symbols, update;
++    - d/patches/*:
++      - d/p/upstream-silence-tests-benchmarks-{format_truncation,
++        unused_but_set_variable}.patch, introduce;
++    - various minor janitorial changes.
++
++ -- Jerome Benoit <calculus@rezozer.net>  Fri, 28 Jun 2024 20:51:42 +0000
++
++igraph (0.10.12+ds-1) unstable; urgency=medium
++
++  * New upstream micro version.
++  * Debianization:
++    - d/libigraph3t64.symbols, update.
++
++ -- Jerome Benoit <calculus@rezozer.net>  Thu, 09 May 2024 18:27:31 +0000
++
++igraph (0.10.11+ds-1) unstable; urgency=medium
++
++  * New upstream micro version.
++  * Debianization:
++    - d/libigraph3t64.symbols, update;
++    - d/libigraph-doc.docs, add CONTRIBUTORS.txt.
++
++ -- Jerome Benoit <calculus@rezozer.net>  Wed, 03 Apr 2024 10:29:04 +0000
++
++igraph (0.10.10+ds-1.1) unstable; urgency=medium
++
++  * Non-maintainer upload.
++  * Rename libraries for 64-bit time_t transition.  Closes: #1062443
++
++ -- Lukas Märdian <slyon@debian.org>  Wed, 28 Feb 2024 10:59:17 +0000
++
++igraph (0.10.10+ds-1) unstable; urgency=medium
++
++  [ Aymeric Agon-Rambosson ]
++  * Update file references inside info file to match rename
++
++  [ Andreas Tille ]
++  * New upstream version
++  * Update symbols file
++
++ -- Andreas Tille <tille@debian.org>  Tue, 13 Feb 2024 20:11:19 +0100
++
++igraph (0.10.9+ds-2) unstable; urgency=medium
++
++  * FTBFS fix release, igraph_hrg test not fully tested by upstream.
++  * Debianization:
++    - d/patches/*:
++      - d/p/debianization-tests-igraph_hrg-freeze.patch, introduce
++        (Closes: #1063607).
++
++ -- Jerome Benoit <calculus@rezozer.net>  Sat, 10 Feb 2024 21:40:27 +0000
++
++igraph (0.10.9+ds-1) unstable; urgency=medium
++
++  * New upstream micro version.
++  * Debianization:
++    - d/libigraph3.symbols, update;
++    - info document, reintroduce;
++    - various janitorial changes.
++
++ -- Jerome Benoit <calculus@rezozer.net>  Sun, 04 Feb 2024 23:18:34 +0000
++
++igraph (0.10.8+ds-2) unstable; urgency=medium
++
++  * As per https://github.com/igraph/igraph/issues/2450 we ignore random
++    failures on mips64el
++    Closes: #970497
++  * No tab in license text (routine-update)
++
++ -- Andreas Tille <tille@debian.org>  Mon, 11 Dec 2023 13:21:53 +0100
++
++igraph (0.10.8+ds-1) unstable; urgency=medium
++
++  * New upstream micro version.
++  * Debianization:
++    - d/libigraph3.symbols, update.
++
++ -- Jerome Benoit <calculus@rezozer.net>  Sat, 18 Nov 2023 12:01:59 +0000
++
++igraph (0.10.7+ds-1) unstable; urgency=medium
++
++  * New upstream micro version.
++  * Debianization:
++    - d/libigraph3.symbols, update.
++
++ -- Jerome Benoit <calculus@rezozer.net>  Fri, 08 Sep 2023 19:55:48 +0000
++
++igraph (0.10.6+ds-1) unstable; urgency=medium
++
++  * New upstream micro version.
++  * Debianization:
++    - d/patches/*:
++      - d/p/upstream-fix-multiarch-file_conflict.patch, introduce;
++    - d/libigraph-dev.install, fix multiarch issue (see previous patch);
++    - d/libigraph3.symbols, update.
++
++ -- Jerome Benoit <calculus@rezozer.net>  Sat, 15 Jul 2023 15:31:02 +0000
++
++igraph (0.10.4+ds-2) unstable; urgency=medium
++
++  * Upload to unstable.
++
++ -- Jerome Benoit <calculus@rezozer.net>  Sat, 01 Jul 2023 21:46:28 +0000
++
++igraph (0.10.4+ds-1) experimental; urgency=medium
++
++  * New upstream micro version.
++  * Debianization:
++    - d/p/patches/*:
++      - d/p/upstream-fixed-benchmarks-ig_distances-RNG-explicit_order.patch,
++        obsoleted;
++    - d/control:
++      - Standards-Version, dump to 4.6.2 (no change);
++    - d/libigraph3.symbols, update;
++    - d/rules:
++      - override_dh_auto_test-arch target, build test executables
++        before calling dh_auto_test (see #924052);
++    - various janitorial changes.
++
++ -- Jerome Benoit <calculus@rezozer.net>  Tue, 28 Mar 2023 11:49:42 +0000
++
++igraph (0.10.2+ds-2) unstable; urgency=medium
++
++  * Upload to unstable.
++  * Debianization:
++    - migrate from pkg-config to pkgconf, affect d/{,t/}/control;
++    - libigraph-dev Depends now on libxml2-dev;
++    - d/p//upstream-fixed-benchmarks-ig_distances-RNG-explicit_order.patch,
++      import from upstream.
++
++ -- Jerome Benoit <calculus@rezozer.net>  Sun, 20 Nov 2022 13:28:36 +0000
++
++igraph (0.10.2+ds-1) experimental; urgency=medium
++
++  * New upstream nano version.
++  * Debianization:
++    - d/watch, now use GitHub API to avoid breaking change from GitHub web UI
++      (see https://lists.debian.org/debian-devel/2022/09/msg00229.html);
++    - d/libigraph3.symbols, update.
++
++ -- Jerome Benoit <calculus@rezozer.net>  Sat, 29 Oct 2022 14:23:46 +0000
++
++igraph (0.10.1+ds-1) experimental; urgency=medium
++
++  * New upstream minor (official release) version with breaking changes.
++  * Debianization:
++    - d/patches/*:
++      - d/p/upstream-fix-*.patch, integrated;
++    - d/libigraph3.symbols, update;
++    - d/s/lintian-overrides, update.
++
++ -- Jerome Benoit <calculus@rezozer.net>  Sat, 10 Sep 2022 17:14:25 +0000
++
++igraph (0.10.0~rc2+ds-1) experimental; urgency=medium
++
++  * New upstream minor (release candidate 2) version with breaking changes.
++  * Debianization:
++    - d/patches/*:
++      - d/p/upstream-{fix-examples-nonewlineatendofoutfile,
++          enhancement-examples-stdwar, source-lintian-spelling,
++          fix-doc-cmake, missing-tools}.patch, integrated;
++      - d/p/upstream-fix-{balling_manoeuver_issue,
++         examples-simple-safelocale-typo}.patch, introduce.
++
++ -- Jerome Benoit <calculus@rezozer.net>  Wed, 17 Aug 2022 18:26:52 +0000
++
++igraph (0.10.0~rc1+ds-2) experimental; urgency=medium
++
++  * Debianization:
++    - d/patches/*:
++      - d/p/debianization-external-plfit-neutralize-future_code.patch,
++        obsoleted;
++    - d/control:
++      - Build-Depends field, cleanup.
++
++ -- Jerome Benoit <calculus@rezozer.net>  Wed, 10 Aug 2022 13:17:49 +0000
++
++igraph (0.10.0~rc1+ds-1) experimental; urgency=medium
++
++  * New upstream minor (release candidate) version with breaking changes.
++  * Debianization:
++    - SONAME, bump from 2 to 3;
++    - d/watch, adapt;
++    - d/copyright:
++      - Files-Excluded, keep the now tainted vendor/cs material;
++      - copyright entries, adapt;
++    - d/patches/*:
++      - d/p/upstream-{fix-examples-nonewlineatendofoutfile,
++          enhancement-examples-stdwar, source-lintian-spelling,
++          fix-doc-cmake, missing-tools}.patch, introduce;
++      - d/p/debianization-suitesparse-header_folder.patch, obsoleted;
++      - d/p/debianization.patch, refresh;
++      - d/p/debianization-external-plfit-neutralize-future_code, introduce;
++    - tests/control:
++      - simple check, operate now in a locales-all environment;
++    - d/rules, refresh.
++
++ -- Jerome Benoit <calculus@rezozer.net>  Sun, 07 Aug 2022 14:52:48 +0000
++
++igraph (0.9.10+ds-2) unstable; urgency=medium
++
++  * Debianization:
++    - d/watch, now use GitHub API to avoid breaking change from GitHub web UI
++      (see https://lists.debian.org/debian-devel/2022/09/msg00229.html).
++
++ -- Jerome Benoit <calculus@rezozer.net>  Sat, 29 Oct 2022 13:15:30 +0000
++
++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 --cc debian/control
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..445a0f96facc94604c39bd9fc8099be4bf98d0e8
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,96 @@@
++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: dpkg-dev (>= 1.22.5), debhelper-compat (= 13),
++               cmake,
++               d-shlibs,
++               bison,
++               flex,
++               libxml2-dev,
++               libplfit-dev,
++               libgmp-dev,
++               libarpack2-dev,
++               libblas-dev,
++               liblapack-dev,
++               libglpk-dev,
++               libf2c2-dev,
++               liblzma-dev
++Build-Depends-Indep: python3,
++                     xmlto,
++                     source-highlight,
++                     fop,
++                     fonts-font-awesome,
++                     libxml2-utils,
++                     docbook2x,
++                     texinfo
++Standards-Version: 4.7.2
++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: libigraph3t64
++Provides: ${t64:Provides}
++Replaces: libigraph3
++Breaks: libigraph3 (<< ${source:Version})
++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: libigraph3t64 (= ${binary:Version}),
++         libxml2-dev,
++         ${devlibs:Depends},
++         ${misc:Depends}
++Suggests: libigraph-doc,
++          pkgconf
++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.
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..e5bf42a022c7deeb6a2f298adbd831dd7581a444
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,364 @@@
++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
++ src/f2c.h
++ doc/html/*.html
++ doc/html/stamp
++
++Files: *
++Copyright:
++ 2005-2025 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:
++ vendor/pcg/*.h
++ vendor/pcg/*.c
++Copyright: 2014-2019 Melissa O'Neill <oneill@pcg-random.org>
++License: Apache-2.0 or MIT
++
++Files:
++        vendor/cs/cs.h
++        vendor/cs/*.c
++Copyright: 2006 Timothy A. Davis <http://www.suitesparse.com>
++License: LGPL-2.1+
++Comment:
++ Original material modified by the igraph development team
++ as outlined in the header of the C header `cs.h'.
++
++Files: src/games/degree_sequence_vl/*
++Copyright: 2006 Fabien Viger
++License: GPL-2+
++
++Files:
++ src/isomorphism/bliss/*.hh
++ src/isomorphism/bliss/*.cc
++Copyright: 2003-2025 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/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/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-2025 The DUNE development team
++License: GPL-2
++Comment:
++ Retrieved from https://github.com/dune-project/dune-istl/
++
++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-2025 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-2025 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-2.1+
++ This program is free software; you can redistribute it and/or modify
++ it under the terms of the GNU Lesser General Public License as published by
++ the Free Software Foundation; either version 2.1, or (at your option)
++ any later version.
++ .
++ This program is distributed in the hope that it will be useful,
++ but WITHOUT ANY WARRANTY; without even the implied warranty of
++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++ GNU Lesser General Public License for more details.
++ .
++ You should have received a copy of the GNU Lesser General Public License along
++ with this program; if not, write to the Free Software Foundation,
++ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
++ .
++ On Debian systems, the complete text of the GNU Lesser General Public
++ License version 2.1 can be found in `/usr/share/common-licenses/LGPL-2.1'.
++
++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"
++
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..13647cd900974cedc716afa030fc6cab868e4e2a
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,6 @@@
++usr/lib/*/libigraph.so
++usr/lib/*/libigraph.a
++usr/lib/*/pkgconfig/*.pc
++usr/lib/*/cmake/igraph
++usr/include/*/igraph/*.h
++usr/include/igraph/*.h
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..8d4d4a4ef92f54d4dc660dc87462480789af9b7d
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,1 @@@
++doc/igraph.3
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..ad2bfec39c6f194f0f8a2548a6e02232c0beedbe
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,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
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..7332f4322cacd66c70c153e1f2eddddf8f36a25f
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,8 @@@
++AUTHORS
++ACKNOWLEDGEMENTS.md
++CONTRIBUTING.md
++CONTRIBUTORS.txt
++NEWS
++ONEWS
++README.md
++SUPPORT.md
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..9118566d4d7c03e2c6203bac13756c2d490eb387
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,1 @@@
++_BUILD_SHARED/doc/igraph.info
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..19209be0b29e768b32c90b05c8f3b4fcbe1cde23
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,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
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..2a892c185b8992b03587057b6774cd99807dd9b2
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,1 @@@
++usr/lib/*/libigraph.so.*
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..e204a9555aa5bd60b072e0e17449aed6df90e58a
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,1 @@@
++libigraph3t64: package-name-doesnt-match-sonames libigraph3
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..9281a12e6b6d7c17275279471a05a8cd253208b8
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,2290 @@@
++libigraph.so.3 libigraph3t64 #MINVER#
++* Build-Depends-Package: libigraph-dev
++ IGRAPH_FINALLY_CLEAN@Base 0.10.0
++ IGRAPH_FINALLY_ENTER@Base 0.10.0
++ IGRAPH_FINALLY_EXIT@Base 0.10.0
++ IGRAPH_FINALLY_FREE@Base 0.10.0
++ IGRAPH_FINALLY_REAL@Base 0.10.0
++ IGRAPH_FINALLY_STACK_SIZE@Base 0.10.0
++ igraph_2wheap_check@Base 0.10.0
++ igraph_2wheap_clear@Base 0.10.0
++ igraph_2wheap_deactivate_max@Base 0.10.0
++ igraph_2wheap_delete_max@Base 0.10.0
++ igraph_2wheap_delete_max_index@Base 0.10.0
++ igraph_2wheap_destroy@Base 0.10.0
++ igraph_2wheap_empty@Base 0.10.0
++ igraph_2wheap_get@Base 0.10.0
++ igraph_2wheap_has_active@Base 0.10.0
++ igraph_2wheap_has_elem@Base 0.10.0
++ igraph_2wheap_init@Base 0.10.0
++ igraph_2wheap_max@Base 0.10.0
++ igraph_2wheap_max_index@Base 0.10.0
++ igraph_2wheap_max_size@Base 0.10.0
++ igraph_2wheap_modify@Base 0.10.0
++ igraph_2wheap_push_with_index@Base 0.10.0
++ igraph_2wheap_size@Base 0.10.0
++ igraph_add_edge@Base 0.10.0
++ igraph_add_edges@Base 0.10.0
++ igraph_add_vertices@Base 0.10.0
++ igraph_adhesion@Base 0.10.0
++ igraph_adjacency@Base 0.10.0
++ igraph_adjacency_spectral_embedding@Base 0.10.0
++ igraph_adjacent_triangles@Base 0.10.0
++ igraph_adjlist@Base 0.10.0
++ igraph_adjlist_clear@Base 0.10.0
++ igraph_adjlist_destroy@Base 0.10.0
++ igraph_adjlist_fprint@Base 0.10.0
++ igraph_adjlist_has_edge@Base 0.10.0
++ igraph_adjlist_init@Base 0.10.0
++ igraph_adjlist_init_complementer@Base 0.10.0
++ igraph_adjlist_init_empty@Base 0.10.0
++ igraph_adjlist_init_from_inclist@Base 0.10.0
++ igraph_adjlist_print@Base 0.10.0
++ igraph_adjlist_replace_edge@Base 0.10.0
++ igraph_adjlist_simplify@Base 0.10.0
++ igraph_adjlist_size@Base 0.10.0
++ igraph_adjlist_sort@Base 0.10.0
++ igraph_all_minimal_st_separators@Base 0.10.0
++ igraph_all_st_cuts@Base 0.10.0
++ igraph_all_st_mincuts@Base 0.10.0
++ igraph_allow_interruption@Base 0.10.0
++ igraph_almost_equals@Base 0.10.0
++ igraph_are_adjacent@Base 0.10.10
++ igraph_are_connected@Base 0.10.0
++ igraph_arpack_options_get_default@Base 0.10.0
++ igraph_arpack_options_init@Base 0.10.0
++ igraph_arpack_rnsolve@Base 0.10.0
++ igraph_arpack_rssolve@Base 0.10.0
++ igraph_arpack_storage_destroy@Base 0.10.0
++ igraph_arpack_storage_init@Base 0.10.0
++ igraph_arpack_unpack_complex@Base 0.10.0
++ igraph_array3_bool_destroy@Base 0.10.0
++ igraph_array3_bool_fill@Base 0.10.0
++ igraph_array3_bool_init@Base 0.10.0
++ igraph_array3_bool_n@Base 0.10.0
++ igraph_array3_bool_null@Base 0.10.0
++ igraph_array3_bool_resize@Base 0.10.0
++ igraph_array3_bool_scale@Base 0.10.0
++ igraph_array3_bool_size@Base 0.10.0
++ igraph_array3_bool_sum@Base 0.10.0
++ igraph_array3_bool_update@Base 0.10.0
++ igraph_array3_char_destroy@Base 0.10.0
++ igraph_array3_char_fill@Base 0.10.0
++ igraph_array3_char_init@Base 0.10.0
++ igraph_array3_char_n@Base 0.10.0
++ igraph_array3_char_null@Base 0.10.0
++ igraph_array3_char_resize@Base 0.10.0
++ igraph_array3_char_scale@Base 0.10.0
++ igraph_array3_char_size@Base 0.10.0
++ igraph_array3_char_sum@Base 0.10.0
++ igraph_array3_char_update@Base 0.10.0
++ igraph_array3_destroy@Base 0.10.0
++ igraph_array3_fill@Base 0.10.0
++ igraph_array3_init@Base 0.10.0
++ igraph_array3_int_destroy@Base 0.10.0
++ igraph_array3_int_fill@Base 0.10.0
++ igraph_array3_int_init@Base 0.10.0
++ igraph_array3_int_n@Base 0.10.0
++ igraph_array3_int_null@Base 0.10.0
++ igraph_array3_int_resize@Base 0.10.0
++ igraph_array3_int_scale@Base 0.10.0
++ igraph_array3_int_size@Base 0.10.0
++ igraph_array3_int_sum@Base 0.10.0
++ igraph_array3_int_update@Base 0.10.0
++ igraph_array3_n@Base 0.10.0
++ igraph_array3_null@Base 0.10.0
++ igraph_array3_resize@Base 0.10.0
++ igraph_array3_scale@Base 0.10.0
++ igraph_array3_size@Base 0.10.0
++ igraph_array3_sum@Base 0.10.0
++ igraph_array3_update@Base 0.10.0
++ igraph_articulation_points@Base 0.10.0
++ igraph_assortativity@Base 0.10.0
++ igraph_assortativity_degree@Base 0.10.0
++ igraph_assortativity_nominal@Base 0.10.0
++ igraph_asymmetric_preference_game@Base 0.10.0
++ igraph_atlas@Base 0.10.0
++ igraph_attribute_combination@Base 0.10.0
++ igraph_attribute_combination_add@Base 0.10.0
++ igraph_attribute_combination_destroy@Base 0.10.0
++ igraph_attribute_combination_init@Base 0.10.0
++ igraph_attribute_combination_query@Base 0.10.0
++ igraph_attribute_combination_remove@Base 0.10.0
++ igraph_authority_score@Base 0.10.0
++ igraph_automorphism_group@Base 0.10.0
++ igraph_automorphisms@Base 0.10.0
++ igraph_average_local_efficiency@Base 0.10.0
++ igraph_average_path_length@Base 0.10.0
++ igraph_average_path_length_dijkstra@Base 0.10.0
++ igraph_avg_nearest_neighbor_degree@Base 0.10.0
++ igraph_barabasi_aging_game@Base 0.10.0
++ igraph_barabasi_game@Base 0.10.0
++ igraph_betweenness@Base 0.10.0
++ igraph_betweenness_cutoff@Base 0.10.0
++ igraph_betweenness_subset@Base 0.10.0
++ igraph_bfs@Base 0.10.0
++ igraph_bfs_simple@Base 0.10.0
++ igraph_biadjacency@Base 0.10.6
++ igraph_bibcoupling@Base 0.10.0
++ igraph_biconnected_components@Base 0.10.0
++ igraph_bipartite_game@Base 0.10.0
++ igraph_bipartite_game_gnm@Base 0.10.0
++ igraph_bipartite_game_gnp@Base 0.10.0
++ igraph_bipartite_projection@Base 0.10.0
++ igraph_bipartite_projection_size@Base 0.10.0
++ igraph_bitset_and@Base 0.10.12
++ igraph_bitset_capacity@Base 0.10.12
++ igraph_bitset_countl_one@Base 0.10.12
++ igraph_bitset_countl_zero@Base 0.10.12
++ igraph_bitset_countr_one@Base 0.10.12
++ igraph_bitset_countr_zero@Base 0.10.12
++ igraph_bitset_destroy@Base 0.10.12
++ igraph_bitset_fill@Base 0.10.13
++ igraph_bitset_fprint@Base 0.10.12
++ igraph_bitset_init@Base 0.10.12
++ igraph_bitset_init_copy@Base 0.10.12
++ igraph_bitset_is_all_one@Base 0.10.13
++ igraph_bitset_is_all_zero@Base 0.10.13
++ igraph_bitset_is_any_one@Base 0.10.13
++ igraph_bitset_is_any_zero@Base 0.10.13
++ igraph_bitset_list_capacity@Base 0.10.12
++ igraph_bitset_list_clear@Base 0.10.12
++ igraph_bitset_list_destroy@Base 0.10.12
++ igraph_bitset_list_discard@Base 0.10.12
++ igraph_bitset_list_discard_back@Base 0.10.12
++ igraph_bitset_list_discard_fast@Base 0.10.12
++ igraph_bitset_list_empty@Base 0.10.12
++ igraph_bitset_list_get_ptr@Base 0.10.12
++ igraph_bitset_list_init@Base 0.10.12
++ igraph_bitset_list_insert@Base 0.10.12
++ igraph_bitset_list_insert_copy@Base 0.10.12
++ igraph_bitset_list_insert_new@Base 0.10.12
++ igraph_bitset_list_permute@Base 0.10.12
++ igraph_bitset_list_pop_back@Base 0.10.12
++ igraph_bitset_list_push_back@Base 0.10.12
++ igraph_bitset_list_push_back_copy@Base 0.10.12
++ igraph_bitset_list_push_back_new@Base 0.10.12
++ igraph_bitset_list_remove@Base 0.10.12
++ igraph_bitset_list_remove_consecutive_duplicates@Base 0.10.12
++ igraph_bitset_list_remove_fast@Base 0.10.12
++ igraph_bitset_list_replace@Base 0.10.12
++ igraph_bitset_list_reserve@Base 0.10.12
++ igraph_bitset_list_resize@Base 0.10.12
++ igraph_bitset_list_reverse@Base 0.10.12
++ igraph_bitset_list_set@Base 0.10.12
++ igraph_bitset_list_size@Base 0.10.12
++ igraph_bitset_list_sort@Base 0.10.12
++ igraph_bitset_list_sort_ind@Base 0.10.12
++ igraph_bitset_list_swap@Base 0.10.12
++ igraph_bitset_list_swap_elements@Base 0.10.12
++ igraph_bitset_list_tail_ptr@Base 0.10.12
++ igraph_bitset_not@Base 0.10.12
++ igraph_bitset_null@Base 0.10.13
++ igraph_bitset_or@Base 0.10.12
++ igraph_bitset_popcount@Base 0.10.12
++ igraph_bitset_print@Base 0.10.12
++ igraph_bitset_reserve@Base 0.10.12
++ igraph_bitset_resize@Base 0.10.12
++ igraph_bitset_size@Base 0.10.12
++ igraph_bitset_update@Base 0.10.15
++ igraph_bitset_xor@Base 0.10.12
++ igraph_blas_ddot@Base 0.10.0
++ igraph_blas_dgemm@Base 0.10.0
++ igraph_blas_dgemv@Base 0.10.0
++ igraph_blas_dgemv_array@Base 0.10.0
++ igraph_blas_dnrm2@Base 0.10.0
++ igraph_bridges@Base 0.10.0
++ igraph_callaway_traits_game@Base 0.10.0
++ igraph_calloc@Base 0.10.0
++ igraph_canonical_permutation@Base 0.10.0
++ igraph_cattribute_EAB@Base 0.10.0
++ igraph_cattribute_EABV@Base 0.10.0
++ igraph_cattribute_EAB_set@Base 0.10.0
++ igraph_cattribute_EAB_setv@Base 0.10.0
++ igraph_cattribute_EAN@Base 0.10.0
++ igraph_cattribute_EANV@Base 0.10.0
++ igraph_cattribute_EAN_set@Base 0.10.0
++ igraph_cattribute_EAN_setv@Base 0.10.0
++ igraph_cattribute_EAS@Base 0.10.0
++ igraph_cattribute_EASV@Base 0.10.0
++ igraph_cattribute_EAS_set@Base 0.10.0
++ igraph_cattribute_EAS_setv@Base 0.10.0
++ igraph_cattribute_GAB@Base 0.10.0
++ igraph_cattribute_GAB_set@Base 0.10.0
++ igraph_cattribute_GAN@Base 0.10.0
++ igraph_cattribute_GAN_set@Base 0.10.0
++ igraph_cattribute_GAS@Base 0.10.0
++ igraph_cattribute_GAS_set@Base 0.10.0
++ igraph_cattribute_VAB@Base 0.10.0
++ igraph_cattribute_VABV@Base 0.10.0
++ igraph_cattribute_VAB_set@Base 0.10.0
++ igraph_cattribute_VAB_setv@Base 0.10.0
++ igraph_cattribute_VAN@Base 0.10.0
++ igraph_cattribute_VANV@Base 0.10.0
++ igraph_cattribute_VAN_set@Base 0.10.0
++ igraph_cattribute_VAN_setv@Base 0.10.0
++ igraph_cattribute_VAS@Base 0.10.0
++ igraph_cattribute_VASV@Base 0.10.0
++ igraph_cattribute_VAS_set@Base 0.10.0
++ igraph_cattribute_VAS_setv@Base 0.10.0
++ igraph_cattribute_has_attr@Base 0.10.0
++ igraph_cattribute_list@Base 0.10.0
++ igraph_cattribute_remove_all@Base 0.10.0
++ igraph_cattribute_remove_e@Base 0.10.0
++ igraph_cattribute_remove_g@Base 0.10.0
++ igraph_cattribute_remove_v@Base 0.10.0
++ igraph_cattribute_table@Base 0.10.0
++ igraph_centralization@Base 0.10.0
++ igraph_centralization_betweenness@Base 0.10.0
++ igraph_centralization_betweenness_tmax@Base 0.10.0
++ igraph_centralization_closeness@Base 0.10.0
++ igraph_centralization_closeness_tmax@Base 0.10.0
++ igraph_centralization_degree@Base 0.10.0
++ igraph_centralization_degree_tmax@Base 0.10.0
++ igraph_centralization_eigenvector_centrality@Base 0.10.0
++ igraph_centralization_eigenvector_centrality_tmax@Base 0.10.0
++ igraph_chung_lu_game@Base 0.10.13
++ igraph_circulant@Base 0.10.0
++ igraph_cited_type_game@Base 0.10.0
++ igraph_citing_cited_type_game@Base 0.10.0
++ igraph_clique_number@Base 0.10.0
++ igraph_clique_size_hist@Base 0.10.0
++ igraph_cliques@Base 0.10.0
++ igraph_cliques_callback@Base 0.10.0
++ igraph_closeness@Base 0.10.0
++ igraph_closeness_cutoff@Base 0.10.0
++ igraph_clusters@Base 0.10.0
++ igraph_cmp_epsilon@Base 0.10.0
++ igraph_cocitation@Base 0.10.0
++ igraph_cohesion@Base 0.10.0
++ igraph_cohesive_blocks@Base 0.10.0
++ igraph_community_eb_get_merges@Base 0.10.0
++ igraph_community_edge_betweenness@Base 0.10.0
++ igraph_community_fastgreedy@Base 0.10.0
++ igraph_community_fluid_communities@Base 0.10.0
++ igraph_community_infomap@Base 0.10.0
++ igraph_community_label_propagation@Base 0.10.0
++ igraph_community_leading_eigenvector@Base 0.10.0
++ igraph_community_leiden@Base 0.10.0
++ igraph_community_multilevel@Base 0.10.0
++ igraph_community_optimal_modularity@Base 0.10.0
++ igraph_community_spinglass@Base 0.10.0
++ igraph_community_spinglass_single@Base 0.10.0
++ igraph_community_to_membership@Base 0.10.0
++ igraph_community_voronoi@Base 0.10.6
++ igraph_community_walktrap@Base 0.10.0
++ igraph_compare_communities@Base 0.10.0
++ igraph_complementer@Base 0.10.0
++ igraph_complex@Base 0.10.0
++ igraph_complex_abs@Base 0.10.0
++ igraph_complex_add@Base 0.10.0
++ igraph_complex_add_imag@Base 0.10.0
++ igraph_complex_add_real@Base 0.10.0
++ igraph_complex_almost_equals@Base 0.10.0
++ igraph_complex_arg@Base 0.10.0
++ igraph_complex_conj@Base 0.10.0
++ igraph_complex_cos@Base 0.10.0
++ igraph_complex_cot@Base 0.10.0
++ igraph_complex_csc@Base 0.10.0
++ igraph_complex_div@Base 0.10.0
++ igraph_complex_div_imag@Base 0.10.0
++ igraph_complex_div_real@Base 0.10.0
++ igraph_complex_eq_tol@Base 0.10.0
++ igraph_complex_exp@Base 0.10.0
++ igraph_complex_fprintf@Base 0.10.0
++ igraph_complex_fprintf_aligned@Base 0.10.0
++ igraph_complex_inv@Base 0.10.0
++ igraph_complex_log10@Base 0.10.0
++ igraph_complex_log@Base 0.10.0
++ igraph_complex_log_b@Base 0.10.0
++ igraph_complex_logabs@Base 0.10.0
++ igraph_complex_mul@Base 0.10.0
++ igraph_complex_mul_imag@Base 0.10.0
++ igraph_complex_mul_real@Base 0.10.0
++ igraph_complex_neg@Base 0.10.0
++ igraph_complex_polar@Base 0.10.0
++ igraph_complex_pow@Base 0.10.0
++ igraph_complex_pow_real@Base 0.10.0
++ igraph_complex_printf@Base 0.10.0
++ igraph_complex_printf_aligned@Base 0.10.0
++ igraph_complex_sec@Base 0.10.0
++ igraph_complex_sin@Base 0.10.0
++ igraph_complex_snprintf@Base 0.10.0
++ igraph_complex_sqrt@Base 0.10.0
++ igraph_complex_sqrt_real@Base 0.10.0
++ igraph_complex_sub@Base 0.10.0
++ igraph_complex_sub_imag@Base 0.10.0
++ igraph_complex_sub_real@Base 0.10.0
++ igraph_complex_tan@Base 0.10.0
++ igraph_compose@Base 0.10.0
++ igraph_connect_neighborhood@Base 0.10.0
++ igraph_connected_components@Base 0.10.0
++ igraph_constraint@Base 0.10.0
++ igraph_contract_vertices@Base 0.10.0
++ igraph_convergence_degree@Base 0.10.0
++ igraph_convex_hull@Base 0.10.0
++ igraph_copy@Base 0.10.0
++ igraph_coreness@Base 0.10.0
++ igraph_correlated_game@Base 0.10.0
++ igraph_correlated_pair_game@Base 0.10.0
++ igraph_count_automorphisms@Base 0.10.6
++ igraph_count_isomorphisms_vf2@Base 0.10.0
++ igraph_count_loops@Base 0.10.13
++ igraph_count_multiple@Base 0.10.0
++ igraph_count_multiple_1@Base 0.10.2
++ igraph_count_reachable@Base 0.10.12
++ igraph_count_subisomorphisms_vf2@Base 0.10.0
++ igraph_create@Base 0.10.0
++ igraph_create_bipartite@Base 0.10.0
++ igraph_d_indheap_delete_max@Base 0.10.0
++ igraph_d_indheap_destroy@Base 0.10.0
++ igraph_d_indheap_empty@Base 0.10.0
++ igraph_d_indheap_init@Base 0.10.0
++ igraph_d_indheap_max@Base 0.10.0
++ igraph_d_indheap_max_index@Base 0.10.0
++ igraph_d_indheap_push@Base 0.10.0
++ igraph_d_indheap_reserve@Base 0.10.0
++ igraph_d_indheap_size@Base 0.10.0
++ igraph_de_bruijn@Base 0.10.0
++ igraph_decompose@Base 0.10.0
++ igraph_decompose_destroy@Base 0.10.0
++ igraph_degree@Base 0.10.0
++ igraph_degree_1@Base 0.10.2
++ igraph_degree_correlation_vector@Base 0.10.8
++ igraph_degree_sequence_game@Base 0.10.0
++ igraph_delete_edges@Base 0.10.0
++ igraph_delete_vertices@Base 0.10.0
++ igraph_delete_vertices_idx@Base 0.10.0
++ igraph_density@Base 0.10.0
++ igraph_destroy@Base 0.10.0
++ igraph_deterministic_optimal_imitation@Base 0.10.0
++ igraph_dfs@Base 0.10.0
++ igraph_diameter@Base 0.10.0
++ igraph_diameter_dijkstra@Base 0.10.0
++ igraph_difference@Base 0.10.0
++ igraph_dim_select@Base 0.10.0
++ igraph_disjoint_union@Base 0.10.0
++ igraph_disjoint_union_many@Base 0.10.0
++ igraph_distances@Base 0.10.0
++ igraph_distances_bellman_ford@Base 0.10.0
++ igraph_distances_cutoff@Base 0.10.2
++ igraph_distances_dijkstra@Base 0.10.0
++ igraph_distances_dijkstra_cutoff@Base 0.10.2
++ igraph_distances_floyd_warshall@Base 0.10.2
++ igraph_distances_johnson@Base 0.10.0
++ igraph_diversity@Base 0.10.0
++ igraph_dominator_tree@Base 0.10.0
++ igraph_dot_product_game@Base 0.10.0
++ igraph_dqueue_back@Base 0.10.0
++ igraph_dqueue_bool_back@Base 0.10.0
++ igraph_dqueue_bool_clear@Base 0.10.0
++ igraph_dqueue_bool_destroy@Base 0.10.0
++ igraph_dqueue_bool_e@Base 0.10.0
++ igraph_dqueue_bool_empty@Base 0.10.0
++ igraph_dqueue_bool_fprint@Base 0.10.0
++ igraph_dqueue_bool_full@Base 0.10.0
++ igraph_dqueue_bool_get@Base 0.10.2
++ igraph_dqueue_bool_head@Base 0.10.0
++ igraph_dqueue_bool_init@Base 0.10.0
++ igraph_dqueue_bool_pop@Base 0.10.0
++ igraph_dqueue_bool_pop_back@Base 0.10.0
++ igraph_dqueue_bool_print@Base 0.10.0
++ igraph_dqueue_bool_push@Base 0.10.0
++ igraph_dqueue_bool_size@Base 0.10.0
++ igraph_dqueue_char_back@Base 0.10.0
++ igraph_dqueue_char_clear@Base 0.10.0
++ igraph_dqueue_char_destroy@Base 0.10.0
++ igraph_dqueue_char_e@Base 0.10.0
++ igraph_dqueue_char_empty@Base 0.10.0
++ igraph_dqueue_char_fprint@Base 0.10.0
++ igraph_dqueue_char_full@Base 0.10.0
++ igraph_dqueue_char_get@Base 0.10.2
++ igraph_dqueue_char_head@Base 0.10.0
++ igraph_dqueue_char_init@Base 0.10.0
++ igraph_dqueue_char_pop@Base 0.10.0
++ igraph_dqueue_char_pop_back@Base 0.10.0
++ igraph_dqueue_char_print@Base 0.10.0
++ igraph_dqueue_char_push@Base 0.10.0
++ igraph_dqueue_char_size@Base 0.10.0
++ igraph_dqueue_clear@Base 0.10.0
++ igraph_dqueue_destroy@Base 0.10.0
++ igraph_dqueue_e@Base 0.10.0
++ igraph_dqueue_empty@Base 0.10.0
++ igraph_dqueue_fprint@Base 0.10.0
++ igraph_dqueue_full@Base 0.10.0
++ igraph_dqueue_get@Base 0.10.2
++ igraph_dqueue_head@Base 0.10.0
++ igraph_dqueue_init@Base 0.10.0
++ igraph_dqueue_int_back@Base 0.10.0
++ igraph_dqueue_int_clear@Base 0.10.0
++ igraph_dqueue_int_destroy@Base 0.10.0
++ igraph_dqueue_int_e@Base 0.10.0
++ igraph_dqueue_int_empty@Base 0.10.0
++ igraph_dqueue_int_fprint@Base 0.10.0
++ igraph_dqueue_int_full@Base 0.10.0
++ igraph_dqueue_int_get@Base 0.10.2
++ igraph_dqueue_int_head@Base 0.10.0
++ igraph_dqueue_int_init@Base 0.10.0
++ igraph_dqueue_int_pop@Base 0.10.0
++ igraph_dqueue_int_pop_back@Base 0.10.0
++ igraph_dqueue_int_print@Base 0.10.0
++ igraph_dqueue_int_push@Base 0.10.0
++ igraph_dqueue_int_size@Base 0.10.0
++ igraph_dqueue_pop@Base 0.10.0
++ igraph_dqueue_pop_back@Base 0.10.0
++ igraph_dqueue_print@Base 0.10.0
++ igraph_dqueue_push@Base 0.10.0
++ igraph_dqueue_size@Base 0.10.0
++ igraph_dyad_census@Base 0.10.0
++ igraph_ecc@Base 0.10.2
++ igraph_eccentricity@Base 0.10.0
++ igraph_eccentricity_dijkstra@Base 0.10.0
++ igraph_ecount@Base 0.10.0
++ igraph_edge@Base 0.10.0
++ igraph_edge_betweenness@Base 0.10.0
++ igraph_edge_betweenness_cutoff@Base 0.10.0
++ igraph_edge_betweenness_subset@Base 0.10.0
++ igraph_edge_connectivity@Base 0.10.0
++ igraph_edge_disjoint_paths@Base 0.10.0
++ igraph_edges@Base 0.10.0
++ igraph_eigen_adjacency@Base 0.10.0
++ igraph_eigen_matrix@Base 0.10.0
++ igraph_eigen_matrix_symmetric@Base 0.10.0
++ igraph_eigenvector_centrality@Base 0.10.0
++ igraph_eit_as_vector@Base 0.10.0
++ igraph_eit_create@Base 0.10.0
++ igraph_eit_destroy@Base 0.10.0
++ igraph_empty@Base 0.10.0
++ igraph_empty_attrs@Base 0.10.0
++ igraph_enter_safelocale@Base 0.10.0
++ igraph_erdos_renyi_game@Base 0.10.0
++ igraph_erdos_renyi_game_gnm@Base 0.10.0
++ igraph_erdos_renyi_game_gnp@Base 0.10.0
++ igraph_error@Base 0.10.0
++ igraph_error_handler_abort@Base 0.10.0
++ igraph_error_handler_ignore@Base 0.10.0
++ igraph_error_handler_printignore@Base 0.10.0
++ igraph_errorf@Base 0.10.0
++ igraph_errorvf@Base 0.10.0
++ igraph_es_1@Base 0.10.0
++ igraph_es_all@Base 0.10.0
++ igraph_es_all_between@Base 0.10.0
++ igraph_es_as_vector@Base 0.10.0
++ igraph_es_copy@Base 0.10.0
++ igraph_es_destroy@Base 0.10.0
++ igraph_es_incident@Base 0.10.0
++ igraph_es_is_all@Base 0.10.0
++ igraph_es_none@Base 0.10.0
++ igraph_es_pairs@Base 0.10.0
++ igraph_es_pairs_small@Base 0.10.0
++ igraph_es_path@Base 0.10.0
++ igraph_es_path_small@Base 0.10.0
++ igraph_es_range@Base 0.10.0
++ igraph_es_seq@Base 0.10.0
++ igraph_es_size@Base 0.10.0
++ igraph_es_type@Base 0.10.0
++ igraph_es_vector@Base 0.10.0
++ igraph_es_vector_copy@Base 0.10.0
++ igraph_ess_1@Base 0.10.0
++ igraph_ess_all@Base 0.10.0
++ igraph_ess_none@Base 0.10.0
++ igraph_ess_range@Base 0.10.0
++ igraph_ess_seq@Base 0.10.0
++ igraph_ess_vector@Base 0.10.0
++ igraph_establishment_game@Base 0.10.0
++ igraph_estack_destroy@Base 0.10.0
++ igraph_estack_init@Base 0.10.0
++ igraph_estack_iselement@Base 0.10.0
++ igraph_estack_pop@Base 0.10.0
++ igraph_estack_print@Base 0.10.0
++ igraph_estack_push@Base 0.10.0
++ igraph_estack_size@Base 0.10.0
++ igraph_eulerian_cycle@Base 0.10.0
++ igraph_eulerian_path@Base 0.10.0
++ igraph_even_tarjan_reduction@Base 0.10.0
++ igraph_exit_safelocale@Base 0.10.0
++ igraph_expand_path_to_pairs@Base 0.10.0
++ igraph_extended_chordal_ring@Base 0.10.0
++ igraph_famous@Base 0.10.0
++ igraph_fatal@Base 0.10.0
++ igraph_fatal_handler_abort@Base 0.10.0
++ igraph_fatalf@Base 0.10.0
++ igraph_feedback_arc_set@Base 0.10.0
++ igraph_feedback_vertex_set@Base 0.10.15
++ igraph_find_cycle@Base 0.10.15
++ igraph_finite@Base 0.10.0
++ igraph_forest_fire_game@Base 0.10.0
++ igraph_free@Base 0.10.0
++ igraph_from_hrg_dendrogram@Base 0.10.6
++ igraph_from_prufer@Base 0.10.0
++ igraph_full@Base 0.10.0
++ igraph_full_bipartite@Base 0.10.0
++ igraph_full_citation@Base 0.10.0
++ igraph_full_multipartite@Base 0.10.0
++ igraph_fundamental_cycles@Base 0.10.0
++ igraph_gen2wheap_check@Base 0.10.4
++ igraph_gen2wheap_clear@Base 0.10.4
++ igraph_gen2wheap_deactivate_max@Base 0.10.4
++ igraph_gen2wheap_delete_max@Base 0.10.4
++ igraph_gen2wheap_destroy@Base 0.10.4
++ igraph_gen2wheap_empty@Base 0.10.4
++ igraph_gen2wheap_get@Base 0.10.4
++ igraph_gen2wheap_has_active@Base 0.10.4
++ igraph_gen2wheap_has_elem@Base 0.10.4
++ igraph_gen2wheap_init@Base 0.10.4
++ igraph_gen2wheap_max@Base 0.10.4
++ igraph_gen2wheap_max_index@Base 0.10.4
++ igraph_gen2wheap_max_size@Base 0.10.4
++ igraph_gen2wheap_modify@Base 0.10.4
++ igraph_gen2wheap_push_with_index@Base 0.10.4
++ igraph_gen2wheap_size@Base 0.10.4
++ igraph_generalized_petersen@Base 0.10.0
++ igraph_get_adjacency@Base 0.10.0
++ igraph_get_adjacency_sparse@Base 0.10.0
++ igraph_get_all_eids_between@Base 0.10.0
++ igraph_get_all_shortest_paths@Base 0.10.0
++ igraph_get_all_shortest_paths_dijkstra@Base 0.10.0
++ igraph_get_all_simple_paths@Base 0.10.0
++ igraph_get_biadjacency@Base 0.10.6
++ igraph_get_edgelist@Base 0.10.0
++ igraph_get_eid@Base 0.10.0
++ igraph_get_eids@Base 0.10.0
++ igraph_get_incidence@Base 0.10.0
++ igraph_get_isomorphisms_vf2@Base 0.10.0
++ igraph_get_isomorphisms_vf2_callback@Base 0.10.0
++ igraph_get_k_shortest_paths@Base 0.10.0
++ igraph_get_laplacian@Base 0.10.0
++ igraph_get_laplacian_sparse@Base 0.10.0
++ igraph_get_shortest_path@Base 0.10.0
++ igraph_get_shortest_path_astar@Base 0.10.4
++ igraph_get_shortest_path_bellman_ford@Base 0.10.0
++ igraph_get_shortest_path_dijkstra@Base 0.10.0
++ igraph_get_shortest_paths@Base 0.10.0
++ igraph_get_shortest_paths_bellman_ford@Base 0.10.0
++ igraph_get_shortest_paths_dijkstra@Base 0.10.0
++ igraph_get_sparsemat@Base 0.10.0
++ igraph_get_stochastic@Base 0.10.0
++ igraph_get_stochastic_sparse@Base 0.10.0
++ igraph_get_stochastic_sparsemat@Base 0.10.0
++ igraph_get_subisomorphisms_vf2@Base 0.10.0
++ igraph_get_subisomorphisms_vf2_callback@Base 0.10.0
++ igraph_get_widest_path@Base 0.10.0
++ igraph_get_widest_paths@Base 0.10.0
++ igraph_girth@Base 0.10.0
++ igraph_global_efficiency@Base 0.10.0
++ igraph_gomory_hu_tree@Base 0.10.0
++ igraph_graph_center@Base 0.10.0
++ igraph_graph_center_dijkstra@Base 0.10.7
++ igraph_graph_count@Base 0.10.0
++ igraph_graph_list_capacity@Base 0.10.0
++ igraph_graph_list_clear@Base 0.10.0
++ igraph_graph_list_destroy@Base 0.10.0
++ igraph_graph_list_discard@Base 0.10.0
++ igraph_graph_list_discard_back@Base 0.10.0
++ igraph_graph_list_discard_fast@Base 0.10.0
++ igraph_graph_list_empty@Base 0.10.0
++ igraph_graph_list_get_ptr@Base 0.10.0
++ igraph_graph_list_init@Base 0.10.0
++ igraph_graph_list_insert@Base 0.10.0
++ igraph_graph_list_insert_copy@Base 0.10.0
++ igraph_graph_list_insert_new@Base 0.10.0
++ igraph_graph_list_permute@Base 0.10.0
++ igraph_graph_list_pop_back@Base 0.10.0
++ igraph_graph_list_push_back@Base 0.10.0
++ igraph_graph_list_push_back_copy@Base 0.10.0
++ igraph_graph_list_push_back_new@Base 0.10.0
++ igraph_graph_list_remove@Base 0.10.0
++ igraph_graph_list_remove_consecutive_duplicates@Base 0.10.0
++ igraph_graph_list_remove_fast@Base 0.10.0
++ igraph_graph_list_replace@Base 0.10.0
++ igraph_graph_list_reserve@Base 0.10.0
++ igraph_graph_list_resize@Base 0.10.0
++ igraph_graph_list_reverse@Base 0.10.4
++ igraph_graph_list_set@Base 0.10.0
++ igraph_graph_list_size@Base 0.10.0
++ igraph_graph_list_sort@Base 0.10.0
++ igraph_graph_list_sort_ind@Base 0.10.0
++ igraph_graph_list_swap@Base 0.10.0
++ igraph_graph_list_swap_elements@Base 0.10.0
++ igraph_graph_list_tail_ptr@Base 0.10.0
++ igraph_graph_power@Base 0.10.6
++ igraph_graphlets@Base 0.10.0
++ igraph_graphlets_candidate_basis@Base 0.10.0
++ igraph_graphlets_project@Base 0.10.0
++ igraph_grg_game@Base 0.10.0
++ igraph_growing_random_game@Base 0.10.0
++ igraph_harmonic_centrality@Base 0.10.0
++ igraph_harmonic_centrality_cutoff@Base 0.10.0
++ igraph_has_attribute_table@Base 0.10.0
++ igraph_has_loop@Base 0.10.0
++ igraph_has_multiple@Base 0.10.0
++ igraph_has_mutual@Base 0.10.0
++ igraph_heap_char_clear@Base 0.10.0
++ igraph_heap_char_delete_top@Base 0.10.0
++ igraph_heap_char_destroy@Base 0.10.0
++ igraph_heap_char_empty@Base 0.10.0
++ igraph_heap_char_init@Base 0.10.0
++ igraph_heap_char_init_array@Base 0.10.0
++ igraph_heap_char_push@Base 0.10.0
++ igraph_heap_char_reserve@Base 0.10.0
++ igraph_heap_char_size@Base 0.10.0
++ igraph_heap_char_top@Base 0.10.0
++ igraph_heap_clear@Base 0.10.0
++ igraph_heap_delete_top@Base 0.10.0
++ igraph_heap_destroy@Base 0.10.0
++ igraph_heap_empty@Base 0.10.0
++ igraph_heap_init@Base 0.10.0
++ igraph_heap_init_array@Base 0.10.0
++ igraph_heap_int_clear@Base 0.10.0
++ igraph_heap_int_delete_top@Base 0.10.0
++ igraph_heap_int_destroy@Base 0.10.0
++ igraph_heap_int_empty@Base 0.10.0
++ igraph_heap_int_init@Base 0.10.0
++ igraph_heap_int_init_array@Base 0.10.0
++ igraph_heap_int_push@Base 0.10.0
++ igraph_heap_int_reserve@Base 0.10.0
++ igraph_heap_int_size@Base 0.10.0
++ igraph_heap_int_top@Base 0.10.0
++ igraph_heap_min_char_clear@Base 0.10.0
++ igraph_heap_min_char_delete_top@Base 0.10.0
++ igraph_heap_min_char_destroy@Base 0.10.0
++ igraph_heap_min_char_empty@Base 0.10.0
++ igraph_heap_min_char_init@Base 0.10.0
++ igraph_heap_min_char_init_array@Base 0.10.0
++ igraph_heap_min_char_push@Base 0.10.0
++ igraph_heap_min_char_reserve@Base 0.10.0
++ igraph_heap_min_char_size@Base 0.10.0
++ igraph_heap_min_char_top@Base 0.10.0
++ igraph_heap_min_clear@Base 0.10.0
++ igraph_heap_min_delete_top@Base 0.10.0
++ igraph_heap_min_destroy@Base 0.10.0
++ igraph_heap_min_empty@Base 0.10.0
++ igraph_heap_min_init@Base 0.10.0
++ igraph_heap_min_init_array@Base 0.10.0
++ igraph_heap_min_int_clear@Base 0.10.0
++ igraph_heap_min_int_delete_top@Base 0.10.0
++ igraph_heap_min_int_destroy@Base 0.10.0
++ igraph_heap_min_int_empty@Base 0.10.0
++ igraph_heap_min_int_init@Base 0.10.0
++ igraph_heap_min_int_init_array@Base 0.10.0
++ igraph_heap_min_int_push@Base 0.10.0
++ igraph_heap_min_int_reserve@Base 0.10.0
++ igraph_heap_min_int_size@Base 0.10.0
++ igraph_heap_min_int_top@Base 0.10.0
++ igraph_heap_min_push@Base 0.10.0
++ igraph_heap_min_reserve@Base 0.10.0
++ igraph_heap_min_size@Base 0.10.0
++ igraph_heap_min_top@Base 0.10.0
++ igraph_heap_push@Base 0.10.0
++ igraph_heap_reserve@Base 0.10.0
++ igraph_heap_size@Base 0.10.0
++ igraph_heap_top@Base 0.10.0
++ igraph_hexagonal_lattice@Base 0.10.4
++ igraph_hrg_consensus@Base 0.10.0
++ igraph_hrg_create@Base 0.10.0
++ igraph_hrg_dendrogram@Base 0.10.0
++ igraph_hrg_destroy@Base 0.10.0
++ igraph_hrg_fit@Base 0.10.0
++ igraph_hrg_game@Base 0.10.0
++ igraph_hrg_init@Base 0.10.0
++ igraph_hrg_predict@Base 0.10.0
++ igraph_hrg_resize@Base 0.10.0
++ igraph_hrg_sample@Base 0.10.0
++ igraph_hrg_sample_many@Base 0.10.0
++ igraph_hrg_size@Base 0.10.0
++ igraph_hsbm_game@Base 0.10.0
++ igraph_hsbm_list_game@Base 0.10.0
++ igraph_hub_and_authority_scores@Base 0.10.0
++ igraph_hub_score@Base 0.10.0
++ igraph_hypercube@Base 0.10.13
++ igraph_i_all_st_cuts_pivot@Base 0.10.0
++ igraph_i_cutheap_active_size@Base 0.10.0
++ igraph_i_cutheap_destroy@Base 0.10.0
++ igraph_i_cutheap_empty@Base 0.10.0
++ igraph_i_cutheap_init@Base 0.10.0
++ igraph_i_cutheap_maxvalue@Base 0.10.0
++ igraph_i_cutheap_popmax@Base 0.10.0
++ igraph_i_cutheap_reset_undefine@Base 0.10.0
++ igraph_i_cutheap_size@Base 0.10.0
++ igraph_i_cutheap_update@Base 0.10.0
++ igraph_i_incident@Base 0.10.0
++ igraph_i_induced_subgraph_map@Base 0.10.0
++ igraph_i_layout_merge_dla@Base 0.10.0
++ igraph_i_layout_merge_place_sphere@Base 0.10.0
++ igraph_i_layout_mergegrid_destroy@Base 0.10.0
++ igraph_i_layout_mergegrid_init@Base 0.10.0
++ igraph_i_layout_point_segment_dist2@Base 0.10.0
++ igraph_i_layout_segments_intersect@Base 0.10.0
++ igraph_i_layout_sphere_2d@Base 0.10.0
++ igraph_i_layout_sphere_3d@Base 0.10.0
++ igraph_i_lazy_adjlist_get_real@Base 0.10.0
++ igraph_i_lazy_inclist_get_real@Base 0.10.0
++ igraph_i_neighbors@Base 0.10.0
++ igraph_i_property_cache_get_bool@Base 0.10.0
++ igraph_i_property_cache_has@Base 0.10.0
++ igraph_i_property_cache_invalidate@Base 0.10.0
++ igraph_i_property_cache_invalidate_all@Base 0.10.0
++ igraph_i_property_cache_set_bool@Base 0.10.0
++ igraph_i_property_cache_set_bool_checked@Base 0.10.11
++ igraph_i_rewire@Base 0.10.0
++ igraph_i_safe_add@Base 0.10.0
++ igraph_i_safe_mult@Base 0.10.0
++ igraph_i_set_attribute_table@Base 0.10.0
++ igraph_i_umap_fit_ab@Base 0.10.0
++ igraph_incidence@Base 0.10.0
++ igraph_incident@Base 0.10.0
++ igraph_inclist_clear@Base 0.10.0
++ igraph_inclist_destroy@Base 0.10.0
++ igraph_inclist_fprint@Base 0.10.0
++ igraph_inclist_init@Base 0.10.0
++ igraph_inclist_init_empty@Base 0.10.0
++ igraph_inclist_print@Base 0.10.0
++ igraph_inclist_size@Base 0.10.0
++ igraph_independence_number@Base 0.10.0
++ igraph_independent_vertex_sets@Base 0.10.0
++ igraph_induced_subgraph@Base 0.10.0
++ igraph_induced_subgraph_edges@Base 0.10.4
++ igraph_induced_subgraph_map@Base 0.10.0
++ igraph_intersection@Base 0.10.0
++ igraph_intersection_many@Base 0.10.0
++ igraph_invalidate_cache@Base 0.10.0
++ igraph_is_acyclic@Base 0.10.0
++ igraph_is_biconnected@Base 0.10.9
++ igraph_is_bigraphical@Base 0.10.0
++ igraph_is_bipartite@Base 0.10.0
++ igraph_is_chordal@Base 0.10.0
++ igraph_is_clique@Base 0.10.13
++ igraph_is_complete@Base 0.10.11
++ igraph_is_connected@Base 0.10.0
++ igraph_is_dag@Base 0.10.0
++ igraph_is_directed@Base 0.10.0
++ igraph_is_eulerian@Base 0.10.0
++ igraph_is_forest@Base 0.10.0
++ igraph_is_graphical@Base 0.10.0
++ igraph_is_independent_vertex_set@Base 0.10.13
++ igraph_is_inf@Base 0.10.0
++ igraph_is_loop@Base 0.10.0
++ igraph_is_matching@Base 0.10.0
++ igraph_is_maximal_matching@Base 0.10.0
++ igraph_is_minimal_separator@Base 0.10.0
++ igraph_is_multiple@Base 0.10.0
++ igraph_is_mutual@Base 0.10.0
++ igraph_is_nan@Base 0.10.0
++ igraph_is_neginf@Base 0.10.0
++ igraph_is_perfect@Base 0.10.0
++ igraph_is_posinf@Base 0.10.0
++ igraph_is_same_graph@Base 0.10.0
++ igraph_is_separator@Base 0.10.0
++ igraph_is_simple@Base 0.10.0
++ igraph_is_tree@Base 0.10.0
++ igraph_isoclass@Base 0.10.0
++ igraph_isoclass_create@Base 0.10.0
++ igraph_isoclass_subgraph@Base 0.10.0
++ igraph_isomorphic@Base 0.10.0
++ igraph_isomorphic_34@Base 0.10.0
++ igraph_isomorphic_bliss@Base 0.10.0
++ igraph_isomorphic_function_vf2@Base 0.10.0
++ igraph_isomorphic_vf2@Base 0.10.0
++ igraph_join@Base 0.10.11
++ igraph_joint_degree_distribution@Base 0.10.8
++ igraph_joint_degree_matrix@Base 0.10.8
++ igraph_joint_type_distribution@Base 0.10.8
++ igraph_k_regular_game@Base 0.10.0
++ igraph_kary_tree@Base 0.10.0
++ igraph_kautz@Base 0.10.0
++ igraph_lapack_dgeev@Base 0.10.0
++ igraph_lapack_dgeevx@Base 0.10.0
++ igraph_lapack_dgehrd@Base 0.10.0
++ igraph_lapack_dgesv@Base 0.10.0
++ igraph_lapack_dgetrf@Base 0.10.0
++ igraph_lapack_dgetrs@Base 0.10.0
++ igraph_lapack_dsyevr@Base 0.10.0
++ igraph_laplacian@Base 0.10.0
++ igraph_laplacian_spectral_embedding@Base 0.10.0
++ igraph_largest_cliques@Base 0.10.0
++ igraph_largest_independent_vertex_sets@Base 0.10.0
++ igraph_largest_weighted_cliques@Base 0.10.0
++ igraph_lastcit_game@Base 0.10.0
++ igraph_lattice@Base 0.10.0
++ igraph_layout_bipartite@Base 0.10.0
++ igraph_layout_circle@Base 0.10.0
++ igraph_layout_davidson_harel@Base 0.10.0
++ igraph_layout_drl@Base 0.10.0
++ igraph_layout_drl_3d@Base 0.10.0
++ igraph_layout_drl_options_init@Base 0.10.0
++ igraph_layout_fruchterman_reingold@Base 0.10.0
++ igraph_layout_fruchterman_reingold_3d@Base 0.10.0
++ igraph_layout_gem@Base 0.10.0
++ igraph_layout_graphopt@Base 0.10.0
++ igraph_layout_grid@Base 0.10.0
++ igraph_layout_grid_3d@Base 0.10.0
++ igraph_layout_kamada_kawai@Base 0.10.0
++ igraph_layout_kamada_kawai_3d@Base 0.10.0
++ igraph_layout_lgl@Base 0.10.0
++ igraph_layout_mds@Base 0.10.0
++ igraph_layout_merge_dla@Base 0.10.0
++ igraph_layout_random@Base 0.10.0
++ igraph_layout_random_3d@Base 0.10.0
++ igraph_layout_reingold_tilford@Base 0.10.0
++ igraph_layout_reingold_tilford_circular@Base 0.10.0
++ igraph_layout_sphere@Base 0.10.0
++ igraph_layout_star@Base 0.10.0
++ igraph_layout_sugiyama@Base 0.10.0
++ igraph_layout_umap@Base 0.10.0
++ igraph_layout_umap_3d@Base 0.10.0
++ igraph_layout_umap_compute_weights@Base 0.10.4
++ igraph_lazy_adjlist_clear@Base 0.10.0
++ igraph_lazy_adjlist_destroy@Base 0.10.0
++ igraph_lazy_adjlist_init@Base 0.10.0
++ igraph_lazy_adjlist_size@Base 0.10.0
++ igraph_lazy_inclist_clear@Base 0.10.0
++ igraph_lazy_inclist_destroy@Base 0.10.0
++ igraph_lazy_inclist_init@Base 0.10.0
++ igraph_lazy_inclist_size@Base 0.10.0
++ igraph_lcf@Base 0.10.0
++ igraph_lcf_vector@Base 0.10.0
++ igraph_le_community_to_membership@Base 0.10.0
++ igraph_linegraph@Base 0.10.0
++ igraph_list_triangles@Base 0.10.0
++ igraph_local_efficiency@Base 0.10.0
++ igraph_local_scan_0@Base 0.10.0
++ igraph_local_scan_0_them@Base 0.10.0
++ igraph_local_scan_1_ecount@Base 0.10.0
++ igraph_local_scan_1_ecount_them@Base 0.10.0
++ igraph_local_scan_k_ecount@Base 0.10.0
++ igraph_local_scan_k_ecount_them@Base 0.10.0
++ igraph_local_scan_neighborhood_ecount@Base 0.10.0
++ igraph_local_scan_subset_ecount@Base 0.10.0
++ igraph_malloc@Base 0.10.0
++ igraph_marked_queue_int_as_vector@Base 0.10.0
++ igraph_marked_queue_int_destroy@Base 0.10.0
++ igraph_marked_queue_int_empty@Base 0.10.0
++ igraph_marked_queue_int_fprint@Base 0.10.0
++ igraph_marked_queue_int_init@Base 0.10.0
++ igraph_marked_queue_int_iselement@Base 0.10.0
++ igraph_marked_queue_int_pop_back_batch@Base 0.10.0
++ igraph_marked_queue_int_print@Base 0.10.0
++ igraph_marked_queue_int_push@Base 0.10.0
++ igraph_marked_queue_int_reset@Base 0.10.0
++ igraph_marked_queue_int_size@Base 0.10.0
++ igraph_marked_queue_int_start_batch@Base 0.10.0
++ igraph_matrix_add@Base 0.10.0
++ igraph_matrix_add_cols@Base 0.10.0
++ igraph_matrix_add_constant@Base 0.10.0
++ igraph_matrix_add_rows@Base 0.10.0
++ igraph_matrix_all_almost_e@Base 0.10.0
++ igraph_matrix_all_e@Base 0.10.0
++ igraph_matrix_all_e_tol@Base 0.10.0
++ igraph_matrix_all_g@Base 0.10.0
++ igraph_matrix_all_ge@Base 0.10.0
++ igraph_matrix_all_l@Base 0.10.0
++ igraph_matrix_all_le@Base 0.10.0
++ igraph_matrix_as_sparsemat@Base 0.10.0
++ igraph_matrix_bool_add@Base 0.10.0
++ igraph_matrix_bool_add_cols@Base 0.10.0
++ igraph_matrix_bool_add_constant@Base 0.10.0
++ igraph_matrix_bool_add_rows@Base 0.10.0
++ igraph_matrix_bool_all_e@Base 0.10.0
++ igraph_matrix_bool_capacity@Base 0.10.0
++ igraph_matrix_bool_cbind@Base 0.10.0
++ igraph_matrix_bool_colsum@Base 0.10.0
++ igraph_matrix_bool_contains@Base 0.10.0
++ igraph_matrix_bool_copy@Base 0.10.0
++ igraph_matrix_bool_copy_to@Base 0.10.0
++ igraph_matrix_bool_destroy@Base 0.10.0
++ igraph_matrix_bool_div_elements@Base 0.10.0
++ igraph_matrix_bool_e@Base 0.10.0
++ igraph_matrix_bool_e_ptr@Base 0.10.0
++ igraph_matrix_bool_empty@Base 0.10.0
++ igraph_matrix_bool_fill@Base 0.10.0
++ igraph_matrix_bool_fprint@Base 0.10.0
++ igraph_matrix_bool_get@Base 0.10.0
++ igraph_matrix_bool_get_col@Base 0.10.0
++ igraph_matrix_bool_get_ptr@Base 0.10.0
++ igraph_matrix_bool_get_row@Base 0.10.0
++ igraph_matrix_bool_init@Base 0.10.0
++ igraph_matrix_bool_init_array@Base 0.10.4
++ igraph_matrix_bool_init_copy@Base 0.10.0
++ igraph_matrix_bool_is_equal@Base 0.10.0
++ igraph_matrix_bool_is_symmetric@Base 0.10.0
++ igraph_matrix_bool_isnull@Base 0.10.0
++ igraph_matrix_bool_mul_elements@Base 0.10.0
++ igraph_matrix_bool_ncol@Base 0.10.0
++ igraph_matrix_bool_nrow@Base 0.10.0
++ igraph_matrix_bool_null@Base 0.10.0
++ igraph_matrix_bool_permdelete_rows@Base 0.10.0
++ igraph_matrix_bool_print@Base 0.10.0
++ igraph_matrix_bool_printf@Base 0.10.0
++ igraph_matrix_bool_prod@Base 0.10.0
++ igraph_matrix_bool_rbind@Base 0.10.0
++ igraph_matrix_bool_remove_col@Base 0.10.0
++ igraph_matrix_bool_remove_row@Base 0.10.0
++ igraph_matrix_bool_resize@Base 0.10.0
++ igraph_matrix_bool_resize_min@Base 0.10.0
++ igraph_matrix_bool_rowsum@Base 0.10.0
++ igraph_matrix_bool_scale@Base 0.10.0
++ igraph_matrix_bool_search@Base 0.10.0
++ igraph_matrix_bool_select_cols@Base 0.10.0
++ igraph_matrix_bool_select_rows@Base 0.10.0
++ igraph_matrix_bool_select_rows_cols@Base 0.10.0
++ igraph_matrix_bool_set@Base 0.10.0
++ igraph_matrix_bool_set_col@Base 0.10.0
++ igraph_matrix_bool_set_row@Base 0.10.0
++ igraph_matrix_bool_size@Base 0.10.0
++ igraph_matrix_bool_sub@Base 0.10.0
++ igraph_matrix_bool_sum@Base 0.10.0
++ igraph_matrix_bool_swap@Base 0.10.0
++ igraph_matrix_bool_swap_cols@Base 0.10.0
++ igraph_matrix_bool_swap_rows@Base 0.10.0
++ igraph_matrix_bool_transpose@Base 0.10.0
++ igraph_matrix_bool_update@Base 0.10.0
++ igraph_matrix_bool_view@Base 0.10.0
++ igraph_matrix_bool_view_from_vector@Base 0.10.0
++ igraph_matrix_capacity@Base 0.10.0
++ igraph_matrix_cbind@Base 0.10.0
++ igraph_matrix_char_add@Base 0.10.0
++ igraph_matrix_char_add_cols@Base 0.10.0
++ igraph_matrix_char_add_constant@Base 0.10.0
++ igraph_matrix_char_add_rows@Base 0.10.0
++ igraph_matrix_char_all_e@Base 0.10.0
++ igraph_matrix_char_all_g@Base 0.10.0
++ igraph_matrix_char_all_ge@Base 0.10.0
++ igraph_matrix_char_all_l@Base 0.10.0
++ igraph_matrix_char_all_le@Base 0.10.0
++ igraph_matrix_char_capacity@Base 0.10.0
++ igraph_matrix_char_cbind@Base 0.10.0
++ igraph_matrix_char_colsum@Base 0.10.0
++ igraph_matrix_char_contains@Base 0.10.0
++ igraph_matrix_char_copy@Base 0.10.0
++ igraph_matrix_char_copy_to@Base 0.10.0
++ igraph_matrix_char_destroy@Base 0.10.0
++ igraph_matrix_char_div_elements@Base 0.10.0
++ igraph_matrix_char_e@Base 0.10.0
++ igraph_matrix_char_e_ptr@Base 0.10.0
++ igraph_matrix_char_empty@Base 0.10.0
++ igraph_matrix_char_fill@Base 0.10.0
++ igraph_matrix_char_fprint@Base 0.10.0
++ igraph_matrix_char_get@Base 0.10.0
++ igraph_matrix_char_get_col@Base 0.10.0
++ igraph_matrix_char_get_ptr@Base 0.10.0
++ igraph_matrix_char_get_row@Base 0.10.0
++ igraph_matrix_char_init@Base 0.10.0
++ igraph_matrix_char_init_array@Base 0.10.4
++ igraph_matrix_char_init_copy@Base 0.10.0
++ igraph_matrix_char_is_equal@Base 0.10.0
++ igraph_matrix_char_is_symmetric@Base 0.10.0
++ igraph_matrix_char_isnull@Base 0.10.0
++ igraph_matrix_char_max@Base 0.10.0
++ igraph_matrix_char_maxdifference@Base 0.10.0
++ igraph_matrix_char_min@Base 0.10.0
++ igraph_matrix_char_minmax@Base 0.10.0
++ igraph_matrix_char_mul_elements@Base 0.10.0
++ igraph_matrix_char_ncol@Base 0.10.0
++ igraph_matrix_char_nrow@Base 0.10.0
++ igraph_matrix_char_null@Base 0.10.0
++ igraph_matrix_char_permdelete_rows@Base 0.10.0
++ igraph_matrix_char_print@Base 0.10.0
++ igraph_matrix_char_printf@Base 0.10.0
++ igraph_matrix_char_prod@Base 0.10.0
++ igraph_matrix_char_rbind@Base 0.10.0
++ igraph_matrix_char_remove_col@Base 0.10.0
++ igraph_matrix_char_remove_row@Base 0.10.0
++ igraph_matrix_char_resize@Base 0.10.0
++ igraph_matrix_char_resize_min@Base 0.10.0
++ igraph_matrix_char_rowsum@Base 0.10.0
++ igraph_matrix_char_scale@Base 0.10.0
++ igraph_matrix_char_search@Base 0.10.0
++ igraph_matrix_char_select_cols@Base 0.10.0
++ igraph_matrix_char_select_rows@Base 0.10.0
++ igraph_matrix_char_select_rows_cols@Base 0.10.0
++ igraph_matrix_char_set@Base 0.10.0
++ igraph_matrix_char_set_col@Base 0.10.0
++ igraph_matrix_char_set_row@Base 0.10.0
++ igraph_matrix_char_size@Base 0.10.0
++ igraph_matrix_char_sub@Base 0.10.0
++ igraph_matrix_char_sum@Base 0.10.0
++ igraph_matrix_char_swap@Base 0.10.0
++ igraph_matrix_char_swap_cols@Base 0.10.0
++ igraph_matrix_char_swap_rows@Base 0.10.0
++ igraph_matrix_char_transpose@Base 0.10.0
++ igraph_matrix_char_update@Base 0.10.0
++ igraph_matrix_char_view@Base 0.10.0
++ igraph_matrix_char_view_from_vector@Base 0.10.0
++ igraph_matrix_char_which_max@Base 0.10.0
++ igraph_matrix_char_which_min@Base 0.10.0
++ igraph_matrix_char_which_minmax@Base 0.10.0
++ igraph_matrix_colsum@Base 0.10.0
++ igraph_matrix_complex_add@Base 0.10.0
++ igraph_matrix_complex_add_cols@Base 0.10.0
++ igraph_matrix_complex_add_constant@Base 0.10.0
++ igraph_matrix_complex_add_rows@Base 0.10.0
++ igraph_matrix_complex_all_almost_e@Base 0.10.0
++ igraph_matrix_complex_all_e@Base 0.10.0
++ igraph_matrix_complex_capacity@Base 0.10.0
++ igraph_matrix_complex_cbind@Base 0.10.0
++ igraph_matrix_complex_colsum@Base 0.10.0
++ igraph_matrix_complex_contains@Base 0.10.0
++ igraph_matrix_complex_copy@Base 0.10.0
++ igraph_matrix_complex_copy_to@Base 0.10.0
++ igraph_matrix_complex_create@Base 0.10.0
++ igraph_matrix_complex_create_polar@Base 0.10.0
++ igraph_matrix_complex_destroy@Base 0.10.0
++ igraph_matrix_complex_div_elements@Base 0.10.0
++ igraph_matrix_complex_e@Base 0.10.0
++ igraph_matrix_complex_e_ptr@Base 0.10.0
++ igraph_matrix_complex_empty@Base 0.10.0
++ igraph_matrix_complex_fill@Base 0.10.0
++ igraph_matrix_complex_fprint@Base 0.10.0
++ igraph_matrix_complex_get@Base 0.10.0
++ igraph_matrix_complex_get_col@Base 0.10.0
++ igraph_matrix_complex_get_ptr@Base 0.10.0
++ igraph_matrix_complex_get_row@Base 0.10.0
++ igraph_matrix_complex_imag@Base 0.10.0
++ igraph_matrix_complex_init@Base 0.10.0
++ igraph_matrix_complex_init_array@Base 0.10.4
++ igraph_matrix_complex_init_copy@Base 0.10.0
++ igraph_matrix_complex_is_equal@Base 0.10.0
++ igraph_matrix_complex_is_symmetric@Base 0.10.0
++ igraph_matrix_complex_isnull@Base 0.10.0
++ igraph_matrix_complex_mul_elements@Base 0.10.0
++ igraph_matrix_complex_ncol@Base 0.10.0
++ igraph_matrix_complex_nrow@Base 0.10.0
++ igraph_matrix_complex_null@Base 0.10.0
++ igraph_matrix_complex_permdelete_rows@Base 0.10.0
++ igraph_matrix_complex_print@Base 0.10.0
++ igraph_matrix_complex_prod@Base 0.10.0
++ igraph_matrix_complex_rbind@Base 0.10.0
++ igraph_matrix_complex_real@Base 0.10.0
++ igraph_matrix_complex_realimag@Base 0.10.0
++ igraph_matrix_complex_remove_col@Base 0.10.0
++ igraph_matrix_complex_remove_row@Base 0.10.0
++ igraph_matrix_complex_resize@Base 0.10.0
++ igraph_matrix_complex_resize_min@Base 0.10.0
++ igraph_matrix_complex_rowsum@Base 0.10.0
++ igraph_matrix_complex_scale@Base 0.10.0
++ igraph_matrix_complex_search@Base 0.10.0
++ igraph_matrix_complex_select_cols@Base 0.10.0
++ igraph_matrix_complex_select_rows@Base 0.10.0
++ igraph_matrix_complex_select_rows_cols@Base 0.10.0
++ igraph_matrix_complex_set@Base 0.10.0
++ igraph_matrix_complex_set_col@Base 0.10.0
++ igraph_matrix_complex_set_row@Base 0.10.0
++ igraph_matrix_complex_size@Base 0.10.0
++ igraph_matrix_complex_sub@Base 0.10.0
++ igraph_matrix_complex_sum@Base 0.10.0
++ igraph_matrix_complex_swap@Base 0.10.0
++ igraph_matrix_complex_swap_cols@Base 0.10.0
++ igraph_matrix_complex_swap_rows@Base 0.10.0
++ igraph_matrix_complex_transpose@Base 0.10.0
++ igraph_matrix_complex_update@Base 0.10.0
++ igraph_matrix_complex_view@Base 0.10.0
++ igraph_matrix_complex_view_from_vector@Base 0.10.0
++ igraph_matrix_complex_zapsmall@Base 0.10.0
++ igraph_matrix_contains@Base 0.10.0
++ igraph_matrix_copy@Base 0.10.0
++ igraph_matrix_copy_to@Base 0.10.0
++ igraph_matrix_destroy@Base 0.10.0
++ igraph_matrix_div_elements@Base 0.10.0
++ igraph_matrix_e@Base 0.10.0
++ igraph_matrix_e_ptr@Base 0.10.0
++ igraph_matrix_empty@Base 0.10.0
++ igraph_matrix_fill@Base 0.10.0
++ igraph_matrix_fprint@Base 0.10.0
++ igraph_matrix_get@Base 0.10.0
++ igraph_matrix_get_col@Base 0.10.0
++ igraph_matrix_get_ptr@Base 0.10.0
++ igraph_matrix_get_row@Base 0.10.0
++ igraph_matrix_init@Base 0.10.0
++ igraph_matrix_init_array@Base 0.10.4
++ igraph_matrix_init_copy@Base 0.10.0
++ igraph_matrix_int_add@Base 0.10.0
++ igraph_matrix_int_add_cols@Base 0.10.0
++ igraph_matrix_int_add_constant@Base 0.10.0
++ igraph_matrix_int_add_rows@Base 0.10.0
++ igraph_matrix_int_all_e@Base 0.10.0
++ igraph_matrix_int_all_g@Base 0.10.0
++ igraph_matrix_int_all_ge@Base 0.10.0
++ igraph_matrix_int_all_l@Base 0.10.0
++ igraph_matrix_int_all_le@Base 0.10.0
++ igraph_matrix_int_capacity@Base 0.10.0
++ igraph_matrix_int_cbind@Base 0.10.0
++ igraph_matrix_int_colsum@Base 0.10.0
++ igraph_matrix_int_contains@Base 0.10.0
++ igraph_matrix_int_copy@Base 0.10.0
++ igraph_matrix_int_copy_to@Base 0.10.0
++ igraph_matrix_int_destroy@Base 0.10.0
++ igraph_matrix_int_div_elements@Base 0.10.0
++ igraph_matrix_int_e@Base 0.10.0
++ igraph_matrix_int_e_ptr@Base 0.10.0
++ igraph_matrix_int_empty@Base 0.10.0
++ igraph_matrix_int_fill@Base 0.10.0
++ igraph_matrix_int_fprint@Base 0.10.0
++ igraph_matrix_int_get@Base 0.10.0
++ igraph_matrix_int_get_col@Base 0.10.0
++ igraph_matrix_int_get_ptr@Base 0.10.0
++ igraph_matrix_int_get_row@Base 0.10.0
++ igraph_matrix_int_init@Base 0.10.0
++ igraph_matrix_int_init_array@Base 0.10.4
++ igraph_matrix_int_init_copy@Base 0.10.0
++ igraph_matrix_int_is_equal@Base 0.10.0
++ igraph_matrix_int_is_symmetric@Base 0.10.0
++ igraph_matrix_int_isnull@Base 0.10.0
++ igraph_matrix_int_max@Base 0.10.0
++ igraph_matrix_int_maxdifference@Base 0.10.0
++ igraph_matrix_int_min@Base 0.10.0
++ igraph_matrix_int_minmax@Base 0.10.0
++ igraph_matrix_int_mul_elements@Base 0.10.0
++ igraph_matrix_int_ncol@Base 0.10.0
++ igraph_matrix_int_nrow@Base 0.10.0
++ igraph_matrix_int_null@Base 0.10.0
++ igraph_matrix_int_permdelete_rows@Base 0.10.0
++ igraph_matrix_int_print@Base 0.10.0
++ igraph_matrix_int_printf@Base 0.10.0
++ igraph_matrix_int_prod@Base 0.10.0
++ igraph_matrix_int_rbind@Base 0.10.0
++ igraph_matrix_int_remove_col@Base 0.10.0
++ igraph_matrix_int_remove_row@Base 0.10.0
++ igraph_matrix_int_resize@Base 0.10.0
++ igraph_matrix_int_resize_min@Base 0.10.0
++ igraph_matrix_int_rowsum@Base 0.10.0
++ igraph_matrix_int_scale@Base 0.10.0
++ igraph_matrix_int_search@Base 0.10.0
++ igraph_matrix_int_select_cols@Base 0.10.0
++ igraph_matrix_int_select_rows@Base 0.10.0
++ igraph_matrix_int_select_rows_cols@Base 0.10.0
++ igraph_matrix_int_set@Base 0.10.0
++ igraph_matrix_int_set_col@Base 0.10.0
++ igraph_matrix_int_set_row@Base 0.10.0
++ igraph_matrix_int_size@Base 0.10.0
++ igraph_matrix_int_sub@Base 0.10.0
++ igraph_matrix_int_sum@Base 0.10.0
++ igraph_matrix_int_swap@Base 0.10.0
++ igraph_matrix_int_swap_cols@Base 0.10.0
++ igraph_matrix_int_swap_rows@Base 0.10.0
++ igraph_matrix_int_transpose@Base 0.10.0
++ igraph_matrix_int_update@Base 0.10.0
++ igraph_matrix_int_view@Base 0.10.0
++ igraph_matrix_int_view_from_vector@Base 0.10.0
++ igraph_matrix_int_which_max@Base 0.10.0
++ igraph_matrix_int_which_min@Base 0.10.0
++ igraph_matrix_int_which_minmax@Base 0.10.0
++ igraph_matrix_is_equal@Base 0.10.0
++ igraph_matrix_is_symmetric@Base 0.10.0
++ igraph_matrix_isnull@Base 0.10.0
++ igraph_matrix_list_capacity@Base 0.10.0
++ igraph_matrix_list_clear@Base 0.10.0
++ igraph_matrix_list_destroy@Base 0.10.0
++ igraph_matrix_list_discard@Base 0.10.0
++ igraph_matrix_list_discard_back@Base 0.10.0
++ igraph_matrix_list_discard_fast@Base 0.10.0
++ igraph_matrix_list_empty@Base 0.10.0
++ igraph_matrix_list_get_ptr@Base 0.10.0
++ igraph_matrix_list_init@Base 0.10.0
++ igraph_matrix_list_insert@Base 0.10.0
++ igraph_matrix_list_insert_copy@Base 0.10.0
++ igraph_matrix_list_insert_new@Base 0.10.0
++ igraph_matrix_list_permute@Base 0.10.0
++ igraph_matrix_list_pop_back@Base 0.10.0
++ igraph_matrix_list_push_back@Base 0.10.0
++ igraph_matrix_list_push_back_copy@Base 0.10.0
++ igraph_matrix_list_push_back_new@Base 0.10.0
++ igraph_matrix_list_remove@Base 0.10.0
++ igraph_matrix_list_remove_consecutive_duplicates@Base 0.10.0
++ igraph_matrix_list_remove_fast@Base 0.10.0
++ igraph_matrix_list_replace@Base 0.10.0
++ igraph_matrix_list_reserve@Base 0.10.0
++ igraph_matrix_list_resize@Base 0.10.0
++ igraph_matrix_list_reverse@Base 0.10.4
++ igraph_matrix_list_set@Base 0.10.0
++ igraph_matrix_list_size@Base 0.10.0
++ igraph_matrix_list_sort@Base 0.10.0
++ igraph_matrix_list_sort_ind@Base 0.10.0
++ igraph_matrix_list_swap@Base 0.10.0
++ igraph_matrix_list_swap_elements@Base 0.10.0
++ igraph_matrix_list_tail_ptr@Base 0.10.0
++ igraph_matrix_max@Base 0.10.0
++ igraph_matrix_maxdifference@Base 0.10.0
++ igraph_matrix_min@Base 0.10.0
++ igraph_matrix_minmax@Base 0.10.0
++ igraph_matrix_mul_elements@Base 0.10.0
++ igraph_matrix_ncol@Base 0.10.0
++ igraph_matrix_nrow@Base 0.10.0
++ igraph_matrix_null@Base 0.10.0
++ igraph_matrix_permdelete_rows@Base 0.10.0
++ igraph_matrix_print@Base 0.10.0
++ igraph_matrix_printf@Base 0.10.0
++ igraph_matrix_prod@Base 0.10.0
++ igraph_matrix_rbind@Base 0.10.0
++ igraph_matrix_remove_col@Base 0.10.0
++ igraph_matrix_remove_row@Base 0.10.0
++ igraph_matrix_resize@Base 0.10.0
++ igraph_matrix_resize_min@Base 0.10.0
++ igraph_matrix_rowsum@Base 0.10.0
++ igraph_matrix_scale@Base 0.10.0
++ igraph_matrix_search@Base 0.10.0
++ igraph_matrix_select_cols@Base 0.10.0
++ igraph_matrix_select_rows@Base 0.10.0
++ igraph_matrix_select_rows_cols@Base 0.10.0
++ igraph_matrix_set@Base 0.10.0
++ igraph_matrix_set_col@Base 0.10.0
++ igraph_matrix_set_row@Base 0.10.0
++ igraph_matrix_size@Base 0.10.0
++ igraph_matrix_sub@Base 0.10.0
++ igraph_matrix_sum@Base 0.10.0
++ igraph_matrix_swap@Base 0.10.0
++ igraph_matrix_swap_cols@Base 0.10.0
++ igraph_matrix_swap_rows@Base 0.10.0
++ igraph_matrix_transpose@Base 0.10.0
++ igraph_matrix_update@Base 0.10.0
++ igraph_matrix_view@Base 0.10.0
++ igraph_matrix_view_from_vector@Base 0.10.0
++ igraph_matrix_which_max@Base 0.10.0
++ igraph_matrix_which_min@Base 0.10.0
++ igraph_matrix_which_minmax@Base 0.10.0
++ igraph_matrix_zapsmall@Base 0.10.0
++ igraph_maxdegree@Base 0.10.0
++ igraph_maxflow@Base 0.10.0
++ igraph_maxflow_value@Base 0.10.0
++ igraph_maximal_cliques@Base 0.10.0
++ igraph_maximal_cliques_callback@Base 0.10.0
++ igraph_maximal_cliques_count@Base 0.10.0
++ igraph_maximal_cliques_file@Base 0.10.0
++ igraph_maximal_cliques_hist@Base 0.10.0
++ igraph_maximal_cliques_subset@Base 0.10.0
++ igraph_maximal_independent_vertex_sets@Base 0.10.0
++ igraph_maximum_bipartite_matching@Base 0.10.0
++ igraph_maximum_cardinality_search@Base 0.10.0
++ igraph_mean_degree@Base 0.10.13
++ igraph_mincut@Base 0.10.0
++ igraph_mincut_value@Base 0.10.0
++ igraph_minimum_cycle_basis@Base 0.10.0
++ igraph_minimum_size_separators@Base 0.10.0
++ igraph_minimum_spanning_tree@Base 0.10.0
++ igraph_minimum_spanning_tree_prim@Base 0.10.0
++ igraph_minimum_spanning_tree_unweighted@Base 0.10.0
++ igraph_modularity@Base 0.10.0
++ igraph_modularity_matrix@Base 0.10.0
++ igraph_moran_process@Base 0.10.0
++ igraph_motifs_randesu@Base 0.10.0
++ igraph_motifs_randesu_callback@Base 0.10.0
++ igraph_motifs_randesu_estimate@Base 0.10.0
++ igraph_motifs_randesu_no@Base 0.10.0
++ igraph_neighborhood@Base 0.10.0
++ igraph_neighborhood_graphs@Base 0.10.0
++ igraph_neighborhood_size@Base 0.10.0
++ igraph_neighbors@Base 0.10.0
++ igraph_pagerank@Base 0.10.0
++ igraph_path_length_hist@Base 0.10.0
++ igraph_permute_vertices@Base 0.10.0
++ igraph_personalized_pagerank@Base 0.10.0
++ igraph_personalized_pagerank_vs@Base 0.10.0
++ igraph_plfit_result_calculate_p_value@Base 0.10.0
++ igraph_power_law_fit@Base 0.10.0
++ igraph_preference_game@Base 0.10.0
++ igraph_progress@Base 0.10.0
++ igraph_progress_handler_stderr@Base 0.10.0
++ igraph_progressf@Base 0.10.0
++ igraph_pseudo_diameter@Base 0.10.0
++ igraph_pseudo_diameter_dijkstra@Base 0.10.0
++ igraph_psumtree_destroy@Base 0.10.0
++ igraph_psumtree_get@Base 0.10.0
++ igraph_psumtree_init@Base 0.10.0
++ igraph_psumtree_reset@Base 0.10.0
++ igraph_psumtree_search@Base 0.10.0
++ igraph_psumtree_size@Base 0.10.0
++ igraph_psumtree_sum@Base 0.10.0
++ igraph_psumtree_update@Base 0.10.0
++ igraph_qsort@Base 0.10.0
++ igraph_qsort_r@Base 0.10.0
++ igraph_radius@Base 0.10.0
++ igraph_radius_dijkstra@Base 0.10.7
++ igraph_random_edge_walk@Base 0.10.0
++ igraph_random_sample@Base 0.10.0
++ igraph_random_spanning_tree@Base 0.10.0
++ igraph_random_walk@Base 0.10.0
++ igraph_reachability@Base 0.10.12
++ igraph_read_graph_dimacs@Base 0.10.0
++ igraph_read_graph_dimacs_flow@Base 0.10.0
++ igraph_read_graph_dl@Base 0.10.0
++ igraph_read_graph_edgelist@Base 0.10.0
++ igraph_read_graph_gml@Base 0.10.0
++ igraph_read_graph_graphdb@Base 0.10.0
++ igraph_read_graph_graphml@Base 0.10.0
++ igraph_read_graph_lgl@Base 0.10.0
++ igraph_read_graph_ncol@Base 0.10.0
++ igraph_read_graph_pajek@Base 0.10.0
++ igraph_real_fprintf@Base 0.10.0
++ igraph_real_fprintf_aligned@Base 0.10.0
++ igraph_real_fprintf_precise@Base 0.10.0
++ igraph_real_printf@Base 0.10.0
++ igraph_real_printf_aligned@Base 0.10.0
++ igraph_real_printf_precise@Base 0.10.0
++ igraph_real_snprintf@Base 0.10.0
++ igraph_real_snprintf_precise@Base 0.10.0
++ igraph_realize_bipartite_degree_sequence@Base 0.10.9
++ igraph_realize_degree_sequence@Base 0.10.0
++ igraph_realloc@Base 0.10.0
++ igraph_recent_degree_aging_game@Base 0.10.0
++ igraph_recent_degree_game@Base 0.10.0
++ igraph_reciprocity@Base 0.10.0
++ igraph_regular_tree@Base 0.10.0
++ igraph_reindex_membership@Base 0.10.0
++ igraph_residual_graph@Base 0.10.0
++ igraph_reverse_edges@Base 0.10.0
++ igraph_reverse_residual_graph@Base 0.10.0
++ igraph_rewire@Base 0.10.0
++ igraph_rewire_directed_edges@Base 0.10.0
++ igraph_rewire_edges@Base 0.10.0
++ igraph_ring@Base 0.10.0
++ igraph_rng_bits@Base 0.10.0
++ igraph_rng_default@Base 0.10.0
++ igraph_rng_destroy@Base 0.10.0
++ igraph_rng_get_binom@Base 0.10.0
++ igraph_rng_get_dirichlet@Base 0.10.0
++ igraph_rng_get_exp@Base 0.10.0
++ igraph_rng_get_gamma@Base 0.10.0
++ igraph_rng_get_geom@Base 0.10.0
++ igraph_rng_get_integer@Base 0.10.0
++ igraph_rng_get_normal@Base 0.10.0
++ igraph_rng_get_pois@Base 0.10.0
++ igraph_rng_get_unif01@Base 0.10.0
++ igraph_rng_get_unif@Base 0.10.0
++ igraph_rng_init@Base 0.10.0
++ igraph_rng_max@Base 0.10.0
++ igraph_rng_name@Base 0.10.0
++ igraph_rng_seed@Base 0.10.0
++ igraph_rng_set_default@Base 0.10.0
++ igraph_rngtype_glibc2@Base 0.10.0
++ igraph_rngtype_mt19937@Base 0.10.0
++ igraph_rngtype_pcg32@Base 0.10.0
++ igraph_rngtype_pcg64@Base 0.10.0
++ igraph_roots_for_tree_layout@Base 0.10.0
++ igraph_roulette_wheel_imitation@Base 0.10.0
++ igraph_running_mean@Base 0.10.0
++ igraph_sample_dirichlet@Base 0.10.0
++ igraph_sample_sphere_surface@Base 0.10.0
++ igraph_sample_sphere_volume@Base 0.10.0
++ igraph_sbm_game@Base 0.10.0
++ igraph_set_add@Base 0.10.0
++ igraph_set_attribute_table@Base 0.10.0
++ igraph_set_clear@Base 0.10.0
++ igraph_set_contains@Base 0.10.0
++ igraph_set_destroy@Base 0.10.0
++ igraph_set_empty@Base 0.10.0
++ igraph_set_error_handler@Base 0.10.0
++ igraph_set_fatal_handler@Base 0.10.0
++ igraph_set_init@Base 0.10.0
++ igraph_set_inited@Base 0.10.0
++ igraph_set_interruption_handler@Base 0.10.0
++ igraph_set_iterate@Base 0.10.0
++ igraph_set_progress_handler@Base 0.10.0
++ igraph_set_reserve@Base 0.10.0
++ igraph_set_size@Base 0.10.0
++ igraph_set_status_handler@Base 0.10.0
++ igraph_set_warning_handler@Base 0.10.0
++ igraph_shortest_paths@Base 0.10.0
++ igraph_shortest_paths_bellman_ford@Base 0.10.0
++ igraph_shortest_paths_dijkstra@Base 0.10.0
++ igraph_shortest_paths_johnson@Base 0.10.0
++ igraph_similarity_dice@Base 0.10.0
++ igraph_similarity_dice_es@Base 0.10.0
++ igraph_similarity_dice_pairs@Base 0.10.0
++ igraph_similarity_inverse_log_weighted@Base 0.10.0
++ igraph_similarity_jaccard@Base 0.10.0
++ igraph_similarity_jaccard_es@Base 0.10.0
++ igraph_similarity_jaccard_pairs@Base 0.10.0
++ igraph_simple_cycles@Base 0.10.15
++ igraph_simple_cycles_callback@Base 0.10.15
++ igraph_simple_interconnected_islands_game@Base 0.10.0
++ igraph_simplify@Base 0.10.0
++ igraph_simplify_and_colorize@Base 0.10.0
++ igraph_sir@Base 0.10.0
++ igraph_sir_destroy@Base 0.10.0
++ igraph_sir_init@Base 0.10.0
++ igraph_small@Base 0.10.0
++ igraph_solve_lsap@Base 0.10.0
++ igraph_sort_vertex_ids_by_degree@Base 0.10.0
++ igraph_spanner@Base 0.10.0
++ igraph_sparse_adjacency@Base 0.10.0
++ igraph_sparse_weighted_adjacency@Base 0.10.0
++ igraph_sparsemat@Base 0.10.0
++ igraph_sparsemat_add@Base 0.10.0
++ igraph_sparsemat_add_cols@Base 0.10.0
++ igraph_sparsemat_add_rows@Base 0.10.0
++ igraph_sparsemat_arpack_rnsolve@Base 0.10.0
++ igraph_sparsemat_arpack_rssolve@Base 0.10.0
++ igraph_sparsemat_as_matrix@Base 0.10.0
++ igraph_sparsemat_cholsol@Base 0.10.0
++ igraph_sparsemat_colmaxs@Base 0.10.0
++ igraph_sparsemat_colmins@Base 0.10.0
++ igraph_sparsemat_colsums@Base 0.10.0
++ igraph_sparsemat_compress@Base 0.10.0
++ igraph_sparsemat_copy@Base 0.10.0
++ igraph_sparsemat_count_nonzero@Base 0.10.0
++ igraph_sparsemat_count_nonzerotol@Base 0.10.0
++ igraph_sparsemat_dense_multiply@Base 0.10.0
++ igraph_sparsemat_destroy@Base 0.10.0
++ igraph_sparsemat_diag@Base 0.10.0
++ igraph_sparsemat_droptol@Base 0.10.0
++ igraph_sparsemat_dropzeros@Base 0.10.0
++ igraph_sparsemat_dupl@Base 0.10.0
++ igraph_sparsemat_entry@Base 0.10.0
++ igraph_sparsemat_eye@Base 0.10.0
++ igraph_sparsemat_fkeep@Base 0.10.0
++ igraph_sparsemat_gaxpy@Base 0.10.0
++ igraph_sparsemat_get@Base 0.10.0
++ igraph_sparsemat_getelements@Base 0.10.0
++ igraph_sparsemat_getelements_sorted@Base 0.10.0
++ igraph_sparsemat_index@Base 0.10.0
++ igraph_sparsemat_init@Base 0.10.0
++ igraph_sparsemat_init_copy@Base 0.10.0
++ igraph_sparsemat_init_diag@Base 0.10.0
++ igraph_sparsemat_init_eye@Base 0.10.0
++ igraph_sparsemat_is_cc@Base 0.10.0
++ igraph_sparsemat_is_symmetric@Base 0.10.0
++ igraph_sparsemat_is_triplet@Base 0.10.0
++ igraph_sparsemat_iterator_col@Base 0.10.0
++ igraph_sparsemat_iterator_end@Base 0.10.0
++ igraph_sparsemat_iterator_get@Base 0.10.0
++ igraph_sparsemat_iterator_idx@Base 0.10.0
++ igraph_sparsemat_iterator_init@Base 0.10.0
++ igraph_sparsemat_iterator_next@Base 0.10.0
++ igraph_sparsemat_iterator_reset@Base 0.10.0
++ igraph_sparsemat_iterator_row@Base 0.10.0
++ igraph_sparsemat_lsolve@Base 0.10.0
++ igraph_sparsemat_ltsolve@Base 0.10.0
++ igraph_sparsemat_lu@Base 0.10.0
++ igraph_sparsemat_luresol@Base 0.10.0
++ igraph_sparsemat_lusol@Base 0.10.0
++ igraph_sparsemat_max@Base 0.10.0
++ igraph_sparsemat_min@Base 0.10.0
++ igraph_sparsemat_minmax@Base 0.10.0
++ igraph_sparsemat_multiply@Base 0.10.0
++ igraph_sparsemat_multiply_by_dense@Base 0.10.0
++ igraph_sparsemat_ncol@Base 0.10.0
++ igraph_sparsemat_neg@Base 0.10.0
++ igraph_sparsemat_nonzero_storage@Base 0.10.0
++ igraph_sparsemat_normalize_cols@Base 0.10.0
++ igraph_sparsemat_normalize_rows@Base 0.10.0
++ igraph_sparsemat_nrow@Base 0.10.0
++ igraph_sparsemat_numeric_destroy@Base 0.10.0
++ igraph_sparsemat_nzmax@Base 0.10.0
++ igraph_sparsemat_permute@Base 0.10.0
++ igraph_sparsemat_print@Base 0.10.0
++ igraph_sparsemat_qr@Base 0.10.0
++ igraph_sparsemat_qrresol@Base 0.10.0
++ igraph_sparsemat_realloc@Base 0.10.0
++ igraph_sparsemat_resize@Base 0.10.0
++ igraph_sparsemat_rowmaxs@Base 0.10.0
++ igraph_sparsemat_rowmins@Base 0.10.0
++ igraph_sparsemat_rowsums@Base 0.10.0
++ igraph_sparsemat_scale@Base 0.10.0
++ igraph_sparsemat_scale_cols@Base 0.10.0
++ igraph_sparsemat_scale_rows@Base 0.10.0
++ igraph_sparsemat_sort@Base 0.10.0
++ igraph_sparsemat_symblu@Base 0.10.0
++ igraph_sparsemat_symbolic_destroy@Base 0.10.0
++ igraph_sparsemat_symbqr@Base 0.10.0
++ igraph_sparsemat_transpose@Base 0.10.0
++ igraph_sparsemat_type@Base 0.10.0
++ igraph_sparsemat_usolve@Base 0.10.0
++ igraph_sparsemat_utsolve@Base 0.10.0
++ igraph_sparsemat_view@Base 0.10.0
++ igraph_sparsemat_which_min_cols@Base 0.10.0
++ igraph_sparsemat_which_min_rows@Base 0.10.0
++ igraph_split_join_distance@Base 0.10.0
++ igraph_square_lattice@Base 0.10.0
++ igraph_st_edge_connectivity@Base 0.10.0
++ igraph_st_mincut@Base 0.10.0
++ igraph_st_mincut_value@Base 0.10.0
++ igraph_st_vertex_connectivity@Base 0.10.0
++ igraph_stack_bool_capacity@Base 0.10.13
++ igraph_stack_bool_clear@Base 0.10.0
++ igraph_stack_bool_destroy@Base 0.10.0
++ igraph_stack_bool_empty@Base 0.10.0
++ igraph_stack_bool_fprint@Base 0.10.0
++ igraph_stack_bool_init@Base 0.10.0
++ igraph_stack_bool_pop@Base 0.10.0
++ igraph_stack_bool_print@Base 0.10.0
++ igraph_stack_bool_push@Base 0.10.0
++ igraph_stack_bool_reserve@Base 0.10.0
++ igraph_stack_bool_size@Base 0.10.0
++ igraph_stack_bool_top@Base 0.10.0
++ igraph_stack_capacity@Base 0.10.13
++ igraph_stack_char_capacity@Base 0.10.13
++ igraph_stack_char_clear@Base 0.10.0
++ igraph_stack_char_destroy@Base 0.10.0
++ igraph_stack_char_empty@Base 0.10.0
++ igraph_stack_char_fprint@Base 0.10.0
++ igraph_stack_char_init@Base 0.10.0
++ igraph_stack_char_pop@Base 0.10.0
++ igraph_stack_char_print@Base 0.10.0
++ igraph_stack_char_push@Base 0.10.0
++ igraph_stack_char_reserve@Base 0.10.0
++ igraph_stack_char_size@Base 0.10.0
++ igraph_stack_char_top@Base 0.10.0
++ igraph_stack_clear@Base 0.10.0
++ igraph_stack_destroy@Base 0.10.0
++ igraph_stack_empty@Base 0.10.0
++ igraph_stack_fprint@Base 0.10.0
++ igraph_stack_init@Base 0.10.0
++ igraph_stack_int_capacity@Base 0.10.13
++ igraph_stack_int_clear@Base 0.10.0
++ igraph_stack_int_destroy@Base 0.10.0
++ igraph_stack_int_empty@Base 0.10.0
++ igraph_stack_int_fprint@Base 0.10.0
++ igraph_stack_int_init@Base 0.10.0
++ igraph_stack_int_pop@Base 0.10.0
++ igraph_stack_int_print@Base 0.10.0
++ igraph_stack_int_push@Base 0.10.0
++ igraph_stack_int_reserve@Base 0.10.0
++ igraph_stack_int_size@Base 0.10.0
++ igraph_stack_int_top@Base 0.10.0
++ igraph_stack_pop@Base 0.10.0
++ igraph_stack_print@Base 0.10.0
++ igraph_stack_push@Base 0.10.0
++ igraph_stack_reserve@Base 0.10.0
++ igraph_stack_size@Base 0.10.0
++ igraph_stack_top@Base 0.10.0
++ igraph_star@Base 0.10.0
++ igraph_static_fitness_game@Base 0.10.0
++ igraph_static_power_law_game@Base 0.10.0
++ igraph_status@Base 0.10.0
++ igraph_status_handler_stderr@Base 0.10.0
++ igraph_statusf@Base 0.10.0
++ igraph_stochastic_imitation@Base 0.10.0
++ igraph_strength@Base 0.10.0
++ igraph_strerror@Base 0.10.0
++ igraph_strvector_add@Base 0.10.0
++ igraph_strvector_append@Base 0.10.0
++ igraph_strvector_capacity@Base 0.10.0
++ igraph_strvector_clear@Base 0.10.0
++ igraph_strvector_copy@Base 0.10.0
++ igraph_strvector_destroy@Base 0.10.0
++ igraph_strvector_get@Base 0.10.0
++ igraph_strvector_index@Base 0.10.0
++ igraph_strvector_init@Base 0.10.0
++ igraph_strvector_init_copy@Base 0.10.0
++ igraph_strvector_merge@Base 0.10.0
++ igraph_strvector_print@Base 0.10.0
++ igraph_strvector_push_back@Base 0.10.0
++ igraph_strvector_push_back_len@Base 0.10.0
++ igraph_strvector_remove@Base 0.10.0
++ igraph_strvector_remove_section@Base 0.10.0
++ igraph_strvector_reserve@Base 0.10.0
++ igraph_strvector_resize@Base 0.10.0
++ igraph_strvector_resize_min@Base 0.10.15
++ igraph_strvector_set2@Base 0.10.0
++ igraph_strvector_set@Base 0.10.0
++ igraph_strvector_set_len@Base 0.10.0
++ igraph_strvector_size@Base 0.10.0
++ igraph_strvector_swap_elements@Base 0.10.15
++ igraph_subcomponent@Base 0.10.0
++ igraph_subgraph_edges@Base 0.10.0
++ igraph_subgraph_from_edges@Base 0.10.4
++ igraph_subisomorphic@Base 0.10.0
++ igraph_subisomorphic_function_vf2@Base 0.10.0
++ igraph_subisomorphic_lad@Base 0.10.0
++ igraph_subisomorphic_vf2@Base 0.10.0
++ igraph_symmetric_tree@Base 0.10.0
++ igraph_to_directed@Base 0.10.0
++ igraph_to_prufer@Base 0.10.0
++ igraph_to_undirected@Base 0.10.0
++ igraph_topological_sorting@Base 0.10.0
++ igraph_transitive_closure@Base 0.10.12
++ igraph_transitive_closure_dag@Base 0.10.0
++ igraph_transitivity_avglocal_undirected@Base 0.10.0
++ igraph_transitivity_barrat@Base 0.10.0
++ igraph_transitivity_local_undirected@Base 0.10.0
++ igraph_transitivity_undirected@Base 0.10.0
++ igraph_tree@Base 0.10.0
++ igraph_tree_from_parent_vector@Base 0.10.4
++ igraph_tree_game@Base 0.10.0
++ igraph_triad_census@Base 0.10.0
++ igraph_triangular_lattice@Base 0.10.4
++ igraph_trie_check@Base 0.10.0
++ igraph_trie_destroy@Base 0.10.0
++ igraph_trie_get@Base 0.10.0
++ igraph_trie_get_len@Base 0.10.0
++ igraph_trie_idx@Base 0.10.0
++ igraph_trie_init@Base 0.10.0
++ igraph_trie_size@Base 0.10.0
++ igraph_trussness@Base 0.10.0
++ igraph_turan@Base 0.10.0
++ igraph_unfold_tree@Base 0.10.0
++ igraph_union@Base 0.10.0
++ igraph_union_many@Base 0.10.0
++ igraph_vcount@Base 0.10.0
++ igraph_vector_abs@Base 0.10.0
++ igraph_vector_add@Base 0.10.0
++ igraph_vector_add_constant@Base 0.10.0
++ igraph_vector_all_almost_e@Base 0.10.0
++ igraph_vector_all_e@Base 0.10.0
++ igraph_vector_all_g@Base 0.10.0
++ igraph_vector_all_ge@Base 0.10.0
++ igraph_vector_all_l@Base 0.10.0
++ igraph_vector_all_le@Base 0.10.0
++ igraph_vector_any_smaller@Base 0.10.0
++ igraph_vector_append@Base 0.10.0
++ igraph_vector_binsearch2@Base 0.10.0
++ igraph_vector_binsearch@Base 0.10.0
++ igraph_vector_binsearch_slice@Base 0.10.0
++ igraph_vector_bool_add@Base 0.10.0
++ igraph_vector_bool_add_constant@Base 0.10.0
++ igraph_vector_bool_all_e@Base 0.10.0
++ igraph_vector_bool_append@Base 0.10.0
++ igraph_vector_bool_capacity@Base 0.10.0
++ igraph_vector_bool_clear@Base 0.10.0
++ igraph_vector_bool_contains@Base 0.10.0
++ igraph_vector_bool_copy@Base 0.10.0
++ igraph_vector_bool_copy_to@Base 0.10.0
++ igraph_vector_bool_cumsum@Base 0.10.0
++ igraph_vector_bool_destroy@Base 0.10.0
++ igraph_vector_bool_div@Base 0.10.0
++ igraph_vector_bool_e@Base 0.10.0
++ igraph_vector_bool_e_ptr@Base 0.10.0
++ igraph_vector_bool_empty@Base 0.10.0
++ igraph_vector_bool_fill@Base 0.10.0
++ igraph_vector_bool_fprint@Base 0.10.0
++ igraph_vector_bool_get@Base 0.10.0
++ igraph_vector_bool_get_interval@Base 0.10.0
++ igraph_vector_bool_get_ptr@Base 0.10.0
++ igraph_vector_bool_index@Base 0.10.0
++ igraph_vector_bool_index_int@Base 0.10.0
++ igraph_vector_bool_init@Base 0.10.0
++ igraph_vector_bool_init_array@Base 0.10.0
++ igraph_vector_bool_init_copy@Base 0.10.0
++ igraph_vector_bool_init_int@Base 0.10.0
++ igraph_vector_bool_init_int_end@Base 0.10.0
++ igraph_vector_bool_init_real@Base 0.10.0
++ igraph_vector_bool_init_real_end@Base 0.10.0
++ igraph_vector_bool_insert@Base 0.10.0
++ igraph_vector_bool_is_equal@Base 0.10.0
++ igraph_vector_bool_isnull@Base 0.10.0
++ igraph_vector_bool_move_interval2@Base 0.10.0
++ igraph_vector_bool_move_interval@Base 0.10.0
++ igraph_vector_bool_mul@Base 0.10.0
++ igraph_vector_bool_null@Base 0.10.0
++ igraph_vector_bool_pop_back@Base 0.10.0
++ igraph_vector_bool_print@Base 0.10.0
++ igraph_vector_bool_printf@Base 0.10.0
++ igraph_vector_bool_prod@Base 0.10.0
++ igraph_vector_bool_push_back@Base 0.10.0
++ igraph_vector_bool_remove@Base 0.10.0
++ igraph_vector_bool_remove_fast@Base 0.10.0
++ igraph_vector_bool_remove_section@Base 0.10.0
++ igraph_vector_bool_reserve@Base 0.10.0
++ igraph_vector_bool_resize@Base 0.10.0
++ igraph_vector_bool_resize_min@Base 0.10.0
++ igraph_vector_bool_reverse@Base 0.10.0
++ igraph_vector_bool_reverse_section@Base 0.10.15
++ igraph_vector_bool_rotate_left@Base 0.10.15
++ igraph_vector_bool_scale@Base 0.10.0
++ igraph_vector_bool_search@Base 0.10.0
++ igraph_vector_bool_set@Base 0.10.0
++ igraph_vector_bool_shuffle@Base 0.10.0
++ igraph_vector_bool_size@Base 0.10.0
++ igraph_vector_bool_sub@Base 0.10.0
++ igraph_vector_bool_sum@Base 0.10.0
++ igraph_vector_bool_sumsq@Base 0.10.0
++ igraph_vector_bool_swap@Base 0.10.0
++ igraph_vector_bool_swap_elements@Base 0.10.0
++ igraph_vector_bool_tail@Base 0.10.0
++ igraph_vector_bool_update@Base 0.10.0
++ igraph_vector_bool_view@Base 0.10.0
++ igraph_vector_capacity@Base 0.10.0
++ igraph_vector_char_abs@Base 0.10.0
++ igraph_vector_char_add@Base 0.10.0
++ igraph_vector_char_add_constant@Base 0.10.0
++ igraph_vector_char_all_e@Base 0.10.0
++ igraph_vector_char_all_g@Base 0.10.0
++ igraph_vector_char_all_ge@Base 0.10.0
++ igraph_vector_char_all_l@Base 0.10.0
++ igraph_vector_char_all_le@Base 0.10.0
++ igraph_vector_char_any_smaller@Base 0.10.0
++ igraph_vector_char_append@Base 0.10.0
++ igraph_vector_char_binsearch2@Base 0.10.0
++ igraph_vector_char_binsearch@Base 0.10.0
++ igraph_vector_char_binsearch_slice@Base 0.10.0
++ igraph_vector_char_capacity@Base 0.10.0
++ igraph_vector_char_clear@Base 0.10.0
++ igraph_vector_char_colex_cmp@Base 0.10.0
++ igraph_vector_char_colex_cmp_untyped@Base 0.10.0
++ igraph_vector_char_contains@Base 0.10.0
++ igraph_vector_char_contains_sorted@Base 0.10.15
++ igraph_vector_char_copy@Base 0.10.0
++ igraph_vector_char_copy_to@Base 0.10.0
++ igraph_vector_char_cumsum@Base 0.10.0
++ igraph_vector_char_destroy@Base 0.10.0
++ igraph_vector_char_difference_sorted@Base 0.10.0
++ igraph_vector_char_div@Base 0.10.0
++ igraph_vector_char_e@Base 0.10.0
++ igraph_vector_char_e_ptr@Base 0.10.0
++ igraph_vector_char_empty@Base 0.10.0
++ igraph_vector_char_fill@Base 0.10.0
++ igraph_vector_char_filter_smaller@Base 0.10.0
++ igraph_vector_char_fprint@Base 0.10.0
++ igraph_vector_char_get@Base 0.10.0
++ igraph_vector_char_get_interval@Base 0.10.0
++ igraph_vector_char_get_ptr@Base 0.10.0
++ igraph_vector_char_index@Base 0.10.0
++ igraph_vector_char_index_int@Base 0.10.0
++ igraph_vector_char_init@Base 0.10.0
++ igraph_vector_char_init_array@Base 0.10.0
++ igraph_vector_char_init_copy@Base 0.10.0
++ igraph_vector_char_init_int@Base 0.10.0
++ igraph_vector_char_init_int_end@Base 0.10.0
++ igraph_vector_char_init_range@Base 0.10.0
++ igraph_vector_char_init_real@Base 0.10.0
++ igraph_vector_char_init_real_end@Base 0.10.0
++ igraph_vector_char_init_seq@Base 0.10.0
++ igraph_vector_char_insert@Base 0.10.0
++ igraph_vector_char_intersect_sorted@Base 0.10.0
++ igraph_vector_char_intersection_size_sorted@Base 0.10.13
++ igraph_vector_char_is_equal@Base 0.10.0
++ igraph_vector_char_isininterval@Base 0.10.0
++ igraph_vector_char_isnull@Base 0.10.0
++ igraph_vector_char_lex_cmp@Base 0.10.0
++ igraph_vector_char_lex_cmp_untyped@Base 0.10.0
++ igraph_vector_char_max@Base 0.10.0
++ igraph_vector_char_maxdifference@Base 0.10.0
++ igraph_vector_char_min@Base 0.10.0
++ igraph_vector_char_minmax@Base 0.10.0
++ igraph_vector_char_move_interval2@Base 0.10.0
++ igraph_vector_char_move_interval@Base 0.10.0
++ igraph_vector_char_mul@Base 0.10.0
++ igraph_vector_char_null@Base 0.10.0
++ igraph_vector_char_permute@Base 0.10.0
++ igraph_vector_char_pop_back@Base 0.10.0
++ igraph_vector_char_print@Base 0.10.0
++ igraph_vector_char_printf@Base 0.10.0
++ igraph_vector_char_prod@Base 0.10.0
++ igraph_vector_char_push_back@Base 0.10.0
++ igraph_vector_char_qsort_ind@Base 0.10.0
++ igraph_vector_char_range@Base 0.10.0
++ igraph_vector_char_remove@Base 0.10.0
++ igraph_vector_char_remove_fast@Base 0.10.0
++ igraph_vector_char_remove_section@Base 0.10.0
++ igraph_vector_char_reserve@Base 0.10.0
++ igraph_vector_char_resize@Base 0.10.0
++ igraph_vector_char_resize_min@Base 0.10.0
++ igraph_vector_char_reverse@Base 0.10.0
++ igraph_vector_char_reverse_section@Base 0.10.15
++ igraph_vector_char_reverse_sort@Base 0.10.0
++ igraph_vector_char_rotate_left@Base 0.10.15
++ igraph_vector_char_scale@Base 0.10.0
++ igraph_vector_char_search@Base 0.10.0
++ igraph_vector_char_set@Base 0.10.0
++ igraph_vector_char_shuffle@Base 0.10.0
++ igraph_vector_char_size@Base 0.10.0
++ igraph_vector_char_sort@Base 0.10.0
++ igraph_vector_char_sort_ind@Base 0.10.15
++ igraph_vector_char_sub@Base 0.10.0
++ igraph_vector_char_sum@Base 0.10.0
++ igraph_vector_char_sumsq@Base 0.10.0
++ igraph_vector_char_swap@Base 0.10.0
++ igraph_vector_char_swap_elements@Base 0.10.0
++ igraph_vector_char_tail@Base 0.10.0
++ igraph_vector_char_update@Base 0.10.0
++ igraph_vector_char_view@Base 0.10.0
++ igraph_vector_char_which_max@Base 0.10.0
++ igraph_vector_char_which_min@Base 0.10.0
++ igraph_vector_char_which_minmax@Base 0.10.0
++ igraph_vector_clear@Base 0.10.0
++ igraph_vector_colex_cmp@Base 0.10.0
++ igraph_vector_colex_cmp_untyped@Base 0.10.0
++ igraph_vector_complex_add@Base 0.10.0
++ igraph_vector_complex_add_constant@Base 0.10.0
++ igraph_vector_complex_all_almost_e@Base 0.10.0
++ igraph_vector_complex_all_e@Base 0.10.0
++ igraph_vector_complex_append@Base 0.10.0
++ igraph_vector_complex_capacity@Base 0.10.0
++ igraph_vector_complex_clear@Base 0.10.0
++ igraph_vector_complex_contains@Base 0.10.0
++ igraph_vector_complex_copy@Base 0.10.0
++ igraph_vector_complex_copy_to@Base 0.10.0
++ igraph_vector_complex_create@Base 0.10.0
++ igraph_vector_complex_create_polar@Base 0.10.0
++ igraph_vector_complex_cumsum@Base 0.10.0
++ igraph_vector_complex_destroy@Base 0.10.0
++ igraph_vector_complex_div@Base 0.10.0
++ igraph_vector_complex_e@Base 0.10.0
++ igraph_vector_complex_e_ptr@Base 0.10.0
++ igraph_vector_complex_empty@Base 0.10.0
++ igraph_vector_complex_fill@Base 0.10.0
++ igraph_vector_complex_fprint@Base 0.10.0
++ igraph_vector_complex_get@Base 0.10.0
++ igraph_vector_complex_get_interval@Base 0.10.0
++ igraph_vector_complex_get_ptr@Base 0.10.0
++ igraph_vector_complex_imag@Base 0.10.0
++ igraph_vector_complex_index@Base 0.10.0
++ igraph_vector_complex_index_int@Base 0.10.0
++ igraph_vector_complex_init@Base 0.10.0
++ igraph_vector_complex_init_array@Base 0.10.0
++ igraph_vector_complex_init_copy@Base 0.10.0
++ igraph_vector_complex_insert@Base 0.10.0
++ igraph_vector_complex_is_equal@Base 0.10.0
++ igraph_vector_complex_isnull@Base 0.10.0
++ igraph_vector_complex_move_interval2@Base 0.10.0
++ igraph_vector_complex_move_interval@Base 0.10.0
++ igraph_vector_complex_mul@Base 0.10.0
++ igraph_vector_complex_null@Base 0.10.0
++ igraph_vector_complex_pop_back@Base 0.10.0
++ igraph_vector_complex_print@Base 0.10.0
++ igraph_vector_complex_prod@Base 0.10.0
++ igraph_vector_complex_push_back@Base 0.10.0
++ igraph_vector_complex_real@Base 0.10.0
++ igraph_vector_complex_realimag@Base 0.10.0
++ igraph_vector_complex_remove@Base 0.10.0
++ igraph_vector_complex_remove_fast@Base 0.10.0
++ igraph_vector_complex_remove_section@Base 0.10.0
++ igraph_vector_complex_reserve@Base 0.10.0
++ igraph_vector_complex_resize@Base 0.10.0
++ igraph_vector_complex_resize_min@Base 0.10.0
++ igraph_vector_complex_reverse@Base 0.10.0
++ igraph_vector_complex_reverse_section@Base 0.10.15
++ igraph_vector_complex_rotate_left@Base 0.10.15
++ igraph_vector_complex_scale@Base 0.10.0
++ igraph_vector_complex_search@Base 0.10.0
++ igraph_vector_complex_set@Base 0.10.0
++ igraph_vector_complex_shuffle@Base 0.10.0
++ igraph_vector_complex_size@Base 0.10.0
++ igraph_vector_complex_sub@Base 0.10.0
++ igraph_vector_complex_sum@Base 0.10.0
++ igraph_vector_complex_sumsq@Base 0.10.0
++ igraph_vector_complex_swap@Base 0.10.0
++ igraph_vector_complex_swap_elements@Base 0.10.0
++ igraph_vector_complex_tail@Base 0.10.0
++ igraph_vector_complex_update@Base 0.10.0
++ igraph_vector_complex_view@Base 0.10.0
++ igraph_vector_complex_zapsmall@Base 0.10.0
++ igraph_vector_contains@Base 0.10.0
++ igraph_vector_contains_sorted@Base 0.10.15
++ igraph_vector_copy@Base 0.10.0
++ igraph_vector_copy_to@Base 0.10.0
++ igraph_vector_cumsum@Base 0.10.0
++ igraph_vector_destroy@Base 0.10.0
++ igraph_vector_difference_sorted@Base 0.10.0
++ igraph_vector_div@Base 0.10.0
++ igraph_vector_e@Base 0.10.0
++ igraph_vector_e_ptr@Base 0.10.0
++ igraph_vector_e_tol@Base 0.10.0
++ igraph_vector_empty@Base 0.10.0
++ igraph_vector_fill@Base 0.10.0
++ igraph_vector_filter_smaller@Base 0.10.0
++ igraph_vector_floor@Base 0.10.0
++ igraph_vector_fortran_int_abs@Base 0.10.0
++ igraph_vector_fortran_int_add@Base 0.10.0
++ igraph_vector_fortran_int_add_constant@Base 0.10.0
++ igraph_vector_fortran_int_all_e@Base 0.10.0
++ igraph_vector_fortran_int_all_g@Base 0.10.0
++ igraph_vector_fortran_int_all_ge@Base 0.10.0
++ igraph_vector_fortran_int_all_l@Base 0.10.0
++ igraph_vector_fortran_int_all_le@Base 0.10.0
++ igraph_vector_fortran_int_any_smaller@Base 0.10.0
++ igraph_vector_fortran_int_append@Base 0.10.0
++ igraph_vector_fortran_int_binsearch2@Base 0.10.0
++ igraph_vector_fortran_int_binsearch@Base 0.10.0
++ igraph_vector_fortran_int_binsearch_slice@Base 0.10.0
++ igraph_vector_fortran_int_capacity@Base 0.10.0
++ igraph_vector_fortran_int_clear@Base 0.10.0
++ igraph_vector_fortran_int_colex_cmp@Base 0.10.0
++ igraph_vector_fortran_int_colex_cmp_untyped@Base 0.10.0
++ igraph_vector_fortran_int_contains@Base 0.10.0
++ igraph_vector_fortran_int_contains_sorted@Base 0.10.15
++ igraph_vector_fortran_int_copy@Base 0.10.0
++ igraph_vector_fortran_int_copy_to@Base 0.10.0
++ igraph_vector_fortran_int_cumsum@Base 0.10.0
++ igraph_vector_fortran_int_destroy@Base 0.10.0
++ igraph_vector_fortran_int_difference_sorted@Base 0.10.0
++ igraph_vector_fortran_int_div@Base 0.10.0
++ igraph_vector_fortran_int_e@Base 0.10.0
++ igraph_vector_fortran_int_e_ptr@Base 0.10.0
++ igraph_vector_fortran_int_empty@Base 0.10.0
++ igraph_vector_fortran_int_fill@Base 0.10.0
++ igraph_vector_fortran_int_filter_smaller@Base 0.10.0
++ igraph_vector_fortran_int_fprint@Base 0.10.0
++ igraph_vector_fortran_int_get@Base 0.10.0
++ igraph_vector_fortran_int_get_interval@Base 0.10.0
++ igraph_vector_fortran_int_get_ptr@Base 0.10.0
++ igraph_vector_fortran_int_index@Base 0.10.0
++ igraph_vector_fortran_int_index_int@Base 0.10.0
++ igraph_vector_fortran_int_init@Base 0.10.0
++ igraph_vector_fortran_int_init_array@Base 0.10.0
++ igraph_vector_fortran_int_init_copy@Base 0.10.0
++ igraph_vector_fortran_int_init_int@Base 0.10.0
++ igraph_vector_fortran_int_init_int_end@Base 0.10.0
++ igraph_vector_fortran_int_init_range@Base 0.10.0
++ igraph_vector_fortran_int_init_real@Base 0.10.0
++ igraph_vector_fortran_int_init_real_end@Base 0.10.0
++ igraph_vector_fortran_int_init_seq@Base 0.10.0
++ igraph_vector_fortran_int_insert@Base 0.10.0
++ igraph_vector_fortran_int_intersect_sorted@Base 0.10.0
++ igraph_vector_fortran_int_intersection_size_sorted@Base 0.10.13
++ igraph_vector_fortran_int_is_equal@Base 0.10.0
++ igraph_vector_fortran_int_isininterval@Base 0.10.0
++ igraph_vector_fortran_int_isnull@Base 0.10.0
++ igraph_vector_fortran_int_lex_cmp@Base 0.10.0
++ igraph_vector_fortran_int_lex_cmp_untyped@Base 0.10.0
++ igraph_vector_fortran_int_max@Base 0.10.0
++ igraph_vector_fortran_int_maxdifference@Base 0.10.0
++ igraph_vector_fortran_int_min@Base 0.10.0
++ igraph_vector_fortran_int_minmax@Base 0.10.0
++ igraph_vector_fortran_int_move_interval2@Base 0.10.0
++ igraph_vector_fortran_int_move_interval@Base 0.10.0
++ igraph_vector_fortran_int_mul@Base 0.10.0
++ igraph_vector_fortran_int_null@Base 0.10.0
++ igraph_vector_fortran_int_permute@Base 0.10.0
++ igraph_vector_fortran_int_pop_back@Base 0.10.0
++ igraph_vector_fortran_int_print@Base 0.10.0
++ igraph_vector_fortran_int_printf@Base 0.10.0
++ igraph_vector_fortran_int_prod@Base 0.10.0
++ igraph_vector_fortran_int_push_back@Base 0.10.0
++ igraph_vector_fortran_int_qsort_ind@Base 0.10.0
++ igraph_vector_fortran_int_range@Base 0.10.0
++ igraph_vector_fortran_int_remove@Base 0.10.0
++ igraph_vector_fortran_int_remove_fast@Base 0.10.0
++ igraph_vector_fortran_int_remove_section@Base 0.10.0
++ igraph_vector_fortran_int_reserve@Base 0.10.0
++ igraph_vector_fortran_int_resize@Base 0.10.0
++ igraph_vector_fortran_int_resize_min@Base 0.10.0
++ igraph_vector_fortran_int_reverse@Base 0.10.0
++ igraph_vector_fortran_int_reverse_section@Base 0.10.15
++ igraph_vector_fortran_int_reverse_sort@Base 0.10.0
++ igraph_vector_fortran_int_rotate_left@Base 0.10.15
++ igraph_vector_fortran_int_scale@Base 0.10.0
++ igraph_vector_fortran_int_search@Base 0.10.0
++ igraph_vector_fortran_int_set@Base 0.10.0
++ igraph_vector_fortran_int_shuffle@Base 0.10.0
++ igraph_vector_fortran_int_size@Base 0.10.0
++ igraph_vector_fortran_int_sort@Base 0.10.0
++ igraph_vector_fortran_int_sort_ind@Base 0.10.15
++ igraph_vector_fortran_int_sub@Base 0.10.0
++ igraph_vector_fortran_int_sum@Base 0.10.0
++ igraph_vector_fortran_int_sumsq@Base 0.10.0
++ igraph_vector_fortran_int_swap@Base 0.10.0
++ igraph_vector_fortran_int_swap_elements@Base 0.10.0
++ igraph_vector_fortran_int_tail@Base 0.10.0
++ igraph_vector_fortran_int_update@Base 0.10.0
++ igraph_vector_fortran_int_view@Base 0.10.0
++ igraph_vector_fortran_int_which_max@Base 0.10.0
++ igraph_vector_fortran_int_which_min@Base 0.10.0
++ igraph_vector_fortran_int_which_minmax@Base 0.10.0
++ igraph_vector_fprint@Base 0.10.0
++ igraph_vector_get@Base 0.10.0
++ igraph_vector_get_interval@Base 0.10.0
++ igraph_vector_get_ptr@Base 0.10.0
++ igraph_vector_index@Base 0.10.0
++ igraph_vector_index_int@Base 0.10.0
++ igraph_vector_init@Base 0.10.0
++ igraph_vector_init_array@Base 0.10.0
++ igraph_vector_init_copy@Base 0.10.0
++ igraph_vector_init_int@Base 0.10.0
++ igraph_vector_init_int_end@Base 0.10.0
++ igraph_vector_init_range@Base 0.10.0
++ igraph_vector_init_real@Base 0.10.0
++ igraph_vector_init_real_end@Base 0.10.0
++ igraph_vector_init_seq@Base 0.10.0
++ igraph_vector_insert@Base 0.10.0
++ igraph_vector_int_abs@Base 0.10.0
++ igraph_vector_int_add@Base 0.10.0
++ igraph_vector_int_add_constant@Base 0.10.0
++ igraph_vector_int_all_e@Base 0.10.0
++ igraph_vector_int_all_g@Base 0.10.0
++ igraph_vector_int_all_ge@Base 0.10.0
++ igraph_vector_int_all_l@Base 0.10.0
++ igraph_vector_int_all_le@Base 0.10.0
++ igraph_vector_int_any_smaller@Base 0.10.0
++ igraph_vector_int_append@Base 0.10.0
++ igraph_vector_int_binsearch2@Base 0.10.0
++ igraph_vector_int_binsearch@Base 0.10.0
++ igraph_vector_int_binsearch_slice@Base 0.10.0
++ igraph_vector_int_capacity@Base 0.10.0
++ igraph_vector_int_clear@Base 0.10.0
++ igraph_vector_int_colex_cmp@Base 0.10.0
++ igraph_vector_int_colex_cmp_untyped@Base 0.10.0
++ igraph_vector_int_contains@Base 0.10.0
++ igraph_vector_int_contains_sorted@Base 0.10.15
++ igraph_vector_int_copy@Base 0.10.0
++ igraph_vector_int_copy_to@Base 0.10.0
++ igraph_vector_int_cumsum@Base 0.10.0
++ igraph_vector_int_destroy@Base 0.10.0
++ igraph_vector_int_difference_sorted@Base 0.10.0
++ igraph_vector_int_div@Base 0.10.0
++ igraph_vector_int_e@Base 0.10.0
++ igraph_vector_int_e_ptr@Base 0.10.0
++ igraph_vector_int_empty@Base 0.10.0
++ igraph_vector_int_fill@Base 0.10.0
++ igraph_vector_int_filter_smaller@Base 0.10.0
++ igraph_vector_int_fprint@Base 0.10.0
++ igraph_vector_int_get@Base 0.10.0
++ igraph_vector_int_get_interval@Base 0.10.0
++ igraph_vector_int_get_ptr@Base 0.10.0
++ igraph_vector_int_index@Base 0.10.0
++ igraph_vector_int_index_int@Base 0.10.0
++ igraph_vector_int_init@Base 0.10.0
++ igraph_vector_int_init_array@Base 0.10.0
++ igraph_vector_int_init_copy@Base 0.10.0
++ igraph_vector_int_init_int@Base 0.10.0
++ igraph_vector_int_init_int_end@Base 0.10.0
++ igraph_vector_int_init_range@Base 0.10.0
++ igraph_vector_int_init_real@Base 0.10.0
++ igraph_vector_int_init_real_end@Base 0.10.0
++ igraph_vector_int_init_seq@Base 0.10.0
++ igraph_vector_int_insert@Base 0.10.0
++ igraph_vector_int_intersect_sorted@Base 0.10.0
++ igraph_vector_int_intersection_size_sorted@Base 0.10.13
++ igraph_vector_int_is_equal@Base 0.10.0
++ igraph_vector_int_isininterval@Base 0.10.0
++ igraph_vector_int_isnull@Base 0.10.0
++ igraph_vector_int_lex_cmp@Base 0.10.0
++ igraph_vector_int_lex_cmp_untyped@Base 0.10.0
++ igraph_vector_int_list_capacity@Base 0.10.0
++ igraph_vector_int_list_clear@Base 0.10.0
++ igraph_vector_int_list_destroy@Base 0.10.0
++ igraph_vector_int_list_discard@Base 0.10.0
++ igraph_vector_int_list_discard_back@Base 0.10.0
++ igraph_vector_int_list_discard_fast@Base 0.10.0
++ igraph_vector_int_list_empty@Base 0.10.0
++ igraph_vector_int_list_get_ptr@Base 0.10.0
++ igraph_vector_int_list_init@Base 0.10.0
++ igraph_vector_int_list_insert@Base 0.10.0
++ igraph_vector_int_list_insert_copy@Base 0.10.0
++ igraph_vector_int_list_insert_new@Base 0.10.0
++ igraph_vector_int_list_permute@Base 0.10.0
++ igraph_vector_int_list_pop_back@Base 0.10.0
++ igraph_vector_int_list_push_back@Base 0.10.0
++ igraph_vector_int_list_push_back_copy@Base 0.10.0
++ igraph_vector_int_list_push_back_new@Base 0.10.0
++ igraph_vector_int_list_remove@Base 0.10.0
++ igraph_vector_int_list_remove_consecutive_duplicates@Base 0.10.0
++ igraph_vector_int_list_remove_fast@Base 0.10.0
++ igraph_vector_int_list_replace@Base 0.10.0
++ igraph_vector_int_list_reserve@Base 0.10.0
++ igraph_vector_int_list_resize@Base 0.10.0
++ igraph_vector_int_list_reverse@Base 0.10.4
++ igraph_vector_int_list_set@Base 0.10.0
++ igraph_vector_int_list_size@Base 0.10.0
++ igraph_vector_int_list_sort@Base 0.10.0
++ igraph_vector_int_list_sort_ind@Base 0.10.0
++ igraph_vector_int_list_swap@Base 0.10.0
++ igraph_vector_int_list_swap_elements@Base 0.10.0
++ igraph_vector_int_list_tail_ptr@Base 0.10.0
++ igraph_vector_int_max@Base 0.10.0
++ igraph_vector_int_maxdifference@Base 0.10.0
++ igraph_vector_int_min@Base 0.10.0
++ igraph_vector_int_minmax@Base 0.10.0
++ igraph_vector_int_move_interval2@Base 0.10.0
++ igraph_vector_int_move_interval@Base 0.10.0
++ igraph_vector_int_mul@Base 0.10.0
++ igraph_vector_int_null@Base 0.10.0
++ igraph_vector_int_order1@Base 0.10.0
++ igraph_vector_int_pair_order@Base 0.10.0
++ igraph_vector_int_permute@Base 0.10.0
++ igraph_vector_int_pop_back@Base 0.10.0
++ igraph_vector_int_print@Base 0.10.0
++ igraph_vector_int_printf@Base 0.10.0
++ igraph_vector_int_prod@Base 0.10.0
++ igraph_vector_int_push_back@Base 0.10.0
++ igraph_vector_int_qsort_ind@Base 0.10.0
++ igraph_vector_int_range@Base 0.10.0
++ igraph_vector_int_rank@Base 0.10.0
++ igraph_vector_int_remove@Base 0.10.0
++ igraph_vector_int_remove_fast@Base 0.10.0
++ igraph_vector_int_remove_section@Base 0.10.0
++ igraph_vector_int_reserve@Base 0.10.0
++ igraph_vector_int_resize@Base 0.10.0
++ igraph_vector_int_resize_min@Base 0.10.0
++ igraph_vector_int_reverse@Base 0.10.0
++ igraph_vector_int_reverse_section@Base 0.10.15
++ igraph_vector_int_reverse_sort@Base 0.10.0
++ igraph_vector_int_rotate_left@Base 0.10.15
++ igraph_vector_int_scale@Base 0.10.0
++ igraph_vector_int_search@Base 0.10.0
++ igraph_vector_int_set@Base 0.10.0
++ igraph_vector_int_shuffle@Base 0.10.0
++ igraph_vector_int_size@Base 0.10.0
++ igraph_vector_int_sort@Base 0.10.0
++ igraph_vector_int_sort_ind@Base 0.10.15
++ igraph_vector_int_sub@Base 0.10.0
++ igraph_vector_int_sum@Base 0.10.0
++ igraph_vector_int_sumsq@Base 0.10.0
++ igraph_vector_int_swap@Base 0.10.0
++ igraph_vector_int_swap_elements@Base 0.10.0
++ igraph_vector_int_tail@Base 0.10.0
++ igraph_vector_int_update@Base 0.10.0
++ igraph_vector_int_view@Base 0.10.0
++ igraph_vector_int_which_max@Base 0.10.0
++ igraph_vector_int_which_min@Base 0.10.0
++ igraph_vector_int_which_minmax@Base 0.10.0
++ igraph_vector_intersect_sorted@Base 0.10.0
++ igraph_vector_intersection_size_sorted@Base 0.10.13
++ igraph_vector_is_all_finite@Base 0.10.13
++ igraph_vector_is_any_nan@Base 0.10.0
++ igraph_vector_is_equal@Base 0.10.0
++ igraph_vector_is_nan@Base 0.10.0
++ igraph_vector_isininterval@Base 0.10.0
++ igraph_vector_isnull@Base 0.10.0
++ igraph_vector_lex_cmp@Base 0.10.0
++ igraph_vector_lex_cmp_untyped@Base 0.10.0
++ igraph_vector_list_capacity@Base 0.10.0
++ igraph_vector_list_clear@Base 0.10.0
++ igraph_vector_list_destroy@Base 0.10.0
++ igraph_vector_list_discard@Base 0.10.0
++ igraph_vector_list_discard_back@Base 0.10.0
++ igraph_vector_list_discard_fast@Base 0.10.0
++ igraph_vector_list_empty@Base 0.10.0
++ igraph_vector_list_get_ptr@Base 0.10.0
++ igraph_vector_list_init@Base 0.10.0
++ igraph_vector_list_insert@Base 0.10.0
++ igraph_vector_list_insert_copy@Base 0.10.0
++ igraph_vector_list_insert_new@Base 0.10.0
++ igraph_vector_list_permute@Base 0.10.0
++ igraph_vector_list_pop_back@Base 0.10.0
++ igraph_vector_list_push_back@Base 0.10.0
++ igraph_vector_list_push_back_copy@Base 0.10.0
++ igraph_vector_list_push_back_new@Base 0.10.0
++ igraph_vector_list_remove@Base 0.10.0
++ igraph_vector_list_remove_consecutive_duplicates@Base 0.10.0
++ igraph_vector_list_remove_fast@Base 0.10.0
++ igraph_vector_list_replace@Base 0.10.0
++ igraph_vector_list_reserve@Base 0.10.0
++ igraph_vector_list_resize@Base 0.10.0
++ igraph_vector_list_reverse@Base 0.10.4
++ igraph_vector_list_set@Base 0.10.0
++ igraph_vector_list_size@Base 0.10.0
++ igraph_vector_list_sort@Base 0.10.0
++ igraph_vector_list_sort_ind@Base 0.10.0
++ igraph_vector_list_swap@Base 0.10.0
++ igraph_vector_list_swap_elements@Base 0.10.0
++ igraph_vector_list_tail_ptr@Base 0.10.0
++ igraph_vector_max@Base 0.10.0
++ igraph_vector_maxdifference@Base 0.10.0
++ igraph_vector_min@Base 0.10.0
++ igraph_vector_minmax@Base 0.10.0
++ igraph_vector_move_interval2@Base 0.10.0
++ igraph_vector_move_interval@Base 0.10.0
++ igraph_vector_mul@Base 0.10.0
++ igraph_vector_null@Base 0.10.0
++ igraph_vector_order2@Base 0.10.0
++ igraph_vector_permute@Base 0.10.0
++ igraph_vector_pop_back@Base 0.10.0
++ igraph_vector_print@Base 0.10.0
++ igraph_vector_printf@Base 0.10.0
++ igraph_vector_prod@Base 0.10.0
++ igraph_vector_ptr_append@Base 0.10.0
++ igraph_vector_ptr_clear@Base 0.10.0
++ igraph_vector_ptr_copy@Base 0.10.0
++ igraph_vector_ptr_copy_to@Base 0.10.0
++ igraph_vector_ptr_destroy@Base 0.10.0
++ igraph_vector_ptr_destroy_all@Base 0.10.0
++ igraph_vector_ptr_e@Base 0.10.0
++ igraph_vector_ptr_empty@Base 0.10.0
++ igraph_vector_ptr_free_all@Base 0.10.0
++ igraph_vector_ptr_get@Base 0.10.0
++ igraph_vector_ptr_get_item_destructor@Base 0.10.0
++ igraph_vector_ptr_init@Base 0.10.0
++ igraph_vector_ptr_init_array@Base 0.10.0
++ igraph_vector_ptr_init_copy@Base 0.10.0
++ igraph_vector_ptr_insert@Base 0.10.0
++ igraph_vector_ptr_null@Base 0.10.0
++ igraph_vector_ptr_permute@Base 0.10.0
++ igraph_vector_ptr_pop_back@Base 0.10.0
++ igraph_vector_ptr_push_back@Base 0.10.0
++ igraph_vector_ptr_remove@Base 0.10.0
++ igraph_vector_ptr_reserve@Base 0.10.0
++ igraph_vector_ptr_resize@Base 0.10.0
++ igraph_vector_ptr_set@Base 0.10.0
++ igraph_vector_ptr_set_item_destructor@Base 0.10.0
++ igraph_vector_ptr_size@Base 0.10.0
++ igraph_vector_ptr_sort@Base 0.10.0
++ igraph_vector_ptr_sort_ind@Base 0.10.0
++ igraph_vector_ptr_view@Base 0.10.0
++ igraph_vector_push_back@Base 0.10.0
++ igraph_vector_qsort_ind@Base 0.10.0
++ igraph_vector_range@Base 0.10.0
++ igraph_vector_rank@Base 0.10.0
++ igraph_vector_remove@Base 0.10.0
++ igraph_vector_remove_fast@Base 0.10.0
++ igraph_vector_remove_section@Base 0.10.0
++ igraph_vector_reserve@Base 0.10.0
++ igraph_vector_resize@Base 0.10.0
++ igraph_vector_resize_min@Base 0.10.0
++ igraph_vector_reverse@Base 0.10.0
++ igraph_vector_reverse_section@Base 0.10.15
++ igraph_vector_reverse_sort@Base 0.10.0
++ igraph_vector_rotate_left@Base 0.10.15
++ igraph_vector_round@Base 0.10.0
++ igraph_vector_scale@Base 0.10.0
++ igraph_vector_search@Base 0.10.0
++ igraph_vector_set@Base 0.10.0
++ igraph_vector_shuffle@Base 0.10.0
++ igraph_vector_size@Base 0.10.0
++ igraph_vector_sort@Base 0.10.0
++ igraph_vector_sort_ind@Base 0.10.15
++ igraph_vector_sub@Base 0.10.0
++ igraph_vector_sum@Base 0.10.0
++ igraph_vector_sumsq@Base 0.10.0
++ igraph_vector_swap@Base 0.10.0
++ igraph_vector_swap_elements@Base 0.10.0
++ igraph_vector_tail@Base 0.10.0
++ igraph_vector_update@Base 0.10.0
++ igraph_vector_view@Base 0.10.0
++ igraph_vector_which_max@Base 0.10.0
++ igraph_vector_which_min@Base 0.10.0
++ igraph_vector_which_minmax@Base 0.10.0
++ igraph_vector_zapsmall@Base 0.10.0
++ igraph_version@Base 0.10.0
++ igraph_vertex_coloring_greedy@Base 0.10.0
++ igraph_vertex_connectivity@Base 0.10.0
++ igraph_vertex_disjoint_paths@Base 0.10.0
++ igraph_vertex_path_from_edge_path@Base 0.10.0
++ igraph_vit_as_vector@Base 0.10.0
++ igraph_vit_create@Base 0.10.0
++ igraph_vit_destroy@Base 0.10.0
++ igraph_voronoi@Base 0.10.2
++ igraph_vs_1@Base 0.10.0
++ igraph_vs_adj@Base 0.10.0
++ igraph_vs_all@Base 0.10.0
++ igraph_vs_as_vector@Base 0.10.0
++ igraph_vs_copy@Base 0.10.0
++ igraph_vs_destroy@Base 0.10.0
++ igraph_vs_is_all@Base 0.10.0
++ igraph_vs_nonadj@Base 0.10.0
++ igraph_vs_none@Base 0.10.0
++ igraph_vs_range@Base 0.10.0
++ igraph_vs_seq@Base 0.10.0
++ igraph_vs_size@Base 0.10.0
++ igraph_vs_type@Base 0.10.0
++ igraph_vs_vector@Base 0.10.0
++ igraph_vs_vector_copy@Base 0.10.0
++ igraph_vs_vector_small@Base 0.10.0
++ igraph_vss_1@Base 0.10.0
++ igraph_vss_all@Base 0.10.0
++ igraph_vss_none@Base 0.10.0
++ igraph_vss_range@Base 0.10.0
++ igraph_vss_seq@Base 0.10.0
++ igraph_vss_vector@Base 0.10.0
++ igraph_warning@Base 0.10.0
++ igraph_warning_handler_ignore@Base 0.10.0
++ igraph_warning_handler_print@Base 0.10.0
++ igraph_warningf@Base 0.10.0
++ igraph_watts_strogatz_game@Base 0.10.0
++ igraph_weighted_adjacency@Base 0.10.0
++ igraph_weighted_clique_number@Base 0.10.0
++ igraph_weighted_cliques@Base 0.10.0
++ igraph_weighted_sparsemat@Base 0.10.0
++ igraph_wheel@Base 0.10.0
++ igraph_widest_path_widths_dijkstra@Base 0.10.0
++ igraph_widest_path_widths_floyd_warshall@Base 0.10.0
++ igraph_write_graph_dimacs@Base 0.10.0
++ igraph_write_graph_dimacs_flow@Base 0.10.0
++ igraph_write_graph_dot@Base 0.10.0
++ igraph_write_graph_edgelist@Base 0.10.0
++ igraph_write_graph_gml@Base 0.10.0
++ igraph_write_graph_graphml@Base 0.10.0
++ igraph_write_graph_leda@Base 0.10.0
++ igraph_write_graph_lgl@Base 0.10.0
++ igraph_write_graph_ncol@Base 0.10.0
++ igraph_write_graph_pajek@Base 0.10.0
++ igraph_zeroin@Base 0.10.0
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..08cd191ecdf40951e08d5324ece6c555946f7d19
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,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
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..423c24767602db9e16b572eb69ad2faf1f4b20a4
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,48 @@@
++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-08-06
++
++--- a/vendor/CMakeLists.txt
+++++ b/vendor/CMakeLists.txt
++@@ -1,7 +1,7 @@
++ add_subdirectory(cs)
++-add_subdirectory(f2c)
++-add_subdirectory(glpk)
++-add_subdirectory(lapack)
++-add_subdirectory(mini-gmp)
+++##add_subdirectory(f2c)
+++##add_subdirectory(glpk)
+++##add_subdirectory(lapack)
+++##add_subdirectory(mini-gmp)
++ add_subdirectory(pcg)
++-add_subdirectory(plfit)
+++##add_subdirectory(plfit)
++--- a/src/CMakeLists.txt
+++++ b/src/CMakeLists.txt
++@@ -318,14 +318,14 @@
++ 
++   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:${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:${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>,>
++ )
++ 
++ # Required by Xcode new build system
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..abf9094361fe7ffd47ef1ee2b255211143dd3374
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,5 @@@
++upstream-fix-lintian-spelling_error-silence.patch
++upstream-fix-multiarch-file_conflict.patch
++upstream-external-plfit.patch
++debianization.patch
++debianization-doc-local_fonts.patch
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..f9dfcfefaffc53710fe7924982bca49972e9239b
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,19 @@@
++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
++@@ -17,7 +17,7 @@
++ */
++ 
++ #include <igraph.h>
++-#include <plfit_sampling.h>
+++#include <plfit/plfit_sampling.h>
++ 
++ #include "bench.h"
++ 
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..4db55cbcc8a85ef875fdb9fac29c99beb998b2e1
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,21 @@@
++Description: source typo
++ Correct spelling error as reported by lintian in some binraries;
++ meant to silence lintian and eventually to be submitted to the
++ upstream maintainer.
++Origin: vendor, Debian
++Forwarded: https://github.com/igraph/igraph/pull/2696
++Comment: spelling-error-in-binary
++Author: Jerome Benoit <calculus@rezozer.net>
++Last-Update: 2024-11-10
++
++--- a/src/games/degree_sequence.c
+++++ b/src/games/degree_sequence.c
++@@ -459,7 +459,7 @@
++     IGRAPH_FINALLY(igraph_vector_ptr_destroy_all, &adjlist);
++     for (i = 0; i < vcount; ++i) {
++         igraph_set_t *set = IGRAPH_CALLOC(1, igraph_set_t);
++-        IGRAPH_CHECK_OOM(set, "Insufficient memory for configuation model (simple graphs).");
+++        IGRAPH_CHECK_OOM(set, "Insufficient memory for configuration model (simple graphs).");
++         IGRAPH_CHECK(igraph_set_init(set, 0));
++         VECTOR(adjlist)[i] = set;
++         IGRAPH_CHECK(igraph_set_reserve(set, VECTOR(*degseq)[i]));
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..7693ecc9ef81597d4d77c42ecb38aac2fca76fde
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,70 @@@
++Description: upstream: fix: multiarch: file-conflict
++ This patch installs architecture/built specific C headers
++ in a per-architecture location to avoid conflict on multiarch
++ systems. It is meant to be submitted to the upstream maintainer.
++Origin: debian
++Forwarded: https://github.com/igraph/igraph/pull/2372
++Author: Jerome Benoit <calculus@rezozer.net>
++Author: Szabolcs Horvat <szhorvat@gmail.com>
++Last-Update: 2024-07-15
++
++--- a/src/CMakeLists.txt
+++++ b/src/CMakeLists.txt
++@@ -377,6 +377,14 @@
++   "$<$<BOOL:${PLFIT_INCLUDE_DIRS}>:${PLFIT_INCLUDE_DIRS}>"
++ )
++ 
+++if(CMAKE_LIBRARY_ARCHITECTURE)
+++  target_include_directories(
+++    igraph
+++    PUBLIC
+++    $<INSTALL_INTERFACE:include/${CMAKE_LIBRARY_ARCHITECTURE}/igraph>
+++  )
+++endif()
+++
++ if(MATH_LIBRARY)
++   target_link_libraries(igraph PUBLIC ${MATH_LIBRARY})
++ endif()
++@@ -433,6 +441,11 @@
++ # GNUInstallDirs be included before generating the pkgconfig file, as it defines
++ # CMAKE_INSTALL_LIBDIR and CMAKE_INSTALL_INCLUDEDIR variables.
++ include(GNUInstallDirs)
+++if(CMAKE_LIBRARY_ARCHITECTURE)
+++  set(CMAKE_INSTALL_INCLUDEDIR_ARCHITECTURE "${CMAKE_INSTALL_INCLUDEDIR}/${CMAKE_LIBRARY_ARCHITECTURE}")
+++else()
+++  set(CMAKE_INSTALL_INCLUDEDIR_ARCHITECTURE "${CMAKE_INSTALL_INCLUDEDIR}")
+++endif()
++ 
++ # Generate pkgconfig file
++ include(pkgconfig_helpers)
++@@ -476,7 +489,7 @@
++ )
++ install(
++   DIRECTORY ${PROJECT_BINARY_DIR}/include/
++-  DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/igraph
+++  DESTINATION ${CMAKE_INSTALL_INCLUDEDIR_ARCHITECTURE}/igraph
++   FILES_MATCHING PATTERN "*.h"
++ )
++ install(
++--- a/etc/cmake/pkgconfig_helpers.cmake
+++++ b/etc/cmake/pkgconfig_helpers.cmake
++@@ -68,6 +68,11 @@
++ 
++ join_paths(PKGCONFIG_LIBDIR "\${exec_prefix}" "${CMAKE_INSTALL_LIBDIR}")
++ join_paths(PKGCONFIG_INCLUDEDIR "\${prefix}" "${CMAKE_INSTALL_INCLUDEDIR}")
+++join_paths(PKGCONFIG_CFLAGS_ONLY_I "-I\${includedir}" "igraph")
+++if(CMAKE_LIBRARY_ARCHITECTURE)
+++  join_paths(PKGCONFIG_CFLAGS_ONLY_I_ARCH "-I\${includedir}" "${CMAKE_LIBRARY_ARCHITECTURE}" "igraph")
+++  set(PKGCONFIG_CFLAGS_ONLY_I "${PKGCONFIG_CFLAGS_ONLY_I_ARCH} ${PKGCONFIG_CFLAGS_ONLY_I}")
+++endif()
++ configure_file(
++   ${PROJECT_SOURCE_DIR}/igraph.pc.in
++   ${PROJECT_BINARY_DIR}/igraph.pc
++--- a/igraph.pc.in
+++++ b/igraph.pc.in
++@@ -10,4 +10,4 @@
++ Libs: -L${libdir} -ligraph
++ Libs.private: @PKGCONFIG_LIBS_PRIVATE@
++ Requires.private: @PKGCONFIG_REQUIRES_PRIVATE@
++-Cflags: -I${includedir}/igraph
+++Cflags: @PKGCONFIG_CFLAGS_ONLY_I@
diff --cc debian/rules
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..71bf12ab939a59faa9487cc7ca353672392d07a4
new file mode 100755 (executable)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,88 @@@
++#!/usr/bin/make -f
++include /usr/share/dpkg/pkg-info.mk
++#export DH_VERBOSE=1
++
++# the software enables lto manually (see override_dh_auto_configure target)
++export DEB_BUILD_MAINT_OPTIONS=hardening=+all optimize=-lto
++
++BUILDIR_STATIC=_BUILD_STATIC
++BUILDIR_SHARED=_BUILD_SHARED
++
++# as per https://github.com/igraph/igraph/issues/2450 we ignore random failures on mips64el
++ifeq ($(DEB_HOST_ARCH),$(filter $(DEB_HOST_ARCH), mips64el))
++    TESTIGNOREFAIL=|| true
++endif
++
++%:
++      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_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 info
++      make -C $(BUILDIR_SHARED)/doc pdf
++      make -C $(BUILDIR_SHARED)/doc html
++      mv -v $(BUILDIR_SHARED)/doc/igraph-docs.info $(BUILDIR_SHARED)/doc/igraph.info
++      sed -i 's/igraph-docs.info/igraph.info/g' $(BUILDIR_SHARED)/doc/igraph.info
++      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) $(TESTIGNOREFAIL)
++      dh_auto_build -a -B$(BUILDIR_SHARED)
++
++override_dh_auto_test-indep:
++
++override_dh_auto_test-arch:
++ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
++      ## see #924052 for further information
++      $(MAKE) -C $(BUILDIR_STATIC) -j$(NUMJOBS) build_tests
++      $(MAKE) -C $(BUILDIR_SHARED) -j$(NUMJOBS) build_tests
++      dh_auto_test -a -B$(BUILDIR_STATIC)
++      dh_auto_test -a -B$(BUILDIR_SHARED)
++endif
++
++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 := $(subst ~rc,-rc.,$(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
++      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)
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..33c3a640d2a84306b6a8b5640692ac3481739e65
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,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
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..163aaf8d82b6c54f23c45f32895dbdfdcc27b047
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,1 @@@
++3.0 (quilt)
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..43c6481fe33d268004a034a38ebc554911d58849
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,2 @@@
++# The upstream source ball is downloaded from its GitHub repository
++debian-watch-does-not-check-openpgp-signature
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..097920e7738a0ca8b02a2b37674985a8c0280c4e
new file mode 100755 (executable)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,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
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..38ab8cb08eb69f8d0ff5107b0c58f019845ca4ac
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,8 @@@
++Test-Command: debian/tests/check simple
++Depends: libigraph-dev, libigraph-doc, locales-all, build-essential, pkgconf
++
++Test-Command: debian/tests/check tutorial
++Depends: libigraph-dev, libigraph-doc, build-essential, pkgconf
++
++Test-Command: debian/tests/check benchmarks
++Depends: libigraph-dev, libplfit-dev, libigraph-doc, build-essential, pkgconf
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..55680f0fe124e6ec5a6ea3145745a450c809ebe3
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,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 --cc debian/watch
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..67b3d084c898bca67e536e6a001d2a7e48504042
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,4 @@@
++version=4
++opts="repacksuffix=+ds,dversionmangle=s/\+ds[\d]?//,repack,compression=xz,searchmode=plain" \
++      https://api.github.com/repos/igraph/igraph/releases \
++      https://github.com/igraph/igraph/releases/download/\d[\.\d]*/igraph-(\d[\d.-]+)\.tar\.gz