No-op change: rename function parameter.

This commit is contained in:
Yury Melnichek 2011-04-25 13:15:43 +02:00 committed by Alex Zolotarev
parent 5a615584b9
commit 1741afd848
2 changed files with 3 additions and 3 deletions

View file

@ -59,7 +59,7 @@ public:
}
vector<int64_t> covering::CoverFeature(FeatureType const & f,
uint64_t cellPenaltyAreaPerNode)
uint64_t cellPenaltyArea)
{
FeatureIntersector featureIntersector;
f.ForEachPointRef(featureIntersector, -1);
@ -76,7 +76,7 @@ vector<int64_t> covering::CoverFeature(FeatureType const & f,
}
vector<RectId> cells;
covering::CoverObject(featureIntersector, cellPenaltyAreaPerNode, cells, RectId::Root());
covering::CoverObject(featureIntersector, cellPenaltyArea, cells, RectId::Root());
vector<int64_t> res(cells.size());
for (size_t i = 0; i < cells.size(); ++i)

View file

@ -13,7 +13,7 @@ namespace covering
{
// Cover feature with RectIds and return their integer representations.
vector<int64_t> CoverFeature(FeatureType const & feature,
uint64_t cellPenaltyAreaPerNode);
uint64_t cellPenaltyArea);
// Cover viewport with RectIds and append their RectIds as well.
vector<pair<int64_t, int64_t> > CoverViewportAndAppendLowerLevels(m2::RectD const & rect);
// Given a vector of intervals [a, b), sort them and merge overlapping intervals.