x
Yes
No
Do you want to visit DriveHQ English website?
首页
产品服务
价格
免费试用
下载客户端
关于我们
云文件服务
|
云备份服务
|
FTP服务
|
企业邮箱服务
|
网站托管
|
客户端软件
云文件服务
云备份服务
FTP服务
企业级邮箱服务
网站托管
客户端软件
matrix_as_graph.hpp - Hosted on DriveHQ Cloud IT Platform
返回上层目录
上传
下载
共享
发布
新建文件夹
新建文件
复制
剪切
删除
粘贴
评论
升级服务
路径: \\game3dprogramming\materials\GameFactory\GameFactoryDemo\references\boost_1_35_0\boost\graph\matrix_as_graph.hpp
旋转
特效
属性
历史版本
// //======================================================================= // Copyright 1997, 1998, 1999, 2000 University of Notre Dame. // Authors: Andrew Lumsdaine, Lie-Quan Lee, Jeremy G. Siek // // 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_MATRIX2GRAPH_HPP #define BOOST_GRAPH_MATRIX2GRAPH_HPP #include
#include
#include
#include
#include
namespace boost { template
class matrix_adj_iterator; template
class matrix_incidence_iterator; } #define BOOST_GRAPH_ADAPT_MATRIX_TO_GRAPH(Matrix) \ namespace boost { \ template <> \ struct graph_traits< Matrix > { \ typedef Matrix::OneD::const_iterator Iter; \ typedef Matrix::size_type V; \ typedef V vertex_descriptor; \ typedef Iter E; \ typedef E edge_descriptor; \ typedef boost::matrix_incidence_iterator
out_edge_iterator; \ typedef boost::matrix_adj_iterator
adjacency_iterator; \ typedef Matrix::size_type size_type; \ typedef boost::int_iterator
vertex_iterator; \ \ friend std::pair
\ vertices(const Matrix& g) { \ typedef vertex_iterator VIter; \ return std::make_pair(VIter(0), VIter(g.nrows())); \ } \ \ friend std::pair
\ out_edges(V v, const Matrix& g) { \ typedef out_edge_iterator IncIter; \ return std::make_pair(IncIter(g[v].begin()), \ IncIter(g[v].end())); \ } \ friend std::pair
\ adjacent_vertices(V v, const Matrix& g) { \ typedef adjacency_iterator AdjIter; \ return std::make_pair(AdjIter(g[v].begin()), \ AdjIter(g[v].end())); \ } \ friend vertex_descriptor \ source(E e, const Matrix& g) { \ return e.row(); \ } \ friend vertex_descriptor \ target(E e, const Matrix& g) { \ return e.column(); \ } \ friend size_type \ num_vertices(const Matrix& g) { \ return g.nrows(); \ } \ friend size_type \ num_edges(const Matrix& g) { \ return g.nnz(); \ } \ friend size_type \ out_degree(V i, const Matrix& g) { \ return g[i].nnz(); \ } \ }; \ } namespace boost { template
class matrix_adj_iterator : public std::iterator
{ typedef matrix_adj_iterator self; public: matrix_adj_iterator() { } matrix_adj_iterator(Iter i) : _iter(i) { } matrix_adj_iterator(const self& x) : _iter(x._iter) { } self& operator=(const self& x) { _iter = x._iter; return *this; } Vertex operator*() { return _iter.column(); } self& operator++() { ++_iter; return *this; } self operator++(int) { self t = *this; ++_iter; return t; } bool operator==(const self& x) const { return _iter == x._iter; } bool operator!=(const self& x) const { return _iter != x._iter; } protected: Iter _iter; }; template
class matrix_incidence_iterator : public std::iterator
{ typedef matrix_incidence_iterator self; public: matrix_incidence_iterator() { } matrix_incidence_iterator(Iter i) : _iter(i) { } matrix_incidence_iterator(const self& x) : _iter(x._iter) { } self& operator=(const self& x) { _iter = x._iter; return *this; } Iter operator*() { return _iter; } self& operator++() { ++_iter; return *this; } self operator++(int) { self t = *this; ++_iter; return t; } bool operator==(const self& x) const { return _iter == x._iter; } bool operator!=(const self& x) const { return _iter != x._iter; } protected: Iter _iter; }; } /* namespace boost */ #endif /* BOOST_GRAPH_MATRIX2GRAPH_HPP*/
matrix_as_graph.hpp
网页地址
文件地址
上一页
59/95
下一页
下载
( 4 KB )
Comments
Total ratings:
0
Average rating:
无评论
of 10
Would you like to comment?
Join now
, or
Logon
if you are already a member.