Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / tools / perl-5.8.0 / lib / site_perl / 5.8.0 / Graph.pm
CommitLineData
86530b38
AT
1package Graph;
2
3use strict;
4local $^W = 1;
5
6use Graph::Base;
7use Graph::Directed;
8
9use vars qw($VERSION @ISA);
10
11$VERSION = 0.20102;
12
13@ISA = qw(Graph::Directed Graph::Base);
14
15=head1 NAME
16
17Graph - graph operations
18
19=head1 SYNOPSIS
20
21 use Graph;
22
23 $g = new Graph;
24
25=head1 DESCRIPTION
26
27This is just a front-end class for Graph::Directed and Graph::Base.
28
29Instantiated Graph objects (like $g in the the above description)
30are in fact Graph::Base objects in disguise, look there for the
31methods available. If you want undirected graphs, create Graph::Undirected
32objects.
33
34=head1 COPYRIGHT
35
36Copyright 1999, O'Reilly & Associates.
37
38This code is distributed under the same copyright terms as Perl itself.
39
40=cut
41
421;
43