Skip to content

Commit

Permalink
updated for C-igraph 0.10.8
Browse files Browse the repository at this point in the history
  • Loading branch information
ntamas committed Nov 17, 2023
1 parent cfff27c commit 568c64a
Show file tree
Hide file tree
Showing 174 changed files with 132,304 additions and 7,798 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ all: jekyll
.PHONY: all core c r python jekyll devserver

# Default doc version
CVERSION?=0.10.7
CVERSION?=0.10.8
RVERSION?=1.3.5
PYVERSION?=0.10.1

# Available versions
CVERSIONS ?= '0.9.0 0.9.4 0.9.5 0.9.6 0.9.7 0.9.8 0.9.9 0.9.10 0.10.0 0.10.1 0.10.2 0.10.3 0.10.4 0.10.5 0.10.6 0.10.7 master develop'
CVERSIONS ?= '0.9.0 0.9.4 0.9.5 0.9.6 0.9.7 0.9.8 0.9.9 0.9.10 0.10.0 0.10.1 0.10.2 0.10.3 0.10.4 0.10.5 0.10.6 0.10.7 0.10.8 master develop'
RVERSIONS ?= '1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5'
PYVERSIONS ?= '0.9.6 0.9.7 0.9.8 0.9.9 0.9.10 0.9.11 0.10.0 0.10.1'
PYCVERSIONS ?= '0.9.4 0.9.4 0.9.4 0.9.6 0.9.8 0.9.9 0.10.0 0.10.1'
Expand Down
44 changes: 44 additions & 0 deletions _posts/2023-11-17-igraph-0.10.8-c.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
---
title: C/igraph 0.10.8
date: 2023-11-17
tags: c
---

