
graph_reverse_edges(+Graph, -RevGraph)

   Makes a graph with reversed edges

Arguments
   Graph               a graph structure
   RevGraph            a graph structure

Type
   library(graph_algorithms)

Description

    Creates a new graph RevGraph which is identical to Graph except
    that all edges are reversed.
    

Modes and Determinism
   graph_reverse_edges(+, -) is det

See Also
   make_graph / 3, make_graph_symbolic / 3
