|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r67031 - trunk/boost/graph
From: jewillco_at_[hidden]
Date: 2010-12-05 15:17:52
Author: jewillco
Date: 2010-12-05 15:17:48 EST (Sun, 05 Dec 2010)
New Revision: 67031
URL: http://svn.boost.org/trac/boost/changeset/67031
Log:
Applied patch from Matthias Walter
Text files modified:
trunk/boost/graph/bipartite.hpp | 4 ----
1 files changed, 0 insertions(+), 4 deletions(-)
Modified: trunk/boost/graph/bipartite.hpp
==============================================================================
--- trunk/boost/graph/bipartite.hpp (original)
+++ trunk/boost/graph/bipartite.hpp 2010-12-05 15:17:48 EST (Sun, 05 Dec 2010)
@@ -212,8 +212,6 @@
depth_first_search (graph, vertex_index_map (index_map).visitor (make_dfs_visitor (std::make_pair (
detail::colorize_bipartition (partition_map), std::make_pair (detail::check_bipartition (partition_map),
put_property (partition_map, color_traits <partition_color_t>::white (), on_start_vertex ()))))));
-
- // depth_first_search (graph, vertex_index_map (index_map).visitor (dfs_visitor));
}
catch (detail::bipartite_visitor_error <vertex_descriptor_t> error)
{
@@ -284,11 +282,9 @@
typedef std::vector <vertex_descriptor_t> predecessors_t;
typedef iterator_property_map <typename predecessors_t::iterator, IndexMap, vertex_descriptor_t,
vertex_descriptor_t&> predecessor_map_t;
- typedef predecessor_recorder <predecessor_map_t, IndexMap> predecessor_recorder_t;
predecessors_t predecessors (num_vertices (graph), graph_traits <Graph>::null_vertex ());
predecessor_map_t predecessor_map (predecessors.begin (), index_map);
- predecessor_recorder_t predecessor_recorder (predecessor_map);
/// Initialize predecessor map
for (boost::tie (vertex_iter, vertex_end) = vertices (graph); vertex_iter != vertex_end; ++vertex_iter)
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