
Dear all, I submitted the following to boost-docs but have received no response, so also submitting to boost-users. The last part of Boost Graph Library: Subgraph <http://www.boost.org/doc/libs/release/libs/graph/doc/subgraph.html> (since Boost 1.40)
struct my_vertex { ... }; typedef property<vertex_index_t, std::size_t, vertex_prop> vertex_prop; struct my_edge { ... }; typedef property<edge_index_t, std::size_t, vertex_prop> edge_prop;
should be
struct my_vertex { ... }; typedef property<vertex_index_t, std::size_t, my_vertex> vertex_prop; struct my_edge { ... }; typedef property<edge_index_t, std::size_t, my_edge> edge_prop;
Additionally I want you to note how to modify GraphProperties of boost::subgraph (or whether it is not implemented). Regards, -- Eisuke Kawashima email: e.kawaschima@gmail.com

Hi, 2016-04-21 20:38 GMT+09:00 Eisuke Kawashima <e.kawaschima@gmail.com>:
Dear all,
I submitted the following to boost-docs but have received no response, so also submitting to boost-users.
You should pull request to follow repository's develop branch: https://github.com/boostorg/graph Taget docs are `doc` directory's html files. Thanks, Akira -- Akira Takahashi site: http://faithandbrave.github.io/

Hi,
You should pull request to follow repository's develop branch: https://github.com/boostorg/graph Taget docs are `doc` directory's html files.
Thank you for your reply. I created a pull request (https://github.com/boostorg/graph/pull/62). -- Eisuke Kawashima e.kawaschimap@gmail.com
participants (2)
-
Akira Takahashi
-
Eisuke Kawashima