Skip to content

v0.2.53..v0.2.54 changeset FindIntersectionsOp.cpp

Garret Voltz edited this page Mar 31, 2020 · 1 revision
diff --git a/hoot-core/src/main/cpp/hoot/core/ops/FindIntersectionsOp.cpp b/hoot-core/src/main/cpp/hoot/core/ops/FindIntersectionsOp.cpp
index 3bb6bfd..a589e7a 100644
--- a/hoot-core/src/main/cpp/hoot/core/ops/FindIntersectionsOp.cpp
+++ b/hoot-core/src/main/cpp/hoot/core/ops/FindIntersectionsOp.cpp
@@ -27,7 +27,7 @@
 #include "FindIntersectionsOp.h"
 
 // Hoot
-#include <hoot/core/algorithms/splitter/DualWaySplitter.h>
+#include <hoot/core/algorithms/splitter/DualHighwaySplitter.h>
 #include <hoot/core/algorithms/splitter/IntersectionSplitter.h>
 #include <hoot/core/criterion/ChainCriterion.h>
 #include <hoot/core/criterion/ElementInIdListCriterion.h>
@@ -76,8 +76,8 @@ void FindIntersectionsOp::apply(std::shared_ptr<OsmMap>& map)
 
   DuplicateWayRemover::removeDuplicates(map);
   SuperfluousWayRemover::removeWays(map);
-  // split ways up on intersections. This must come before DualWaySplitter. The DualWaySplitter
-  // assumes that all intersections are on end nodes.
+  // split ways up on intersections. This must come before DualHighwaySplitter. The
+  // DualHighwaySplitter assumes that all intersections are on end nodes.
   IntersectionSplitter::splitIntersections(map);
   UnlikelyIntersectionRemover::removeIntersections(map);
   LOG_INFO("Assuming drives on right.");
Clone this wiki locally