bfs() and dfs() have a neimode parameter which has been deprecated in favour of mode since 1.3.0.
This should either be removed or updated to use lifecycle for deprecation.
Example:
|
if (!missing(neimode)) { |
|
warning("Argument `neimode' is deprecated; use `mode' instead") |
|
if (missing(mode)) { |
|
mode <- neimode |
|
} |
|
} |
There are comments in the sources saying # Remove in 1.4.0
CC @maelle