(1) template <typename Graph>
typename graph_traits<Graph>::vertices_size_type
ith_wavefront(typename graph_traits<Graph>::vertex_descriptor i,
const Graph& g) (2) template <typename Graph, typename VertexIndexMap>
typename graph_traits<Graph>::vertices_size_type
ith_wavefront(typename graph_traits<Graph>::vertex_descriptor i,
const Graph& g,
VertexIndexMap index)
i 番目の頂点の波面を計算する。
(1) template <typename Graph>グラフの最大波面を計算する。
typename graph_traits<Graph>::vertices_size_type
max_wavefront(const Graph& g) (2) template <typename Graph, typename VertexIndexMap>
typename graph_traits<Graph>::vertices_size_type
max_wavefront(const Graph& g, VertexIndexMap index)
(1) template <typename Graph>グラフの平均波面を計算する (全ての波面の和を頂点数で割ったもの)。
typename graph_traits<Graph>::vertices_size_type
aver_wavefront(const Graph& g) (2) template <typename Graph, typename VertexIndexMap>
typename graph_traits<Graph>::vertices_size_type
aver_wavefront(const Graph& g, VertexIndexMap index)
(1) template <typename Graph>全ての波面の累乗根平均を計算する。
typename graph_traits<Graph>::vertices_size_type
rms_wavefront(const Graph& g) (2) template <typename Graph, typename VertexIndexMap>
typename graph_traits<Graph>::vertices_size_type
rms_wavefront(const Graph& g, VertexIndexMap index)
| Copyright ゥ 2001-2002 | Marc Wintermantel, ETH Zurich(wintermantel@imes.mavt.ethz.ch) |
Japanese Translation Copyright © 2003 Takashi Itou
オリジナルの、及びこの著作権表示が全ての複製の中に現れる限り、この文書の複製、利用、変更、販売そして配布を認める。このドキュメントは「あるがまま」に提供されており、いかなる明示的、暗黙的保証も行わない。また、いかなる目的に対しても、その利用が適していることを関知しない。
このドキュメントの対象: Boost Version 1.30.0
最新版ドキュメント (英語)