Skip to content

Commit

Permalink
Change skewness map to vector
Browse files Browse the repository at this point in the history
  • Loading branch information
chambbj committed Sep 23, 2019
1 parent 1b28576 commit 32a2e3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion filters/SkewnessBalancingFilter.cpp
Expand Up @@ -67,7 +67,7 @@ std::set<PointId> SkewnessBalancingFilter::processGround(PointViewPtr view)
point_count_t n1(0);
double delta, delta_n, term1, M1, M2, M3;
M1 = M2 = M3 = 0.0;
std::map<PointId, double> skewness;
std::vector<double> skewness;
for (PointId i = 0; i < view->size(); ++i)
{
double z = view->getFieldAs<double>(Dimension::Id::Z, i);
Expand Down

0 comments on commit 32a2e3d

Please sign in to comment.