Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r77533 - trunk/libs/graph/example
From: jewillco_at_[hidden]
Date: 2012-03-25 01:01:16


Author: jewillco
Date: 2012-03-25 01:01:15 EDT (Sun, 25 Mar 2012)
New Revision: 77533
URL: http://svn.boost.org/trac/boost/changeset/77533

Log:
Changed to use documented interface
Text files modified:
   trunk/libs/graph/example/bipartite_example.cpp | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: trunk/libs/graph/example/bipartite_example.cpp
==============================================================================
--- trunk/libs/graph/example/bipartite_example.cpp (original)
+++ trunk/libs/graph/example/bipartite_example.cpp 2012-03-25 01:01:15 EDT (Sun, 25 Mar 2012)
@@ -31,7 +31,7 @@
   if (bipartite)
   {
     typedef std::vector <default_color_type> partition_t;
- typedef vec_adj_list_vertex_id_map <no_property, unsigned int> index_map_t;
+ typedef typename property_map <Graph, vertex_index_t>::type index_map_t;
     typedef iterator_property_map <partition_t::iterator, index_map_t> partition_map_t;
 
     partition_t partition (num_vertices (g));


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk