Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r75861 - trunk/boost/graph
From: jewillco_at_[hidden]
Date: 2011-12-07 20:43:40


Author: jewillco
Date: 2011-12-07 20:43:39 EST (Wed, 07 Dec 2011)
New Revision: 75861
URL: http://svn.boost.org/trac/boost/changeset/75861

Log:
Removed debugging output; fixes #6239
Text files modified:
   trunk/boost/graph/kamada_kawai_spring_layout.hpp | 4 ++--
   1 files changed, 2 insertions(+), 2 deletions(-)

Modified: trunk/boost/graph/kamada_kawai_spring_layout.hpp
==============================================================================
--- trunk/boost/graph/kamada_kawai_spring_layout.hpp (original)
+++ trunk/boost/graph/kamada_kawai_spring_layout.hpp 2011-12-07 20:43:39 EST (Wed, 07 Dec 2011)
@@ -218,7 +218,7 @@
           detail::graph::compute_edge_length(g, distance, index,
                                              edge_or_side_length);
 
- std::cerr << "edge_length = " << edge_length << std::endl;
+ // std::cerr << "edge_length = " << edge_length << std::endl;
         
         // Compute l_{ij} and k_{ij}
         const weight_type K = spring_constant;
@@ -275,7 +275,7 @@
                 E += .5 * k_ij * (dist - l_ij) * (dist - l_ij);
               }
             }
- std::cerr << "E = " << E << std::endl;
+ // std::cerr << "E = " << E << std::endl;
 
             // Compute the elements of the Jacobian
             // From


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