The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Graph::Easy::As_sparse6 - stringize Graph::Easy to sparse6 format

SYNOPSIS

 use Graph::Easy;
 my $graph = Graph::Easy->new;
 $graph->add_edge('foo','bar');

 use Graph::Easy::As_sparse6;
 print $graph->as_sparse6;

DESCRIPTION

Graph::Easy::As_sparse6 adds an as_sparse6() method to Graph::Easy to give a graph as a string of sparse6. This is the same as

    $graph->as_graph6 (format => 'sparse6');

See Graph::Easy::As_graph6 for details.

SEE ALSO

Graph::Easy, Graph::Easy::As_graph6, Graph::Easy::Parser::Graph6

nauty-showg(1), Graph::Graph6

HOME PAGE

http://user42.tuxfamily.org/graph-graph6/index.html

LICENSE

Copyright 2015, 2016, 2017, 2018 Kevin Ryde

Graph-Graph6 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version.

Graph-Graph6 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with Graph-Graph6. If not, see http://www.gnu.org/licenses/.