Boost logo

Boost-Commit :

From: asutton_at_[hidden]
Date: 2007-08-14 09:42:17


Author: asutton
Date: 2007-08-14 09:42:16 EDT (Tue, 14 Aug 2007)
New Revision: 38657
URL: http://svn.boost.org/trac/boost/changeset/38657

Log:
Removed IncidenceGraph interface for a better refinement of
concept check.

Text files modified:
   sandbox/SOC/2007/graphs/libs/graph/test/concept/closeness_centrality_check.cpp | 8 +-------
   sandbox/SOC/2007/graphs/libs/graph/test/concept/mean_geodesic_check.cpp | 8 +-------
   2 files changed, 2 insertions(+), 14 deletions(-)

Modified: sandbox/SOC/2007/graphs/libs/graph/test/concept/closeness_centrality_check.cpp
==============================================================================
--- sandbox/SOC/2007/graphs/libs/graph/test/concept/closeness_centrality_check.cpp (original)
+++ sandbox/SOC/2007/graphs/libs/graph/test/concept/closeness_centrality_check.cpp 2007-08-14 09:42:16 EDT (Tue, 14 Aug 2007)
@@ -15,16 +15,10 @@
 {
     {
         typedef descriptor_archetype Vertex;
- typedef incidence_graph_archetype<
- Vertex,
- undirected_tag,
- allow_parallel_edge_tag
- > IncidenceGraph;
         typedef vertex_list_graph_archetype<
                 Vertex,
                 undirected_tag,
- allow_parallel_edge_tag,
- IncidenceGraph
+ allow_parallel_edge_tag
> Graph;
         typedef writable_property_map_archetype<Vertex, float> CentralityMap;
         typedef readable_property_map_archetype<Vertex, size_t> DistanceMap;

Modified: sandbox/SOC/2007/graphs/libs/graph/test/concept/mean_geodesic_check.cpp
==============================================================================
--- sandbox/SOC/2007/graphs/libs/graph/test/concept/mean_geodesic_check.cpp (original)
+++ sandbox/SOC/2007/graphs/libs/graph/test/concept/mean_geodesic_check.cpp 2007-08-14 09:42:16 EDT (Tue, 14 Aug 2007)
@@ -15,16 +15,10 @@
 {
     {
         typedef descriptor_archetype Vertex;
- typedef incidence_graph_archetype<
- Vertex,
- undirected_tag,
- allow_parallel_edge_tag
- > IncidenceGraph;
         typedef vertex_list_graph_archetype<
                 Vertex,
                 undirected_tag,
- allow_parallel_edge_tag,
- IncidenceGraph
+ allow_parallel_edge_tag
> Graph;
         typedef writable_property_map_archetype<Vertex, float> CentralityMap;
         typedef readable_property_map_archetype<Vertex, size_t> DistanceMap;


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