# Generated by using Rcpp::compileAttributes() -> do not edit by hand
# Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393
#' Find the biconnected components of a phylogeny
#'
#' @title Biconnected Components
#' @description Find the biconnected components of a phylogeny
#' @param edges The `edge` matrix of a `phylo` object.
#' @param rt The root node of the phylogeny
#' @param nNode The number of nodes in the tree
#' @details biconnected components
#' @return A list with containing a vector of nodes for each biconnected component
#' @export
biconnectedComponents <- function(edges, rt, nNode) {
.Call(`_SiPhyNetwork_biconnectedComponents`, edges, rt, nNode)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.