$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: asutton_at_[hidden]
Date: 2007-08-20 13:44:54
Author: asutton
Date: 2007-08-20 13:44:53 EDT (Mon, 20 Aug 2007)
New Revision: 38795
URL: http://svn.boost.org/trac/boost/changeset/38795
Log:
Small changes to cycle.cpp
Text files modified: 
   sandbox/SOC/2007/graphs/libs/graph/test/Jamfile.v2 |     2 +-                                      
   sandbox/SOC/2007/graphs/libs/graph/test/cycle.cpp  |     4 +++-                                    
   2 files changed, 4 insertions(+), 2 deletions(-)
Modified: sandbox/SOC/2007/graphs/libs/graph/test/Jamfile.v2
==============================================================================
--- sandbox/SOC/2007/graphs/libs/graph/test/Jamfile.v2	(original)
+++ sandbox/SOC/2007/graphs/libs/graph/test/Jamfile.v2	2007-08-20 13:44:53 EDT (Mon, 20 Aug 2007)
@@ -34,7 +34,7 @@
 #
 # exe exterior : exterior.cpp ;
 #
-# exe cycle : cycle.cpp ;
+exe cycle : cycle.cpp ;
 #
 # exe clique : clique.cpp ;
 #
Modified: sandbox/SOC/2007/graphs/libs/graph/test/cycle.cpp
==============================================================================
--- sandbox/SOC/2007/graphs/libs/graph/test/cycle.cpp	(original)
+++ sandbox/SOC/2007/graphs/libs/graph/test/cycle.cpp	2007-08-20 13:44:53 EDT (Mon, 20 Aug 2007)
@@ -93,9 +93,11 @@
     add_edge(v[1], v[2], g);
     add_edge(v[2], v[0], g);
 
+    /*
     add_edge(v[0], v[3], g);
     add_edge(v[3], v[4], g);
     add_edge(v[4], v[0], g);
+    */
 };
 
 template <typename Graph>
@@ -103,7 +105,7 @@
 {
     Graph g;
     // build_graph(g);
-    make_prism_graph(g, 3, 2);
+    make_prism_graph(g, 3, 2, with_clockwise_cycle(), with_bidirected_spokes());
     // make_complete_graph(g, 4, with_clockwise_cycle());
 
     size_t count = 0;