logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Graph::Undirected - undirected graphs

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);

See Also