Skip to content

Commit

Permalink
Remove debug.
Browse files Browse the repository at this point in the history
  • Loading branch information
abellgithub committed Feb 13, 2020
1 parent 1a3b971 commit b62dac7
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions filters/SkewnessBalancingFilter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,6 @@ void SkewnessBalancingFilter::processGround(PointViewPtr view)
};
std::sort(view->begin(), view->end(), cmp);

for (PointId idx = 0; idx < view->size(); idx++)
std::cerr << "Z = " << view->getFieldAs<double>(Dimension::Id::Z, idx) << "!\n";

auto setClass = [&view](PointId first, PointId last, int cl)
{
for (PointId idx = first; idx <= last; ++idx)
Expand All @@ -84,7 +81,6 @@ for (PointId idx = 0; idx < view->size(); idx++)
for (PointId i = 0; i < view->size(); ++i)
{
double z = view->getFieldAs<double>(Dimension::Id::Z, i);
std::cerr << "Z value = " << z << "!\n";
n1 = n;
n++;
delta = z - M1;
Expand Down

0 comments on commit b62dac7

Please sign in to comment.