# Generated by using Rcpp::compileAttributes() -> do not edit by hand
# Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393
rcpp_create_graph <- function(directed) {
.Call(`_chickenwire_rcpp_create_graph`, directed)
}
rcpp_add_vertices <- function(graph_id, id) {
invisible(.Call(`_chickenwire_rcpp_add_vertices`, graph_id, id))
}
rcpp_add_edges <- function(graph_id, src, dst, wght, type, auto_add_vertex) {
invisible(.Call(`_chickenwire_rcpp_add_edges`, graph_id, src, dst, wght, type, auto_add_vertex))
}
rcpp_delete_graph <- function(graph_id) {
invisible(.Call(`_chickenwire_rcpp_delete_graph`, graph_id))
}
rcpp_delete_all_graphs <- function() {
invisible(.Call(`_chickenwire_rcpp_delete_all_graphs`))
}
rcpp_edges <- function(graph_id) {
.Call(`_chickenwire_rcpp_edges`, graph_id)
}
rcpp_local_average_cont <- function(graph_id, value, vwght, alpha, nworkers, nstep_max, precision) {
.Call(`_chickenwire_rcpp_local_average_cont`, graph_id, value, vwght, alpha, nworkers, nstep_max, precision)
}
rcpp_local_average_cat <- function(graph_id, value, vwght, alpha, nworkers, nstep_max, precision) {
.Call(`_chickenwire_rcpp_local_average_cat`, graph_id, value, vwght, alpha, nworkers, nstep_max, precision)
}
rcpp_graph_size <- function(graph_id) {
.Call(`_chickenwire_rcpp_graph_size`, graph_id)
}
rcpp_nvertices <- function(graph_id) {
.Call(`_chickenwire_rcpp_nvertices`, graph_id)
}
rcpp_is_directed <- function(graph_id) {
.Call(`_chickenwire_rcpp_is_directed`, graph_id)
}
rcpp_vertices <- function(graph_id) {
.Call(`_chickenwire_rcpp_vertices`, graph_id)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.