Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r63723 - in sandbox/SOC/2010/graph: boost/graph libs/test
From: asutton_at_[hidden]
Date: 2010-07-07 09:39:02


Author: asutton
Date: 2010-07-07 09:39:01 EDT (Wed, 07 Jul 2010)
New Revision: 63723
URL: http://svn.boost.org/trac/boost/changeset/63723

Log:
Copied original files out their evential destinations. The previous files
(in the project root) need to be deleted.

Added:
   sandbox/SOC/2010/graph/boost/graph/difference.hpp (contents, props changed)
   sandbox/SOC/2010/graph/boost/graph/intersection.hpp (contents, props changed)
   sandbox/SOC/2010/graph/boost/graph/join.hpp (contents, props changed)
   sandbox/SOC/2010/graph/boost/graph/sum.hpp (contents, props changed)
   sandbox/SOC/2010/graph/boost/graph/union.hpp (contents, props changed)
Text files modified:
   sandbox/SOC/2010/graph/libs/test/test.cpp | 226 +++++++++++++++++++++++++++++++++++++++
   1 files changed, 224 insertions(+), 2 deletions(-)

Added: sandbox/SOC/2010/graph/boost/graph/difference.hpp
==============================================================================
--- (empty file)
+++ sandbox/SOC/2010/graph/boost/graph/difference.hpp 2010-07-07 09:39:01 EDT (Wed, 07 Jul 2010)
@@ -0,0 +1,39 @@
+//
+//=======================================================================
+// Copyright 1997-2001 University of Notre Dame.
+// Authors: Jeremy G. Siek, Lie-Quan Lee, Andrew Lumsdaine
+//
+// 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)
+//=======================================================================
+//
+
+#ifndef BOOST_GRAPH_DIFFERENCE_HPP
+#define BOOST_GRAPH_DIFFERENCE_HPP
+
+#include <boost/config.hpp>
+#include <vector>
+#include <boost/graph/graph_traits.hpp>
+#include <boost/property_map/property_map.hpp>
+#include <boost/type_traits/conversion_traits.hpp>
+
+namespace boost {
+
+ template <class VertexListGraph, class MutableGraph>
+ void difference(const VertexListGraph& G1, const VertexListGraph& G2, MutableGraph& G)
+ {
+ typename graph_traits < MutableGraph >::edge_iterator ei, ei_end;
+ // Don't forget: it is probably better to add only edges that are not in G2 instead of add all and remove them later
+
+ copy_graph(G1, G);
+ for (tie(ei, ei_end) = edges(G2); ei != ei_end; ++ei) {
+ if (edge(source(*ei, G2), target(*ei, G2), G).second == true)
+ remove_edge(source(*ei, G), target(*ei, G), G);
+ }
+
+ }
+
+} // namespace boost
+
+#endif // BOOST_GRAPH_DIFFERENCE_HPP

Added: sandbox/SOC/2010/graph/boost/graph/intersection.hpp
==============================================================================
--- (empty file)
+++ sandbox/SOC/2010/graph/boost/graph/intersection.hpp 2010-07-07 09:39:01 EDT (Wed, 07 Jul 2010)
@@ -0,0 +1,39 @@
+//
+//=======================================================================
+// Copyright 1997-2001 University of Notre Dame.
+// Authors: Jeremy G. Siek, Lie-Quan Lee, Andrew Lumsdaine
+//
+// 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)
+//=======================================================================
+//
+
+#ifndef BOOST_GRAPH_INTERSECTION_HPP
+#define BOOST_GRAPH_INTERSECTION_HPP
+
+#include <boost/config.hpp>
+#include <vector>
+#include <boost/graph/graph_traits.hpp>
+#include <boost/property_map/property_map.hpp>
+#include <boost/type_traits/conversion_traits.hpp>
+
+namespace boost {
+
+ template <class VertexListGraph, class MutableGraph>
+ void intersection(const VertexListGraph& G1, const VertexListGraph& G2, MutableGraph& G)
+ {
+ typename graph_traits < MutableGraph >::edge_iterator ei, ei_end;
+ typename property_map < MutableGraph, vertex_name_t >::type name_map_G = get(vertex_name, G);
+ // typename property_map < VertexListGraph, vertex_name_t >::type name_map_G1 = get(vertex_name, G1);
+
+
+ for (tie(ei, ei_end) = edges(G1); ei != ei_end; ++ei)
+ if (edge(source(*ei, G1), target(*ei, G1), G2).second == true)
+ add_edge(source(*ei, G1), target(*ei, G1), G);
+
+ }
+
+} // namespace boost
+
+#endif // BOOST_GRAPH_INTERSECTION_HPP

