powered by
Determine whether the graph is a simple graph. A simple graph is one that does not contain any loops nor any multiple edges.
is_graph_simple(graph)
a graph object of class dgr_graph.
dgr_graph
a logical value.
# NOT RUN { # Create a graph with 2 cycles graph <- create_graph() %>% add_cycle(n = 4) %>% add_cycle(n = 3) # Check if the graph is simple is_graph_simple(graph) #> [1] TRUE # }
Run the code above in your browser using DataLab