mirror of https://github.com/CGAL/cgal
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:
parent
4485412a52
commit
9a2c6ab631
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue