Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r50733 - trunk/libs/graph/test
From: jewillco_at_[hidden]
Date: 2009-01-22 15:51:52


Author: jewillco
Date: 2009-01-22 15:51:52 EST (Thu, 22 Jan 2009)
New Revision: 50733
URL: http://svn.boost.org/trac/boost/changeset/50733

Log:
Hopefully fixed PGI regression test failure
Text files modified:
   trunk/libs/graph/test/kolmogorov_max_flow_test.cpp | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: trunk/libs/graph/test/kolmogorov_max_flow_test.cpp
==============================================================================
--- trunk/libs/graph/test/kolmogorov_max_flow_test.cpp (original)
+++ trunk/libs/graph/test/kolmogorov_max_flow_test.cpp 2009-01-22 15:51:52 EST (Thu, 22 Jan 2009)
@@ -241,7 +241,7 @@
             return;
           typename std::list<tVertex>::const_iterator it = find(tSuper::m_orphans.begin(), tSuper::m_orphans.end(), v);
           // a node is active, if its in the active_list AND (is has_a_parent, or its already in the orphans_list or its the sink, or its the source)
- bool is_active = (tSuper::m_in_active_list_map[v] && (has_parent(v) || it != tSuper::m_orphans.end() ));
+ bool is_active = (tSuper::m_in_active_list_map[v] && (tSuper::has_parent(v) || it != tSuper::m_orphans.end() ));
           if(get_tree(v) != tColorTraits::gray() && !is_active){
             typename graph_traits<Graph>::out_edge_iterator ei,e_end;
             for(tie(ei, e_end) = out_edges(v, tSuper::m_g); ei != e_end; ++ei){


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