Skip to content

Commit c544ab1

Browse files
committed
vendor: Update vendored sources to igraph/igraph@f5d79f2
interface: default OUT mode for igraph_find_cycle()
1 parent 7d2cde8 commit c544ab1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

R/aaa-auto.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3511,7 +3511,7 @@ solve_lsap_impl <- function(c, n) {
35113511
res
35123512
}
35133513

3514-
find_cycle_impl <- function(graph, mode) {
3514+
find_cycle_impl <- function(graph, mode=c("out", "in", "all", "total")) {
35153515
# Argument checks
35163516
ensure_igraph(graph)
35173517
mode <- switch(igraph.match.arg(mode), "out"=1L, "in"=2L, "all"=3L, "total"=3L)

src/vendor/cigraph/interfaces/functions.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2509,7 +2509,7 @@ igraph_solve_lsap:
25092509
igraph_find_cycle:
25102510
PARAMS: |-
25112511
GRAPH graph, OPTIONAL OUT VERTEX_INDICES vertices, OPTIONAL OUT EDGE_INDICES edges,
2512-
NEIMODE mode
2512+
NEIMODE mode=OUT
25132513
DEPS: vertices ON graph, edges ON graph
25142514

25152515
#######################################

src/vendor/igraph_version.h

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

2929
__BEGIN_DECLS
3030

31-
#define IGRAPH_VERSION "0.10.13-141-g992f77abd"
31+
#define IGRAPH_VERSION "0.10.13-142-gf5d79f2eb"
3232
#define IGRAPH_VERSION_MAJOR 0
3333
#define IGRAPH_VERSION_MINOR 10
3434
#define IGRAPH_VERSION_PATCH 13
35-
#define IGRAPH_VERSION_PRERELEASE "141-g992f77abd"
35+
#define IGRAPH_VERSION_PRERELEASE "142-gf5d79f2eb"
3636

3737
IGRAPH_EXPORT void igraph_version(const char **version_string,
3838
int *major,

0 commit comments

Comments
 (0)