NAME
Graph::Maker::Kneser - create Kneser graphs
SYNOPSIS
use Graph::Maker::Kneser;
$graph = Graph::Maker->new ('Kneser', N => 8, K => 3);
DESCRIPTION
Graph::Maker::Kneser
creates Graph.pm
graphs of Kneser graphs. Each vertex is a K-many subset of the integers 1 to N. Edges are between vertices with all integers distinct. Vertex names are the list of integers separated by commas, such as "1,5,6,8".
K=1 is the complete-N graph. Vertex names are the same as Graph::Maker::Complete
(integers 1 to N).
N=5,K=2 is the Petersen graph.
N=2*K-1 is the "odd" graph K.
K > N/2 has no edges since the K-many subsets are each more than half of 1..N so are never disjoint
FUNCTIONS
$graph = Graph::Maker->new('Kneser', key => value, ...)
-
The key/value parameters are
N => integer K => integer
Other parameters are passed to
Graph->new()
.If the graph is directed (the default) then edges are added both forward and backward between vertices. Option
undirected => 1
creates an undirected graph and for it there is a single edge between vertices.
SEE ALSO
Graph::Maker, Graph::Maker::Johnson
LICENSE
Copyright 2015, 2016 Kevin Ryde
This file 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.
This file 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 This file. If not, see http://www.gnu.org/licenses/.