Added: sandbox/SOC/2010/graph/boost/graph/join.hpp
==============================================================================
--- (empty file)
+++ sandbox/SOC/2010/graph/boost/graph/join.hpp 2010-07-07 09:39:01 EDT (Wed, 07 Jul 2010)
@@ -0,0 +1,44 @@
+//
+//=======================================================================
+// Copyright 1997-2001 University of Notre Dame.
+// Authors: Jeremy G. Siek, Lie-Quan Lee, Andrew Lumsdaine
+//
+// 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)
+//=======================================================================
+//
+
+#ifndef BOOST_GRAPH_JOIN_HPP
+#define BOOST_GRAPH_JOIN_HPP
+
+#include <boost/config.hpp>
+#include <vector>
+#include <boost/graph/graph_traits.hpp>
+#include <boost/property_map/property_map.hpp>
+#include <boost/type_traits/conversion_traits.hpp>
+
+namespace boost {
+
+ template <class VertexListGraph, class MutableGraph>
+ void graph_join(const VertexListGraph& G1, const VertexListGraph& G2, MutableGraph& G)
+ {
+ typename graph_traits < MutableGraph >::vertex_iterator vi, vi_end;
+ typename graph_traits < MutableGraph >::vertex_iterator ui, ui_end;
+ copy_graph(G1, G);
+ copy_graph(G2, G);
+
+ for (tie(vi, vi_end) = vertices(G1); vi != vi_end; ++vi) {
+ for (tie(ui, ui_end) = vertices(G); ui != ui_end; ++ui) {
+ if (vertex(*ui, G1) == true) // not working
+ std::cout << "Vertex: " << *ui << " is in G1" << std::endl;
+ else
+ std::cout << "Vertex: " << *ui << " is NOT in G1 (G - G1)" << std::endl;
+ }
+ }
+
+ }
+
+} // namespace boost
+
+#endif // BOOST_GRAPH_JOIN_HPP

Added: sandbox/SOC/2010/graph/boost/graph/sum.hpp
==============================================================================
--- (empty file)
+++ sandbox/SOC/2010/graph/boost/graph/sum.hpp 2010-07-07 09:39:01 EDT (Wed, 07 Jul 2010)
@@ -0,0 +1,40 @@
+//
+//=======================================================================
+// Copyright 1997-2001 University of Notre Dame.
+// Authors: Jeremy G. Siek, Lie-Quan Lee, Andrew Lumsdaine
+//
+// 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)
+//=======================================================================
+//
+
+#ifndef BOOST_GRAPH_SUM_HPP
+#define BOOST_GRAPH_SUM_HPP
+
+#include <boost/config.hpp>
+#include <vector>
+#include <boost/graph/graph_traits.hpp>
+#include <boost/property_map/property_map.hpp>
+#include <boost/type_traits/conversion_traits.hpp>
+
+namespace boost {
+
+ template <class VertexListGraph, class MutableGraph>
+ void graph_sum(const VertexListGraph& G1, const VertexListGraph& G2, MutableGraph& G)
+ {
+ typename graph_traits < MutableGraph >::edge_iterator ei, ei_end;
+
+ copy_graph(G1, G);
+ // std::cout << "Graph sum - edges: ";
+ for (tie(ei, ei_end) = edges(G2); ei != ei_end; ++ei) {
+ // typename property_map<MutableGraph, vertex_index_t>::type index = get(vertex_index, G);
+ // std::cout << "(" << index[source(*ei, G)] << "," << index[target(*ei, G)] << ") ";
+ add_edge(source(*ei, G), target(*ei, G), G);
+ }
+ // std::cout << std::endl;
+ }
+
+} // namespace boost
+
+#endif // BOOST_GRAPH_SUM_HPP

