Boost logo

Boost-Commit :

From: asutton_at_[hidden]
Date: 2008-06-02 19:23:23


Author: asutton
Date: 2008-06-02 19:23:22 EDT (Mon, 02 Jun 2008)
New Revision: 46066
URL: http://svn.boost.org/trac/boost/changeset/46066

Log:
Branched previous work to tagged.

Added:
   sandbox/SOC/2008/graphs/branches/tagged/
   sandbox/SOC/2008/graphs/branches/tagged/boost/
      - copied from r45963, /sandbox/SOC/2008/graphs/boost/
   sandbox/SOC/2008/graphs/branches/tagged/boost/graphs/adjacency_list/adjacency_iterator.hpp
      - copied unchanged from r45964, /sandbox/SOC/2008/graphs/boost/graphs/adjacency_list/adjacency_iterator.hpp
   sandbox/SOC/2008/graphs/branches/tagged/boost/graphs/adjacency_list/adjacency_list.hpp
      - copied unchanged from r45964, /sandbox/SOC/2008/graphs/boost/graphs/adjacency_list/adjacency_list.hpp
   sandbox/SOC/2008/graphs/branches/tagged/boost/graphs/adjacency_list/directed/
      - copied from r45965, /sandbox/SOC/2008/graphs/boost/graphs/adjacency_list/directed/
   sandbox/SOC/2008/graphs/branches/tagged/boost/graphs/adjacency_list/directed/directed.hpp
      - copied unchanged from r45966, /sandbox/SOC/2008/graphs/boost/graphs/adjacency_list/directed/directed.hpp
   sandbox/SOC/2008/graphs/branches/tagged/boost/graphs/adjacency_list/directed/edge.hpp
      - copied unchanged from r45966, /sandbox/SOC/2008/graphs/boost/graphs/adjacency_list/directed/edge.hpp
   sandbox/SOC/2008/graphs/branches/tagged/boost/graphs/adjacency_list/directed/vertex.hpp
      - copied unchanged from r45966, /sandbox/SOC/2008/graphs/boost/graphs/adjacency_list/directed/vertex.hpp
   sandbox/SOC/2008/graphs/branches/tagged/boost/graphs/adjacency_list/types.hpp
      - copied unchanged from r45966, /sandbox/SOC/2008/graphs/boost/graphs/adjacency_list/types.hpp
   sandbox/SOC/2008/graphs/branches/tagged/libs/
      - copied from r45963, /sandbox/SOC/2008/graphs/libs/
Removed:
   sandbox/SOC/2008/graphs/branches/tagged/boost/graphs/adjacency_list/directed/undirected.hpp

Deleted: /sandbox/SOC/2008/graphs/boost/graphs/adjacency_list/directed/undirected.hpp
==============================================================================
--- /sandbox/SOC/2008/graphs/boost/graphs/adjacency_list/directed/undirected.hpp 2008-06-02 19:23:22 EDT (Mon, 02 Jun 2008)
+++ (empty file)
@@ -1,64 +0,0 @@
-
-#ifndef BOOST_GRAPHS_ADJACENCY_LIST_UNDIRECTED_HPP
-#define BOOST_GRAPHS_ADJACENCY_LIST_UNDIRECTED_HPP
-
-#include <list>
-
-#include <boost/graphs/utility/ordered.hpp>
-#include <boost/graphs/adjacency_list/vertex.hpp>
-#include <boost/graphs/adjacency_list/edge.hpp>
-#include <boost/graphs/adjacency_list/storage_traits.hpp>
-
-namespace boost {
-namespace graphs {
-namespace adj_list {
-
-// Implementation of directed adjacency lists.
-
-// Forward declarations
-template <typename VP, typename EP, typename V, typename E, template <typename> class VES> struct directed_vertex;
-template <typename VP, typename EP, typename V, typename E> struct directed_edge;
-
-// Unfortunately, I have to hack out a little tag dispatch here... This will
-// go away with the concepts.
-struct directed_tag { };
-
-/**
- * This is the metafunction for directed types.
- */
-template <
- typename VertexProps,
- typename EdgeProps,
- typename VertexStore,
- typename EdgeStore,
- template <typename> class VertexEdgeStore
- >
-struct directed
-{
- typedef directed_tag tag;
-
- typedef vertex_desc<
- typename storage_traits<VertexStore>::descriptor_type
- > vertex_descriptor;
-
- typedef edge_desc<
- typename storage_traits<EdgeStore>::descriptor_type
- > edge_descriptor;
-
- typedef directed_vertex<
- VertexProps, EdgeProps, vertex_descriptor, edge_descriptor, VertexEdgeStore
- > vertex_type;
-
- typedef directed_edge<
- VertexProps, EdgeProps, vertex_descriptor, edge_descriptor
- > edge_type;
-};
-
-} /* namespace adj_list */
-} /* namespace graphs */
-} /* namespace boost */
-
-#include <boost/graphs/adjacency_list/directed/vertex.hpp>
-#include <boost/graphs/adjacency_list/directed/edge.hpp>
-
-#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