Graph::Undirected - undirected graphs
Contents
Description
Graph::Undirected allows you to create undirected 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::Undirected(3pm)
Name
Graph::Undirected - undirected graphs
See Also
Graph, Graph::Directed
Synopsis
use Graph::Undirected;
my $g = Graph::Undirected->new;
# Or alternatively:
use Graph;
my $g = Graph->new(undirected => 1);
my $g = Graph->new(directed => 0);
