Boost logo

Boost-Commit :

From: asutton_at_[hidden]
Date: 2007-08-17 09:16:06


Author: asutton
Date: 2007-08-17 09:16:05 EDT (Fri, 17 Aug 2007)
New Revision: 38739
URL: http://svn.boost.org/trac/boost/changeset/38739

Log:
Removing unused files

Removed:
   sandbox/SOC/2007/graphs/libs/graph/examples/flow_network.hpp
   sandbox/SOC/2007/graphs/libs/graph/examples/social_network.hpp

Deleted: sandbox/SOC/2007/graphs/libs/graph/examples/flow_network.hpp
==============================================================================
--- sandbox/SOC/2007/graphs/libs/graph/examples/flow_network.hpp 2007-08-17 09:16:05 EDT (Fri, 17 Aug 2007)
+++ (empty file)
@@ -1,40 +0,0 @@
-// (C) Copyright Andrew Sutton 2007
-//
-// Use, modification and distribution are subject to the
-// Boost Software License, Version 1.0 (See accompanying file
-// LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
-
-#ifndef BOOST_GRAPH_EXAMPLE_FLOW_NETWORK_HPP
-#define BOOST_GRAPH_EXAMPLE_FLOW_NETWORK_HPP
-
-#include <string>
-#include <map>
-
-#include <boost/graph/directed_graph.hpp>
-#include <boost/graph/exterior_property.hpp>
-#include <boost/graph/constant_property_map.hpp>
-
-struct Actor
-{
- std::string name;
-};
-
-typedef boost::directed_graph<Actor> Graph;
-typedef boost::graph_traits<Graph>::vertex_descriptor Vertex;
-typedef boost::graph_traits<Graph>::edge_descriptor Edge;
-
-typedef boost::exterior_vertex_property<Graph, int> DistanceProperty;
-typedef DistanceProperty::matrix_type DistanceMatrix;
-typedef DistanceProperty::matrix_map_type DistanceMatrixMap;
-
-typedef boost::constant_property_map<Edge, int> WeightMap;
-
-typedef boost::exterior_vertex_property<Graph, unsigned> CentralityProperty;
-typedef CentralityProperty::container_type CentralityContainer;
-typedef CentralityProperty::map_type CentralityMap;
-
-typedef boost::exterior_vertex_property<Graph, float> ClosenessProperty;
-typedef ClosenessProperty::container_type ClosenessContainer;
-typedef ClosenessProperty::map_type ClosenessMap;
-
-#endif

Deleted: sandbox/SOC/2007/graphs/libs/graph/examples/social_network.hpp
==============================================================================
--- sandbox/SOC/2007/graphs/libs/graph/examples/social_network.hpp 2007-08-17 09:16:05 EDT (Fri, 17 Aug 2007)
+++ (empty file)
@@ -1,62 +0,0 @@
-// (C) Copyright Andrew Sutton 2007
-//
-// Use, modification and distribution are subject to the
-// Boost Software License, Version 1.0 (See accompanying file
-// LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
-
-#ifndef BOOST_GRAPH_EXAMPLE_SOCIAL_NETWORK_HPP
-#define BOOST_GRAPH_EXAMPLE_SOCIAL_NETWORK_HPP
-
-#include <string>
-#include <map>
-
-#include <boost/graph/undirected_graph.hpp>
-#include <boost/graph/exterior_property.hpp>
-#include <boost/graph/constant_property_map.hpp>
-
-//[social_network_types
-struct Actor
-{
- std::string name;
-};
-
-typedef boost::undirected_graph<Actor> Graph;
-typedef boost::graph_traits<Graph>::vertex_descriptor Vertex;
-typedef boost::graph_traits<Graph>::edge_descriptor Edge;
-//]
-
-//[distance_matrix_types
-typedef boost::exterior_vertex_property<Graph, int> DistanceProperty;
-typedef DistanceProperty::matrix_type DistanceMatrix;
-typedef DistanceProperty::matrix_map_type DistanceMatrixMap;
-//]
-
-//[constant_weight_map_types
-typedef boost::constant_property_map<Edge, int> WeightMap;
-//]
-
-//[centrality_map_types
-typedef boost::exterior_vertex_property<Graph, unsigned> CentralityProperty;
-typedef CentralityProperty::container_type CentralityContainer;
-typedef CentralityProperty::map_type CentralityMap;
-//]
-
-//[closeness_map_types
-typedef boost::exterior_vertex_property<Graph, float> ClosenessProperty;
-typedef ClosenessProperty::container_type ClosenessContainer;
-typedef ClosenessProperty::map_type ClosenessMap;
-//]
-
-//[geodesic_map_types
-typedef boost::exterior_vertex_property<Graph, float> GeodesicProperty;
-typedef GeodesicProperty::container_type GeodesicContainer;
-typedef GeodesicProperty::map_type GeodesicMap;
-//]
-
-//[eccentricity_map_types
-typedef boost::exterior_vertex_property<Graph, int> EccentricityProperty;
-typedef EccentricityProperty::container_type EccentricityContainer;
-typedef EccentricityProperty::map_type EccentricityMap;
-//]
-
-#endif


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