-
Notifications
You must be signed in to change notification settings - Fork 74
v0.2.53..v0.2.54 changeset HighwayMergerCreator.cpp
Garret Voltz edited this page Mar 31, 2020
·
1 revision
diff --git a/hoot-core/src/main/cpp/hoot/core/conflate/highway/HighwayMergerCreator.cpp b/hoot-core/src/main/cpp/hoot/core/conflate/highway/HighwayMergerCreator.cpp
index febe951..1dba24f 100644
--- a/hoot-core/src/main/cpp/hoot/core/conflate/highway/HighwayMergerCreator.cpp
+++ b/hoot-core/src/main/cpp/hoot/core/conflate/highway/HighwayMergerCreator.cpp
@@ -22,7 +22,7 @@
* This will properly maintain the copyright information. DigitalGlobe
* copyrights will be updated automatically.
*
- * @copyright Copyright (C) 2015, 2017, 2019 DigitalGlobe (http://www.digitalglobe.com/)
+ * @copyright Copyright (C) 2015, 2017, 2019, 2020 DigitalGlobe (http://www.digitalglobe.com/)
*/
#include "HighwayMergerCreator.h"
@@ -62,7 +62,7 @@ bool HighwayMergerCreator::createMergers(const MatchSet& matches, vector<MergerP
ConstMatchPtr m = *it;
LOG_VART(m->toString());
const HighwayMatch* hm = dynamic_cast<const HighwayMatch*>(m.get());
- // check to make sure all the input matches are building matches.
+ // check to make sure all the input matches are highway matches.
if (hm == 0)
{
// return an empty result
@@ -75,7 +75,7 @@ bool HighwayMergerCreator::createMergers(const MatchSet& matches, vector<MergerP
// there should only be one HighwayMatch in a set.
sublineMatcher = hm->getSublineMatcher();
set<pair<ElementId, ElementId>> s = hm->getMatchPairs();
- LOG_VART(s);
+ //LOG_VART(s);
eids.insert(s.begin(), s.end());
}
}