graph (version 1.50.0)

reverseEdgeDirections: Reverse the edges of a directed graph

Description

Return a new directed graph instance with each edge oriented in the opposite direction relative to the corresponding edge in the input graph.

Usage

reverseEdgeDirections(g)

Arguments

g
A graph subclass that can be coerced to graphAM

Value

A graphNEL instance

Details

WARNING: this doesn't handle edge attributes properly. It is a preliminary implementation and subject to change.

Examples

Run this code
g <- graphNEL(nodes=c("a", "b", "c"),
         edgeL=list(a=c("b", "c"), b=character(0), c=character(0)),
         edgemode="directed")

stopifnot(isAdjacent(g, "a", "b"))
stopifnot(!isAdjacent(g, "b", "a"))

grev <- reverseEdgeDirections(g)
stopifnot(!isAdjacent(grev, "a", "b"))
stopifnot(isAdjacent(grev, "b", "a"))

Run the code above in your browser using DataLab