Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r52918 - trunk/libs/graph/example
From: asutton_at_[hidden]
Date: 2009-05-11 13:45:48


Author: asutton
Date: 2009-05-11 13:45:47 EDT (Mon, 11 May 2009)
New Revision: 52918
URL: http://svn.boost.org/trac/boost/changeset/52918

Log:
Cleaning up some build issues in the imoprted examples.

Text files modified:
   trunk/libs/graph/example/Jamfile.v2 | 7 ++-----
   trunk/libs/graph/example/closeness_centrality.cpp | 2 +-
   trunk/libs/graph/example/eccentricity.cpp | 1 -
   trunk/libs/graph/example/helper.hpp | 2 +-
   trunk/libs/graph/example/inclusive_mean_geodesic.cpp | 1 -
   trunk/libs/graph/example/mean_geodesic.cpp | 1 -
   trunk/libs/graph/example/scaled_closeness_centrality.cpp | 1 -
   7 files changed, 4 insertions(+), 11 deletions(-)

Modified: trunk/libs/graph/example/Jamfile.v2
==============================================================================
--- trunk/libs/graph/example/Jamfile.v2 (original)
+++ trunk/libs/graph/example/Jamfile.v2 2009-05-11 13:45:47 EDT (Mon, 11 May 2009)
@@ -3,12 +3,9 @@
 # Distributed under the Boost Software License, Version 1.0. (See accompanying
 # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
 
-project
- : requirements
- <include>../../../
- <include>$BOOST_ROOT
- ;
 
+exe labeled_graph : labeled_graph.cpp ;
+exe quick_tour_new : quick_tour_new.cpp ;
 exe degree_centrality : degree_centrality.cpp ;
 exe influence_prestige : influence_prestige.cpp ;
 exe closeness_centrality : closeness_centrality.cpp ;

Modified: trunk/libs/graph/example/closeness_centrality.cpp
==============================================================================
--- trunk/libs/graph/example/closeness_centrality.cpp (original)
+++ trunk/libs/graph/example/closeness_centrality.cpp 2009-05-11 13:45:47 EDT (Mon, 11 May 2009)
@@ -10,9 +10,9 @@
 
 #include <boost/graph/undirected_graph.hpp>
 #include <boost/graph/exterior_property.hpp>
-#include <boost/graph/constant_property_map.hpp>
 #include <boost/graph/floyd_warshall_shortest.hpp>
 #include <boost/graph/closeness_centrality.hpp>
+#include <boost/graph/property_maps/constant_property_map.hpp>
 #include "helper.hpp"
 
 using namespace std;

Modified: trunk/libs/graph/example/eccentricity.cpp
==============================================================================
--- trunk/libs/graph/example/eccentricity.cpp (original)
+++ trunk/libs/graph/example/eccentricity.cpp 2009-05-11 13:45:47 EDT (Mon, 11 May 2009)
@@ -11,7 +11,6 @@
 
 #include <boost/graph/undirected_graph.hpp>
 #include <boost/graph/exterior_property.hpp>
-#include <boost/graph/constant_property_map.hpp>
 #include <boost/graph/floyd_warshall_shortest.hpp>
 #include <boost/graph/eccentricity.hpp>
 #include "helper.hpp"

Modified: trunk/libs/graph/example/helper.hpp
==============================================================================
--- trunk/libs/graph/example/helper.hpp (original)
+++ trunk/libs/graph/example/helper.hpp 2009-05-11 13:45:47 EDT (Mon, 11 May 2009)
@@ -12,7 +12,7 @@
 #include <map>
 #include <algorithm>
 
-#include <boost/graph/null_property_map.hpp>
+#include <boost/graph/properties.hpp>
 
 template <typename Graph, typename NameMap, typename VertexMap>
 typename boost::graph_traits<Graph>::vertex_descriptor

Modified: trunk/libs/graph/example/inclusive_mean_geodesic.cpp
==============================================================================
--- trunk/libs/graph/example/inclusive_mean_geodesic.cpp (original)
+++ trunk/libs/graph/example/inclusive_mean_geodesic.cpp 2009-05-11 13:45:47 EDT (Mon, 11 May 2009)
@@ -10,7 +10,6 @@
 
 #include <boost/graph/directed_graph.hpp>
 #include <boost/graph/exterior_property.hpp>
-#include <boost/graph/constant_property_map.hpp>
 #include <boost/graph/floyd_warshall_shortest.hpp>
 #include <boost/graph/geodesic_distance.hpp>
 #include "helper.hpp"

Modified: trunk/libs/graph/example/mean_geodesic.cpp
==============================================================================
--- trunk/libs/graph/example/mean_geodesic.cpp (original)
+++ trunk/libs/graph/example/mean_geodesic.cpp 2009-05-11 13:45:47 EDT (Mon, 11 May 2009)
@@ -10,7 +10,6 @@
 
 #include <boost/graph/undirected_graph.hpp>
 #include <boost/graph/exterior_property.hpp>
-#include <boost/graph/constant_property_map.hpp>
 #include <boost/graph/floyd_warshall_shortest.hpp>
 #include <boost/graph/geodesic_distance.hpp>
 #include "helper.hpp"

Modified: trunk/libs/graph/example/scaled_closeness_centrality.cpp
==============================================================================
--- trunk/libs/graph/example/scaled_closeness_centrality.cpp (original)
+++ trunk/libs/graph/example/scaled_closeness_centrality.cpp 2009-05-11 13:45:47 EDT (Mon, 11 May 2009)
@@ -10,7 +10,6 @@
 
 #include <boost/graph/undirected_graph.hpp>
 #include <boost/graph/exterior_property.hpp>
-#include <boost/graph/constant_property_map.hpp>
 #include <boost/graph/floyd_warshall_shortest.hpp>
 #include <boost/graph/closeness_centrality.hpp>
 #include "helper.hpp"


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