Added: sandbox/SOC/2010/graph/boost/graph/union.hpp
==============================================================================
--- (empty file)
+++ sandbox/SOC/2010/graph/boost/graph/union.hpp 2010-07-07 09:39:01 EDT (Wed, 07 Jul 2010)
@@ -0,0 +1,32 @@
+//
+//=======================================================================
+// Copyright 1997-2001 University of Notre Dame.
+// Authors: Jeremy G. Siek, Lie-Quan Lee, Andrew Lumsdaine
+//
+// 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)
+//=======================================================================
+//
+
+#ifndef BOOST_GRAPH_UNION_HPP
+#define BOOST_GRAPH_UNION_HPP
+
+#include <boost/config.hpp>
+#include <vector>
+#include <boost/graph/graph_traits.hpp>
+#include <boost/property_map/property_map.hpp>
+#include <boost/type_traits/conversion_traits.hpp>
+
+namespace boost {
+
+ template <class VertexListGraph, class MutableGraph>
+ void disjoint_union(const VertexListGraph& G1, const VertexListGraph& G2, MutableGraph& G)
+ {
+ copy_graph(G1, G);
+ copy_graph(G2, G);
+ }
+
+} // namespace boost
+
+#endif // BOOST_GRAPH_UNION_HPP

Modified: sandbox/SOC/2010/graph/libs/test/test.cpp
==============================================================================
--- sandbox/SOC/2010/graph/libs/test/test.cpp (original)
+++ sandbox/SOC/2010/graph/libs/test/test.cpp 2010-07-07 09:39:01 EDT (Wed, 07 Jul 2010)
@@ -1,6 +1,228 @@
+#include <iostream> // for std::cout
+#include <utility> // for std::pair
+#include <algorithm> // for std::for_each
 
 #include <boost/graph/graph_traits.hpp>
+#include <boost/graph/adjacency_list.hpp>
+#include <boost/graph/transpose_graph.hpp>
+#include <boost/graph/graph_utility.hpp>
 
