R/uuid.R

Defines functions get_graph_id generate_uuid

generate_uuid <- function(use_time = NA) {
  .Call(UUID_gen, as.logical(use_time))
}


get_graph_id <- function(graph) {
  if (!warn_version(graph)) {
    .Call(R_igraph_get_graph_id, graph)
  } else {
    NA_character_
  }
}

Try the igraph package in your browser

Any scripts or data that you put into this service are public.

igraph documentation built on Aug. 10, 2023, 9:08 a.m.