From aa8e953574d561e2fb97bb6423608ca7f6e2cef0 Mon Sep 17 00:00:00 2001 From: Jeremy Siek Date: Mon, 26 Feb 2001 23:17:47 +0000 Subject: [PATCH] new file [SVN r9346] --- include/boost/graph/bandwidth.hpp | 54 +++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 include/boost/graph/bandwidth.hpp diff --git a/include/boost/graph/bandwidth.hpp b/include/boost/graph/bandwidth.hpp new file mode 100644 index 00000000..dba9f3fa --- /dev/null +++ b/include/boost/graph/bandwidth.hpp @@ -0,0 +1,54 @@ +#ifndef BOOST_GRAPH_BANDWIDTH_HPP +#define BOOST_GRAPH_BANDWIDTH_HPP + +#include +#include + +namespace boost { + + template + typename graph_traits::vertices_size_type + ith_bandwidth(typename graph_traits::vertex_descriptor i, + const Graph& g, + VertexIndexMap index) + { + typedef typename graph_traits::vertices_size_type size_type; + typedef typename detail::numeric_traits::difference_type d_type; + d_type b = 0; + typename graph_traits::out_edge_iterator e, end; + for (tie(e, end) = out_edges(i, g); e != end; ++e) { + b = std::max(b, std::abs(d_type(get(index, i)) - + d_type(get(index, target(*e, g))))); + } + return b; + } + + template + typename graph_traits::vertices_size_type + ith_bandwidth(typename graph_traits::vertex_descriptor i, + const Graph& g) + { + return ith_bandwidth(i, g, get(vertex_index, g)); + } + + template + typename graph_traits::vertices_size_type + bandwidth(const Graph& g, VertexIndexMap index) + { + typename graph_traits::vertices_size_type b = 0; + typename graph_traits::vertex_iterator i, end; + for (tie(i, end) = vertices(g); i != end; ++i) + b = std::max(b, ith_bandwidth(*i, g, index)); + return b; + } + + template + typename graph_traits::vertices_size_type + bandwidth(const Graph& g) + { + return bandwidth(g, get(vertex_index, g)); + } + +} // namespace boost + +#endif // BOOST_GRAPH_BANDWIDTH_HPP