Boost::Graph::Undirected - Undirected Graph algorithms for Boost::Graph


Boost-Graph documentation Contained in the Boost-Graph distribution.

Index


Code Index:

NAME

Top

Boost::Graph::Undirected - Undirected Graph algorithms for Boost::Graph

SYNOPSIS

Top

  see Boost::Graph documentation 




DESCRIPTION

Top

  Perl wrapper for XS code

EXPORT

None by default.

SEE ALSO

Top

AUTHOR

Top

David Burdick, <dburdick@systemsbiology.org>

COPYRIGHT AND LICENSE

Top


Boost-Graph documentation Contained in the Boost-Graph distribution.

package Boost::Graph::Undirected;

use 5.008;
use strict;
use warnings;

require Exporter;

our @ISA = qw(Exporter);

our %EXPORT_TAGS = ( 'all' => [ qw(
	
) ] );

our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );

our @EXPORT = qw(
	
);

our $VERSION = '1.1';

require XSLoader;
XSLoader::load('Boost::Graph::Undirected', $VERSION);

# Preloaded methods go here.

1;
__END__