[C/igraph](https://igraph.org/c/) 0.10.8, the seventh bugfix release of the 0.10 series, has arrived.

The source can be obtained from [the GitHub releases page](https://github.com/igraph/igraph/releases/tag/0.10.8).

This is primarily a maintenance release with bug fixes, but it also adds functions to compute the joint degree matrix, the joint degree distribution and the degree correlation function of graphs as well as a generalized joint distribution of arbitrary vertex categories at the endpoints of edges.

Read on for more details about the changes in version 0.10.8.

<!--more-->

### Added

- `igraph_joint_degree_matrix()` computes the joint degree matrix, i.e. counts connections between vertices of different degrees.
- `igraph_joint_degree_distribution()` computes the joint distribution of degrees at either end of edges.
- `igraph_joint_type_distribution()` computes the joint distribution of vertex categories at either end of edges, i.e. the mixing matrix.
- `igraph_degree_correlation_vector()` computes the degree correlation function and its various directed generalizations.

### Changed

- The behaviour of the Pajek format reader and writer is now more closely aligned with the Pajek software and the reader is more tolerant of input it cannot interpret. Only those vertex and edge parameters are treated as valid which Pajek itself understands, therefore support for `size` is now dropped, and support for the `font` edge parameter is added. See http://mrvar.fdv.uni-lj.si/pajek/DrawEPS.htm for more information. Invalid/unrecognized parameters are now converted to igraph attributes by the reader, but just as before, they are not output by the writer.
- The Pajek format writer now encodes newline and quotation mark characters in a Pajek-compatible manner (`\n` and `&#34;`, respectively).
- `igraph_avg_nearest_neighbor_degree()` now supports non-simple graphs.

### Fixed

- Resolved "ignoring duplicate libraries" warning when building tests with Xcode 15 on macOS.
- Fixed the handling of duplicate vertex IDs in `igraph_induced_subgraph()`.
- `igraph_vector_which_min()` and `igraph_vector_which_max()` no longer allow zero-length input, which makes them consistent with other similar functions, and was the originally intended behaviour. Passing zero-length input is invalid use and currently triggers an assertion failure.
- `igraph_erdos_renyi_game_gnm()` and `igraph_erdos_renyi_game_gnp()` are now interruptible.
- `igraph_de_bruijn()` and `igraph_kautz()` are now interruptible.
- `igraph_full()`, `igraph_full_citation()`, `igraph_full_multipartite()` and `igraph_turan()` are now interruptible.
- `igraph_avg_nearest_neighbor_degree()` did not compute `knnk` correctly in the weighted case.
- Fixed variadic arguments of invalid types, which could cause incorrect behaviour with `igraph_matrix_print()`, as well as test suite failures, on some platforms. 32-bit x86 was affected when setting `IGRAPH_INTEGER_SIZE` to 64.
- `igraph_subisomorphic_lad()` now returns a single null map when the pattern is the null graph.
- `igraph_community_spinglass()` now checks its parameters more carefully.
- `igraph_similarity_dice_pairs()` and `igraph_similarity_jaccard_pairs()` now validate vertex IDs.
- `igraph_maxflow()` now returns an error code if the source and target vertices are the same. It used to get stuck in an infinite loop in earlier versions when the `flow` argument was non-NULL.

8 changes: 4 additions & 4 deletions docs/2006/01/30/igraph-0.1-c.html
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@ <h1 class="display-4">News</h1>
<div class="bs-sidebar affix hidden-print" role="complementary">
<ul class="nav bs-sidenav">

<li>
<a href="/2023/11/17/igraph-0.10.8-c.html">C/igraph 0.10.8</a>
</li>

<li>
<a href="/2023/09/12/igraph-0.10.8-python.html">python-igraph 0.10.8</a>
</li>
Expand Down Expand Up @@ -149,10 +153,6 @@ <h1 class="display-4">News</h1>
<a href="/2022/10/14/igraph-0.10.2-c.html">C/igraph 0.10.2</a>
</li>

<li>
<a href="/2022/10/11/igraph-0.6.3-mma.html">IGraph/M 0.6.3</a>
</li>

<li>
<a href="">&hellip;</a>
</li>
Expand Down
8 changes: 4 additions & 4 deletions docs/2006/01/30/igraph-0.1-python.html
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@ <h1 class="display-4">News</h1>
<div class="bs-sidebar affix hidden-print" role="complementary">
<ul class="nav bs-sidenav">

<li>
<a href="/2023/11/17/igraph-0.10.8-c.html">C/igraph 0.10.8</a>
</li>

<li>
<a href="/2023/09/12/igraph-0.10.8-python.html">python-igraph 0.10.8</a>
</li>
Expand Down Expand Up @@ -149,10 +153,6 @@ <h1 class="display-4">News</h1>
<a href="/2022/10/14/igraph-0.10.2-c.html">C/igraph 0.10.2</a>
</li>

<li>
<a href="/2022/10/11/igraph-0.6.3-mma.html">IGraph/M 0.6.3</a>
</li>

<li>
<a href="">&hellip;</a>
</li>
Expand Down
8 changes: 4 additions & 4 deletions docs/2006/01/30/igraph-0.1-r.html
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@ <h1 class="display-4">News</h1>
<div class="bs-sidebar affix hidden-print" role="complementary">
<ul class="nav bs-sidenav">

<li>
<a href="/2023/11/17/igraph-0.10.8-c.html">C/igraph 0.10.8</a>
</li>

<li>
<a href="/2023/09/12/igraph-0.10.8-python.html">python-igraph 0.10.8</a>
</li>
Expand Down Expand Up @@ -149,10 +153,6 @@ <h1 class="display-4">News</h1>
<a href="/2022/10/14/igraph-0.10.2-c.html">C/igraph 0.10.2</a>
</li>

<li>
<a href="/2022/10/11/igraph-0.6.3-mma.html">IGraph/M 0.6.3</a>
</li>

<li>
<a href="">&hellip;</a>
</li>
Expand Down
8 changes: 4 additions & 4 deletions docs/2006/08/18/igraph-0.2-c.html
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@ <h1 class="display-4">News</h1>
<div class="bs-sidebar affix hidden-print" role="complementary">
<ul class="nav bs-sidenav">

<li>
<a href="/2023/11/17/igraph-0.10.8-c.html">C/igraph 0.10.8</a>
</li>

<li>
<a href="/2023/09/12/igraph-0.10.8-python.html">python-igraph 0.10.8</a>
</li>
Expand Down Expand Up @@ -149,10 +153,6 @@ <h1 class="display-4">News</h1>
<a href="/2022/10/14/igraph-0.10.2-c.html">C/igraph 0.10.2</a>
</li>

<li>
<a href="/2022/10/11/igraph-0.6.3-mma.html">IGraph/M 0.6.3</a>
</li>

<li>
<a href="">&hellip;</a>
</li>
Expand Down
8 changes: 4 additions & 4 deletions docs/2006/08/18/igraph-0.2-python.html
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@ <h1 class="display-4">News</h1>
<div class="bs-sidebar affix hidden-print" role="complementary">
<ul class="nav bs-sidenav">

<li>
<a href="/2023/11/17/igraph-0.10.8-c.html">C/igraph 0.10.8</a>
</li>

<li>
<a href="/2023/09/12/igraph-0.10.8-python.html">python-igraph 0.10.8</a>
</li>
Expand Down Expand Up @@ -149,10 +153,6 @@ <h1 class="display-4">News</h1>
<a href="/2022/10/14/igraph-0.10.2-c.html">C/igraph 0.10.2</a>
</li>

<li>
<a href="/2022/10/11/igraph-0.6.3-mma.html">IGraph/M 0.6.3</a>
</li>

<li>
<a href="">&hellip;</a>
</li>
Expand Down
8 changes: 4 additions & 4 deletions docs/2006/08/18/igraph-0.2-r.html
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@ <h1 class="display-4">News</h1>
<div class="bs-sidebar affix hidden-print" role="complementary">
<ul class="nav bs-sidenav">

<li>
<a href="/2023/11/17/igraph-0.10.8-c.html">C/igraph 0.10.8</a>
</li>

<li>
<a href="/2023/09/12/igraph-0.10.8-python.html">python-igraph 0.10.8</a>
</li>
Expand Down Expand Up @@ -149,10 +153,6 @@ <h1 class="display-4">News</h1>
<a href="/2022/10/14/igraph-0.10.2-c.html">C/igraph 0.10.2</a>
</li>

<li>
<a href="/2022/10/11/igraph-0.6.3-mma.html">IGraph/M 0.6.3</a>
</li>

<li>
<a href="">&hellip;</a>
</li>
Expand Down
8 changes: 4 additions & 4 deletions docs/2006/08/18/igraph-mailing-lists-c.html
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@ <h1 class="display-4">News</h1>
<div class="bs-sidebar affix hidden-print" role="complementary">
<ul class="nav bs-sidenav">

<li>
<a href="/2023/11/17/igraph-0.10.8-c.html">C/igraph 0.10.8</a>
</li>

<li>
<a href="/2023/09/12/igraph-0.10.8-python.html">python-igraph 0.10.8</a>
</li>
Expand Down Expand Up @@ -149,10 +153,6 @@ <h1 class="display-4">News</h1>
<a href="/2022/10/14/igraph-0.10.2-c.html">C/igraph 0.10.2</a>
</li>

<li>
<a href="/2022/10/11/igraph-0.6.3-mma.html">IGraph/M 0.6.3</a>
</li>

<li>
<a href="">&hellip;</a>
</li>
Expand Down
8 changes: 4 additions & 4 deletions docs/2006/08/23/igraph-0.2.1-c.html
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@ <h1 class="display-4">News</h1>
<div class="bs-sidebar affix hidden-print" role="complementary">
<ul class="nav bs-sidenav">

<li>
<a href="/2023/11/17/igraph-0.10.8-c.html">C/igraph 0.10.8</a>
</li>

<li>
<a href="/2023/09/12/igraph-0.10.8-python.html">python-igraph 0.10.8</a>
</li>
Expand Down Expand Up @@ -149,10 +153,6 @@ <h1 class="display-4">News</h1>
<a href="/2022/10/14/igraph-0.10.2-c.html">C/igraph 0.10.2</a>
</li>

<li>
<a href="/2022/10/11/igraph-0.6.3-mma.html">IGraph/M 0.6.3</a>
</li>

<li>
<a href="">&hellip;</a>
</li>
Expand Down
8 changes: 4 additions & 4 deletions docs/2006/08/23/igraph-0.2.1-python.html
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@ <h1 class="display-4">News</h1>
<div class="bs-sidebar affix hidden-print" role="complementary">
<ul class="nav bs-sidenav">

<li>
<a href="/2023/11/17/igraph-0.10.8-c.html">C/igraph 0.10.8</a>
</li>

<li>
<a href="/2023/09/12/igraph-0.10.8-python.html">python-igraph 0.10.8</a>
</li>
Expand Down Expand Up @@ -149,10 +153,6 @@ <h1 class="display-4">News</h1>
<a href="/2022/10/14/igraph-0.10.2-c.html">C/igraph 0.10.2</a>
</li>

<li>
<a href="/2022/10/11/igraph-0.6.3-mma.html">IGraph/M 0.6.3</a>
</li>

<li>
<a href="">&hellip;</a>
</li>
Expand Down
8 changes: 4 additions & 4 deletions docs/2006/08/23/igraph-0.2.1-r.html
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@ <h1 class="display-4">News</h1>
<div class="bs-sidebar affix hidden-print" role="complementary">
<ul class="nav bs-sidenav">

<li>
<a href="/2023/11/17/igraph-0.10.8-c.html">C/igraph 0.10.8</a>
</li>

<li>
<a href="/2023/09/12/igraph-0.10.8-python.html">python-igraph 0.10.8</a>
</li>
Expand Down Expand Up @@ -149,10 +153,6 @@ <h1 class="display-4">News</h1>
<a href="/2022/10/14/igraph-0.10.2-c.html">C/igraph 0.10.2</a>
</li>

<li>
<a href="/2022/10/11/igraph-0.6.3-mma.html">IGraph/M 0.6.3</a>
</li>

<li>
<a href="">&hellip;</a>
</li>
Expand Down
8 changes: 4 additions & 4 deletions docs/2006/12/19/igraph-0.3.2-c.html
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@ <h1 class="display-4">News</h1>
<div class="bs-sidebar affix hidden-print" role="complementary">
<ul class="nav bs-sidenav">

<li>
<a href="/2023/11/17/igraph-0.10.8-c.html">C/igraph 0.10.8</a>
</li>

<li>
<a href="/2023/09/12/igraph-0.10.8-python.html">python-igraph 0.10.8</a>
</li>
Expand Down Expand Up @@ -149,10 +153,6 @@ <h1 class="display-4">News</h1>
<a href="/2022/10/14/igraph-0.10.2-c.html">C/igraph 0.10.2</a>
</li>

<li>
<a href="/2022/10/11/igraph-0.6.3-mma.html">IGraph/M 0.6.3</a>
</li>

<li>
<a href="">&hellip;</a>
</li>
Expand Down
8 changes: 4 additions & 4 deletions docs/2006/12/19/igraph-0.3.2-python.html
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@ <h1 class="display-4">News</h1>
<div class="bs-sidebar affix hidden-print" role="complementary">
<ul class="nav bs-sidenav">

<li>
<a href="/2023/11/17/igraph-0.10.8-c.html">C/igraph 0.10.8</a>
</li>

<li>
<a href="/2023/09/12/igraph-0.10.8-python.html">python-igraph 0.10.8</a>
</li>
Expand Down Expand Up @@ -149,10 +153,6 @@ <h1 class="display-4">News</h1>
<a href="/2022/10/14/igraph-0.10.2-c.html">C/igraph 0.10.2</a>
</li>

<li>
<a href="/2022/10/11/igraph-0.6.3-mma.html">IGraph/M 0.6.3</a>
</li>

<li>
<a href="">&hellip;</a>
</li>
Expand Down
8 changes: 4 additions & 4 deletions docs/2006/12/19/igraph-0.3.2-r.html
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@ <h1 class="display-4">News</h1>
<div class="bs-sidebar affix hidden-print" role="complementary">
<ul class="nav bs-sidenav">

<li>
<a href="/2023/11/17/igraph-0.10.8-c.html">C/igraph 0.10.8</a>
</li>

<li>
<a href="/2023/09/12/igraph-0.10.8-python.html">python-igraph 0.10.8</a>
</li>
Expand Down Expand Up @@ -149,10 +153,6 @@ <h1 class="display-4">News</h1>
<a href="/2022/10/14/igraph-0.10.2-c.html">C/igraph 0.10.2</a>
</li>

<li>
<a href="/2022/10/11/igraph-0.6.3-mma.html">IGraph/M 0.6.3</a>
</li>

<li>
<a href="">&hellip;</a>
</li>
Expand Down
8 changes: 4 additions & 4 deletions docs/2007/01/08/Python-interface-documentation.html
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@ <h1 class="display-4">News</h1>
<div class="bs-sidebar affix hidden-print" role="complementary">
<ul class="nav bs-sidenav">

<li>
<a href="/2023/11/17/igraph-0.10.8-c.html">C/igraph 0.10.8</a>
</li>

<li>
<a href="/2023/09/12/igraph-0.10.8-python.html">python-igraph 0.10.8</a>
</li>
Expand Down Expand Up @@ -149,10 +153,6 @@ <h1 class="display-4">News</h1>
<a href="/2022/10/14/igraph-0.10.2-c.html">C/igraph 0.10.2</a>
</li>

<li>
<a href="/2022/10/11/igraph-0.6.3-mma.html">IGraph/M 0.6.3</a>
</li>

<li>
<a href="">&hellip;</a>
</li>
Expand Down
8 changes: 4 additions & 4 deletions docs/2007/02/28/igraph-0.3.3-c.html
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@ <h1 class="display-4">News</h1>
<div class="bs-sidebar affix hidden-print" role="complementary">
<ul class="nav bs-sidenav">

<li>
<a href="/2023/11/17/igraph-0.10.8-c.html">C/igraph 0.10.8</a>
</li>

<li>
<a href="/2023/09/12/igraph-0.10.8-python.html">python-igraph 0.10.8</a>
</li>
Expand Down Expand Up @@ -149,10 +153,6 @@ <h1 class="display-4">News</h1>
<a href="/2022/10/14/igraph-0.10.2-c.html">C/igraph 0.10.2</a>
</li>

<li>
<a href="/2022/10/11/igraph-0.6.3-mma.html">IGraph/M 0.6.3</a>
</li>

<li>
<a href="">&hellip;</a>
</li>
Expand Down
Loading

0 comments on commit 568c64a

Please sign in to comment.