x
Yes
No
Do you want to visit DriveHQ English website?
Inicio
Características
Precios
Prueba gratuita
Software cliente
Acerca de nosotros
Servidor de archivos
|
Solución de copias de seguridad
|
Servidor FTP
|
Servidor de correo electrónico
|
Alojamiento web
|
Software cliente
Servidor de archivos
Solución de copia de seguridad
Servidor FTP
Servidor de correo electrónico
Alojamiento web
Software cliente
wavefront.hpp - Hosted on DriveHQ Cloud IT Platform
Arriba
Subir
Descargar
Compartir
Publicar
Nueva carpeta
Nuevo archivo
Copiar
Cortar
Eliminar
Pegar
Clasificación
Actualizar
Ruta de la carpeta: \\game3dprogramming\materials\GameFactory\GameFactoryDemo\references\boost_1_35_0\boost\graph\wavefront.hpp
Girar
Efecto
Propiedad
Historial
// //======================================================================= // 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
Dirección de la página
Dirección del archivo
Anterior
94/95
Siguiente
Descargar
( 3 KB )
Comments
Total ratings:
0
Average rating:
No clasificado
of 10
Would you like to comment?
Join now
, or
Logon
if you are already a member.