R/RcppExports.R

Defines functions rcpp_vertices rcpp_is_directed rcpp_nvertices rcpp_graph_size rcpp_local_average_cat rcpp_local_average_cont rcpp_edges rcpp_delete_all_graphs rcpp_delete_graph rcpp_add_edges rcpp_add_vertices rcpp_create_graph

# 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)
}
djvanderlaan/chickenwire-r documentation built on July 19, 2022, 1:16 a.m.