x
Yes
No
Do you want to visit DriveHQ English website?
首页
产品服务
价格
免费试用
下载客户端
关于我们
云文件服务
|
云备份服务
|
FTP服务
|
企业邮箱服务
|
网站托管
|
客户端软件
云文件服务
云备份服务
FTP服务
企业级邮箱服务
网站托管
客户端软件
wavefront.hpp - Hosted on DriveHQ Cloud IT Platform
返回上层目录
上传
下载
共享
发布
新建文件夹
新建文件
复制
剪切
删除
粘贴
评论
升级服务
路径: \\game3dprogramming\materials\GameFactory\GameFactoryDemo\references\boost_1_35_0\boost\graph\wavefront.hpp
旋转
特效
属性
历史版本
// //======================================================================= // Copyright 2002 Marc Wintermantel (wintermantel@even-ag.ch) // ETH Zurich, Center of Structure Technologies (www.imes.ethz.ch/st) // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) //======================================================================= // #ifndef BOOST_GRAPH_WAVEFRONT_HPP #define BOOST_GRAPH_WAVEFRONT_HPP #include
#include
#include
#include
#include
#include
#include
// for std::min and std::max namespace boost { template
typename graph_traits
::vertices_size_type ith_wavefront(typename graph_traits
::vertex_descriptor i, const Graph& g, VertexIndexMap index) { typename graph_traits
::vertex_descriptor v, w; typename graph_traits
::vertices_size_type b = 1; typename graph_traits
::out_edge_iterator edge_it2, edge_it2_end; typename graph_traits
::vertices_size_type index_i = index[i]; std::vector
rows_active(num_vertices(g), false); rows_active[index_i] = true; typename graph_traits
::vertex_iterator ui, ui_end; for (tie(ui, ui_end) = vertices(g); ui != ui_end; ++ui) { v = *ui; if(index[v] <= index_i) { for (tie(edge_it2, edge_it2_end) = out_edges(v, g); edge_it2 != edge_it2_end; ++edge_it2) { w = target(*edge_it2, g); if( (index[w] >= index_i) && (!rows_active[index[w]]) ) { b++; rows_active[index[w]] = true; } } } } return b; } template
typename graph_traits
::vertices_size_type ith_wavefront(typename graph_traits
::vertex_descriptor i, const Graph& g) { return ith_wavefront(i, g, get(vertex_index, g)); } template
typename graph_traits
::vertices_size_type max_wavefront(const Graph& g, VertexIndexMap index) { BOOST_USING_STD_MAX(); 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 = max BOOST_PREVENT_MACRO_SUBSTITUTION(b, ith_wavefront(*i, g, index)); return b; } template
typename graph_traits
::vertices_size_type max_wavefront(const Graph& g) { return max_wavefront(g, get(vertex_index, g)); } template
double aver_wavefront(const Graph& g, VertexIndexMap index) { double b = 0; typename graph_traits
::vertex_iterator i, end; for (tie(i, end) = vertices(g); i != end; ++i) b += ith_wavefront(*i, g, index); b /= num_vertices(g); return b; } template
double aver_wavefront(const Graph& g) { return aver_wavefront(g, get(vertex_index, g)); } template
double rms_wavefront(const Graph& g, VertexIndexMap index) { double b = 0; typename graph_traits
::vertex_iterator i, end; for (tie(i, end) = vertices(g); i != end; ++i) b += std::pow(double ( ith_wavefront(*i, g, index) ), 2.0); b /= num_vertices(g); return std::sqrt(b); } template
double rms_wavefront(const Graph& g) { return rms_wavefront(g, get(vertex_index, g)); } } // namespace boost #endif // BOOST_GRAPH_WAVEFRONT_HPP
wavefront.hpp
网页地址
文件地址
上一页
94/95
下一页
下载
( 3 KB )
Comments
Total ratings:
0
Average rating:
无评论
of 10
Would you like to comment?
Join now
, or
Logon
if you are already a member.