次のように定義された adjacency_list グラフがあります。
struct VertexProperties{
std::string name;
...
};
typedef boost::adjacency_list<boost::vecS,
boost::vecS,
boost::directedS,
VertexProperties> GraphType;
typedef GraphType::vertex_descriptor VertexType;
グラフ、頂点、アウト エッジ インデックスが与えられた場合、隣接する頂点を取得するにはどうすればよいですか?