File: Graph.pm

package info (click to toggle)
libgraph-perl 0.20102-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 184 kB
  • ctags: 132
  • sloc: perl: 1,455; makefile: 38
file content (43 lines) | stat: -rw-r--r-- 713 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package Graph;

use strict;
local $^W = 1;

use Graph::Base;
use Graph::Directed;

use vars qw($VERSION @ISA);

$VERSION = 0.20102;

@ISA = qw(Graph::Directed Graph::Base);

=head1 NAME

Graph - graph operations

=head1 SYNOPSIS

    use Graph;

    $g = new Graph;

=head1 DESCRIPTION

This is just a front-end class for Graph::Directed and Graph::Base.

Instantiated Graph objects (like $g in the the above description)
are in fact Graph::Base objects in disguise, look there for the
methods available.  If you want undirected graphs, create Graph::Undirected
objects.

=head1 COPYRIGHT

Copyright 1999, O'Reilly & Associates.

This code is distributed under the same copyright terms as Perl itself.

=cut

1;