Skip to content

Commit

Permalink
do not write to cerr
Browse files Browse the repository at this point in the history
  • Loading branch information
Ylannl committed Jul 6, 2020
1 parent 59f45bf commit 32ce381
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/node_optimise_arrangement.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ void OptimiseArrangmentGridNode::process() {
}
}

std::cerr << " Graph-cut with " << faces.size() << " faces and " << points_per_plane.size() << " plane labels\n";
// std::cerr << " Graph-cut with " << faces.size() << " faces and " << points_per_plane.size() << " plane labels\n";
// don't bother if there are no planes or faces
if (points_per_plane.size()==0 || faces.size()==0) {
arr_dissolve_fp(arr, true, true);
Expand Down Expand Up @@ -372,7 +372,7 @@ void OptimiseArrangmentNode::process() {
// also compute average elevation for all inliers (needed for LoD1.3 later)
}
}
std::cerr << " Graph-cut with " << faces.size() << " faces and " << points_per_plane.size() << " plane labels\n";
// std::cerr << " Graph-cut with " << faces.size() << " faces and " << points_per_plane.size() << " plane labels\n";
// if (faces.size() > max_face_complexity) {

// return
Expand Down

0 comments on commit 32ce381

Please sign in to comment.