Skip to content

Commit

Permalink
vendor: Update vendored sources to igraph/igraph@f7b77f9
Browse files Browse the repository at this point in the history
chore: correct typo in error message (igraph/igraph#2696)
  • Loading branch information
krlmlr committed Jan 5, 2025
1 parent 703993a commit 7aecbd1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/vendor/cigraph/src/games/degree_sequence.c
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ static igraph_error_t igraph_i_degree_sequence_game_configuration_simple_undirec
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]));
Expand Down
4 changes: 2 additions & 2 deletions src/vendor/igraph_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@

__BEGIN_DECLS

#define IGRAPH_VERSION "0.10.15-2-g2f0e27c9c"
#define IGRAPH_VERSION "0.10.15-3-gf7b77f9e9"
#define IGRAPH_VERSION_MAJOR 0
#define IGRAPH_VERSION_MINOR 10
#define IGRAPH_VERSION_PATCH 15
#define IGRAPH_VERSION_PRERELEASE "2-g2f0e27c9c"
#define IGRAPH_VERSION_PRERELEASE "3-gf7b77f9e9"

IGRAPH_EXPORT void igraph_version(const char **version_string,
int *major,
Expand Down

0 comments on commit 7aecbd1

Please sign in to comment.