Remove debug printing

Oups, I forgot to remove part of the console output from the example when I copied it to the ipelet...
This commit is contained in:
Marc Glisse 2018-04-27 21:20:20 +02:00 committed by GitHub
parent 4485412a52
commit 9a2c6ab631
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -104,7 +104,6 @@ void mstIpelet::protected_run(int fn)
boost::kruskal_minimum_spanning_tree(ft,
std::back_inserter(mst),
vertex_index_map(vertex_index_pmap));
std::cout << "The edges of the Euclidean mimimum spanning tree:" << std::endl;
for(std::list<edge_descriptor>::iterator it = mst.begin(); it != mst.end(); ++it){
edge_descriptor ed = *it;
vertex_descriptor svd = source(ed,t);