Skip to content

Commit 3d8130e

Browse files
vendor: Update vendored sources to igraph/igraph@6e6f687 (#2460)
Co-authored-by: krlmlr <[email protected]>
1 parent 03fb51b commit 3d8130e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/vendor/cigraph/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ This section lists API-breaking changes in this version, and provides guidance o
124124

125125
- `igraph_community_edge_betweenness()` now takes both a `weights` and a `lengths` parameter. Edge weights (interpreted as connection strengths) are used to divide betweenness scores before selecting them for removal as well as for the modularity computation. Edge lengths are used for defining shortest path lengths during the betweenness computation. This fixes issues #2229 and #1040.
126126
- `igraph_community_infomap()` now supports regularization and gained the `is_regularized` and `regularization_strength` parameters.
127-
- `igraph_community_label_propagation()` changed signature to allow specification of label propagation algorithm (LPA) variants. A new fast label propagation variant was added.
127+
- `igraph_community_label_propagation()` gained the `igraph_lpa_variant_t lpa_variant` parameter to allow specification of label propagation algorithm (LPA) variants. A new fast label propagation variant was added. Set `lpa_variant=DOMINANCE` to select the algorithm used up to igraph 0.10.
128128
- `igraph_community_leiden()` now takes two `vertex_out_weights` and `vertex_in_weights` parameters in order to support directed graphs, instead of the previous single `node_weights` parameter. To obtain the old behavior for undirected graphs, pass the vertex weights as `vertex_out_weights` and set `vertex_in_weights` to `NULL`.
129129
- The `history` parameter of `igraph_community_leading_eigenvector()` is now a pointer to an `igraph_vector_int_t` instead of an `igraph_vector_t`.
130130
- `igraph_community_optimal_modularity()` now takes a `resolution` parameter and its `weight` parameter was moved to the second place.

src/vendor/igraph_version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@
2323

2424
IGRAPH_BEGIN_C_DECLS
2525

26-
#define IGRAPH_VERSION "1.0.0-30-g2d1bce327"
26+
#define IGRAPH_VERSION "1.0.0-33-g6e6f6876c"
2727
#define IGRAPH_VERSION_MAJOR 1
2828
#define IGRAPH_VERSION_MINOR 0
2929
#define IGRAPH_VERSION_PATCH 0
30-
#define IGRAPH_VERSION_PRERELEASE "30-g2d1bce327"
30+
#define IGRAPH_VERSION_PRERELEASE "33-g6e6f6876c"
3131

3232
IGRAPH_EXPORT void igraph_version(const char **version_string,
3333
int *major,

0 commit comments

Comments
 (0)