Graph::Directed - directed graphs
Contents
Description
Graph::Directed allows you to create directed graphs.
For the available methods, see Graph.
License
This module is licensed under the same terms as Perl itself.
perl v5.40.1 2025-03-28 Graph::Directed(3pm)
Name
Graph::Directed - directed graphs
See Also
Graph, Graph::Undirected
Synopsis
use Graph::Directed;
my $g = Graph::Directed->new;
# Or alternatively:
use Graph;
my $g = Graph->new(directed => 1);
my $g = Graph->new(undirected => 0);