-int main() {
+#include <boost/graph/union.hpp>
+#include <boost/graph/sum.hpp>
+#include <boost/graph/intersection.hpp>
+#include <boost/graph/difference.hpp>
+#include <boost/graph/join.hpp>
 
-}
\ No newline at end of file
+
+using namespace boost;
+using namespace std;
+
+// create a typedef for the Graph type
+typedef adjacency_list < vecS, vecS, bidirectionalS, property < vertex_name_t, char > > Graph;
+typedef pair<int, int> Edge;
+
+/*******************************************
+ * Just playing with BGL in this beginning
+ */
+
+template <class Graph> struct exercise_vertex {
+ exercise_vertex(Graph& g_) : g(g_) {}
+ typedef graph_traits<Graph> GraphTraits;
+ typedef typename GraphTraits::vertex_descriptor Vertex;
+
+ void operator()(const Vertex& v) const
+ {
+ typename property_map<Graph, vertex_index_t>::type index = get(vertex_index, g);
+ typename GraphTraits::out_edge_iterator out_i, out_end;
+ typename GraphTraits::in_edge_iterator in_i, in_end;
+ typename GraphTraits::adjacency_iterator ai, ai_end;
+ typename GraphTraits::edge_descriptor e;
+
+ cout << "vertex " << index[v] << "" << endl;
+ cout << " out-edges: ";
+ for (tie(out_i, out_end) = out_edges(v, g); out_i != out_end; ++out_i) {
+ e = *out_i;
+ Vertex src = source(e, g), targ = target(e, g);
+ cout << "(" << index[src] << "," << index[targ] << ") ";
+ }
+ cout << endl;
+
+ cout << " in-edges: ";
+ for (tie(in_i, in_end) = in_edges(v,g); in_i != in_end; ++in_i) {
+ e = *in_i;
+ Vertex src = source(e, g), targ = target(e, g);
+ cout << "(" << index[src] << "," << index[targ] << ") ";
+ }
+ cout << endl;
+
+ cout << " adjacent vertices: ";
+ for (tie(ai, ai_end) = adjacent_vertices(v, g); ai != ai_end; ++ai)
+ cout << index[*ai] << " ";
+ cout << endl;
+
+
+ }
+
+ //...
+ Graph& g;
+};
+
+
+void prt_vertices(Graph g) {
+ // get the property map for vertex indices
+ property_map<Graph, vertex_index_t>::type index = get(vertex_index, g);
+ graph_traits<Graph>::vertex_iterator vi, vi_end;
+
+ cout << "vertices = ";
+ for (tie(vi, vi_end) = vertices(g); vi != vi_end; ++vi)
+ cout << index[*vi] << " ";
+ cout << endl;
+}
+
+void prt_edges(Graph g) {
+ // get the property map for vertex indices
+ property_map<Graph, vertex_index_t>::type index = get(vertex_index, g);
+ graph_traits<Graph>::edge_iterator ei, ei_end;
+
+ cout << "edges = ";
+ for (tie(ei, ei_end) = edges(g); ei != ei_end; ++ei)
+ cout << "(" << index[source(*ei, g)]
+ << "," << index[target(*ei, g)] << ") ";
+ cout << endl;
+}
+
+void explore(Graph g) {
+ exercise_vertex<Graph> blerg(g);
+
+ for_each(vertices(g).first, vertices(g).second,
+ exercise_vertex<Graph>(g));
+
+ graph_traits<Graph>::vertex_iterator vi, vi_end;
+ for (tie(vi, vi_end) = vertices(g); vi != vi_end; ++vi)
+ blerg(*vi);
+}
+
+void prt(Graph g) {
+ property_map < Graph, vertex_name_t >::type name_map = get(vertex_name, g);
+ print_graph(g, name_map);
+ prt_vertices(g);
+ prt_edges(g);
+}
+
+
+
+
+/*******************************************
+ * To create graphs...
+ */
+
+// if d == 1 creates a cycle
+Graph create_graph(int n, int d)
+{
+ // declare a graph object
+ Graph g(n);
+ char name = 'a';
+ property_map < Graph, vertex_name_t >::type name_map = get(vertex_name, g);
+ graph_traits < Graph >::vertex_iterator vi, vi_end;
+
+ // add the edges to the graph object
+ for (int i = 0; i < n; ++i) {
+ add_edge(i, (i-d+n)%n, g);
+ add_edge(i, (i+d)%n, g);
+ }
+
+ for (tie(vi, vi_end) = vertices(g); vi != vi_end; vi++, name++)
+ name_map[*vi] = name;
+
+ return g;
+}
+
+//void add_source(char bla, Graph &g, char name)
+void to_source(Graph &g, size_t v, char name)
+{
+ property_map < Graph, vertex_name_t >::type name_map = get(vertex_name, g);
+ graph_traits < Graph >::vertex_iterator vi, vi_end;
+ property_map < Graph, vertex_index_t >::type index = get(vertex_index, g);
+
+ // int v = add_vertex(g);
+ for (tie(vi, vi_end) = vertices(g); vi != vi_end; vi++)
+ if (v != *vi)
+ add_edge(v, *vi, g);
+
+ // name_map[* --vertices(g).second] = name;
+ name_map[v] = name;
+}
+
+void to_sink(Graph &g, size_t v, char name)
+{
+ property_map < Graph, vertex_name_t >::type name_map = get(vertex_name, g);
+ graph_traits < Graph >::vertex_iterator vi, vi_end;
+ property_map < Graph, vertex_index_t >::type index = get(vertex_index, g);
+
+ // int v = add_vertex(g);
+ for (tie(vi, vi_end) = vertices(g); vi != vi_end; vi++)
+ if (v != *vi)
+ add_edge(*vi, v, g);
+
+ // name_map[* --vertices(g).second] = name;
+ name_map[v] = name;
+}
+
+
+
+int main(int,char*[])
+{
+ Graph h1 = create_graph(5,1);
+ Graph h2 = create_graph(5,2);
+ to_source(h1, 5, 'x');
+ to_sink(h1, 5, 'x');
+
+ to_sink(h2, 5, 'y');
+ // x and y are the "same"
+
+ add_edge(0, 6, h1); // vertex 6 (w) is only in h1
+ add_edge(6, 0, h1);
+ get(vertex_name, h1)[6] = 'w';
+
+ add_edge(7, 0, h2); // vertex 7 (z) is only in h2
+ add_edge(0, 7, h2);
+ get(vertex_name, h2)[7] = 'z';
+
+ prt(h1);
+ prt(h2);
+
+ Graph h_du;
+ cout << "Disjoint union:" << endl;
+ disjoint_union(h1, h2, h_du);
+ prt(h_du);
+ // is there any way to clear h_du and use the same variable for all?
+
+
+ // in this example (graph sum), it creates some parallel edges (e.g., a --> x appears twice)
+ // because x and y are the considered as the same
+ Graph h_s;
+ cout << "Graph sum:" << endl;
+ graph_sum(h1, h2, h_s);
+ prt(h_s);
+
+
+ Graph h_i;
+ cout << "Graph intersection:" << endl;
+ intersection(h1, h2, h_i);
+ prt(h_i);
+
+
+ Graph h_diff;
+ cout << "Graph difference:" << endl;
+ difference(h1, h2, h_diff);
+ prt(h_diff);
+
+ // Not working
+// Graph h_j;
+// cout << "Graph join:" << endl;
+// graph_join(h1, h2, h_j);
+// prt(h_j);
+
+
+ return 0;
+}


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