\name{Ordering} \alias{cuthill.mckee.ordering} \alias{minDegreeOrdering} \alias{sloan.ordering} \alias{kingOrdering} \title{Compute vertex ordering for an undirected graph} \description{Compute vertex ordering for an undirected graph} \usage{ cuthill.mckee.ordering(g) minDegreeOrdering(g, delta=0) sloan.ordering(g, w1=1, w2=2) } \arguments{ \item{g}{an instance of the \code{graph} class with \code{edgemode} \dQuote{undirected}} \item{delta}{Multiple elimination control variable. If it is larger than or equal to zero then multiple elimination is enabled. The value of delta specifies the difference between the minimum degree and the degree of vertices that are to be eliminated.} \item{w1}{ First heuristic weight for the Sloan algorithm. } \item{w2}{ Second heuristic weight for the Sloan algorithm. } } \details{ The following details were obtained from the documentation of these algorithms in Boost Graph Library and readers are referred their for even more detail. The goal of the Cuthill-Mckee (and reverse Cuthill-Mckee) ordering algorithm is to reduce the bandwidth of a graph by reordering the indices assigned to each vertex. The minimum degree ordering algorithm is a fill-in reduction matrix reordering algorithm. The goal of the Sloan ordering algorithm is to reduce the profile and the wavefront of a graph by reordering the indices assigned to each vertex. The goal of the King ordering algorithm is to reduce the bandwidth of a graph by reordering the indices assigned to each vertex. } \value{ \item{cuthill.mckee.ordering}{ returns a list with elements:} \item{reverse cuthill.mckee.ordering}{the vertices in the new ordering} \item{original bandwidth}{bandwidth before reordering vertices} \item{new bandwidth}{bandwidth after reordering of vertices} \item{minDegreeOrdering}{ return a list with elements:} \item{inverse_permutation}{the new vertex ordering, given as the mapping from the new indices to the old indices } \item{permutation}{the new vertex ordering, given as the mapping from the old indices to the new indices } \item{sloan.ordering}{ returns a list with elements:} \item{sloan.ordering}{the vertices in the new ordering} \item{bandwidth}{bandwidth of the graph after reordering} \item{profile}{profile of the graph after reordering} \item{maxWavefront}{maxWavefront of the graph after reordering} \item{aver.wavefront}{aver.wavefront of the graph after reordering} \item{rms.wavefront}{rms.wavefront of the graph after reordering} } \references{ Boost Graph Library ( www.boost.org/libs/graph/doc/index.html ) The Boost Graph Library: User Guide and Reference Manual; by Jeremy G. Siek, Lie-Quan Lee, and Andrew Lumsdaine; (Addison-Wesley, Pearson Education Inc., 2002), xxiv+321pp. ISBN 0-201-72914-8 } \author{Li Long } \seealso{ } \examples{ con <- file(system.file("XML/dijkex.gxl",package="RBGL"), open="r") coex <- fromGXL(con) close(con) coex <- ugraph(coex) cuthill.mckee.ordering(coex) minDegreeOrdering(coex) sloan.ordering(coex) } \keyword{ models }