diff --git a/routing/base/astar_algorithm.hpp b/routing/base/astar_algorithm.hpp index 05b0130ca9..0e54fd4d8c 100644 --- a/routing/base/astar_algorithm.hpp +++ b/routing/base/astar_algorithm.hpp @@ -77,12 +77,38 @@ public: // Used for FindPath, FindPathBidirectional. Vertex const m_finalVertex; // Used for AdjustRoute. - std::vector const * m_prevRoute; + std::vector const * const m_prevRoute; my::Cancellable const & m_cancellable; OnVisitedVertexCallback const m_onVisitedVertexCallback; CheckLengthCallback const m_checkLengthCallback; }; + struct ParamsForTests + { + ParamsForTests(Graph & graph, Vertex const & startVertex, Vertex const & finalVertex, + std::vector const * prevRoute, + CheckLengthCallback const & checkLengthCallback) + : m_graph(graph) + , m_startVertex(startVertex) + , m_finalVertex(finalVertex) + , m_prevRoute(prevRoute) + , m_onVisitedVertexCallback([](Vertex const &, Vertex const &) {}) + , m_checkLengthCallback(checkLengthCallback + ? checkLengthCallback + : [](Weight const & /* weight */) { return true; }) + { + } + + Graph & m_graph; + Vertex const m_startVertex; + // Used for FindPath, FindPathBidirectional. + Vertex const m_finalVertex; + // Used for AdjustRoute. + std::vector const * const m_prevRoute; + my::Cancellable const m_cancellable; + OnVisitedVertexCallback const m_onVisitedVertexCallback; + CheckLengthCallback const m_checkLengthCallback; + }; class Context final { public: @@ -131,13 +157,16 @@ public: void PropagateWave(Graph & graph, Vertex const & startVertex, VisitVertex && visitVertex, Context & context) const; - Result FindPath(Params & params, RoutingResult & result) const; + template + Result FindPath(P & params, RoutingResult & result) const; - Result FindPathBidirectional(Params & params, RoutingResult & result) const; + template + Result FindPathBidirectional(P & params, RoutingResult & result) const; // Adjust route to the previous one. // Expects |params.m_checkLengthCallback| to check wave propagation limit. - typename AStarAlgorithm::Result AdjustRoute(Params & params, + template + typename AStarAlgorithm::Result AdjustRoute(P & params, RoutingResult & result) const; private: @@ -339,8 +368,9 @@ void AStarAlgorithm::PropagateWave(Graph & graph, Vertex const & startVer // http://www.cs.princeton.edu/courses/archive/spr06/cos423/Handouts/EPP%20shortest%20path%20algorithms.pdf template +template typename AStarAlgorithm::Result AStarAlgorithm::FindPath( - Params & params, RoutingResult & result) const + P & params, RoutingResult & result) const { result.Clear(); @@ -414,8 +444,9 @@ typename AStarAlgorithm::Result AStarAlgorithm::FindPath( } template +template typename AStarAlgorithm::Result AStarAlgorithm::FindPathBidirectional( - Params & params, RoutingResult & result) const + P & params, RoutingResult & result) const { auto & graph = params.m_graph; auto const & finalVertex = params.m_finalVertex; @@ -555,8 +586,9 @@ typename AStarAlgorithm::Result AStarAlgorithm::FindPathBidirectio } template +template typename AStarAlgorithm::Result AStarAlgorithm::AdjustRoute( - Params & params, RoutingResult & result) const + P & params, RoutingResult & result) const { CHECK(params.m_prevRoute, ()); auto & graph = params.m_graph; diff --git a/routing/routing_tests/astar_algorithm_test.cpp b/routing/routing_tests/astar_algorithm_test.cpp index 77258f4052..83b2d709f3 100644 --- a/routing/routing_tests/astar_algorithm_test.cpp +++ b/routing/routing_tests/astar_algorithm_test.cpp @@ -66,10 +66,8 @@ void TestAStar(UndirectedGraph & graph, vector const & expectedRoute, { TAlgorithm algo; - my::Cancellable cancellable; - TAlgorithm::Params params(graph, 0u /* startVertex */, 4u /* finishVertex */, - nullptr /* prevRoute */, cancellable /* cancellable */, - {} /* onVisitedVerteCallback */, {} /* checkLengthCallback */); + TAlgorithm::ParamsForTests params(graph, 0u /* startVertex */, 4u /* finishVertex */, + nullptr /* prevRoute */, {} /* checkLengthCallback */); RoutingResult actualRoute; TEST_EQUAL(TAlgorithm::Result::OK, algo.FindPath(params, actualRoute), ()); @@ -110,11 +108,9 @@ UNIT_TEST(AStarAlgorithm_CheckLength) graph.AddEdge(3, 4, 3); TAlgorithm algo; - my::Cancellable cancellable; - TAlgorithm::Params params(graph, 0u /* startVertex */, 4u /* finishVertex */, - nullptr /* prevRoute */, cancellable /* cancellable */, - {} /* onVisitedVerteCallback */, - [](double weight) { return weight < 23; }); + TAlgorithm::ParamsForTests params(graph, 0u /* startVertex */, 4u /* finishVertex */, + nullptr /* prevRoute */, + [](double weight) { return weight < 23; }); RoutingResult routingResult; TAlgorithm::Result result = algo.FindPath(params, routingResult); // Best route weight is 23 so we expect to find no route with restriction |weight < 23|. @@ -141,10 +137,8 @@ UNIT_TEST(AdjustRoute) vector const prevRoute = {{0, 0}, {1, 1}, {2, 1}, {3, 1}, {4, 1}, {5, 1}}; TAlgorithm algo; - my::Cancellable cancellable; - TAlgorithm::Params params(graph, 6 /* startVertex */, {} /* finishVertex */, &prevRoute, - cancellable /* cancellable */, {} /* onVisitedVerteCallback */, - [](double weight) { return weight <= 1.0; }); + TAlgorithm::ParamsForTests params(graph, 6 /* startVertex */, {} /* finishVertex */, &prevRoute, + [](double weight) { return weight <= 1.0; }); RoutingResult result; auto const code = algo.AdjustRoute(params, result); @@ -165,10 +159,8 @@ UNIT_TEST(AdjustRouteNoPath) vector const prevRoute = {{0, 0}, {1, 1}, {2, 1}, {3, 1}, {4, 1}, {5, 1}}; TAlgorithm algo; - my::Cancellable cancellable; - TAlgorithm::Params params(graph, 6 /* startVertex */, {} /* finishVertex */, &prevRoute, - cancellable /* cancellable */, {} /* onVisitedVerteCallback */, - [](double weight) { return weight <= 1.0; }); + TAlgorithm::ParamsForTests params(graph, 6 /* startVertex */, {} /* finishVertex */, &prevRoute, + [](double weight) { return weight <= 1.0; }); RoutingResult result; auto const code = algo.AdjustRoute(params, result); @@ -189,10 +181,8 @@ UNIT_TEST(AdjustRouteOutOfLimit) vector const prevRoute = {{0, 0}, {1, 1}, {2, 1}, {3, 1}, {4, 1}, {5, 1}}; TAlgorithm algo; - my::Cancellable cancellable; - TAlgorithm::Params params(graph, 6 /* startVertex */, {} /* finishVertex */, &prevRoute, - cancellable /* cancellable */, {} /* onVisitedVerteCallback */, - [](double weight) { return weight <= 1.0; }); + TAlgorithm::ParamsForTests params(graph, 6 /* startVertex */, {} /* finishVertex */, &prevRoute, + [](double weight) { return weight <= 1.0; }); RoutingResult result; auto const code = algo.AdjustRoute(params, result); diff --git a/routing/routing_tests/index_graph_tools.cpp b/routing/routing_tests/index_graph_tools.cpp index b51f46a698..d1481d24a1 100644 --- a/routing/routing_tests/index_graph_tools.cpp +++ b/routing/routing_tests/index_graph_tools.cpp @@ -172,11 +172,9 @@ bool TestIndexGraphTopology::FindPath(Vertex start, Vertex finish, double & path AStarAlgorithm algorithm; - my::Cancellable cancellable; - AStarAlgorithm::Params params(*worldGraph, startSegment, finishSegment, - nullptr /* prevRoute */, cancellable /* cancellable */, - {} /* onVisitedVertexCallback */, - {} /* checkLengthCallback */); + AStarAlgorithm::ParamsForTests params(*worldGraph, startSegment, finishSegment, + nullptr /* prevRoute */, + {} /* checkLengthCallback */); RoutingResult routingResult; auto const resultCode = algorithm.FindPathBidirectional(params, routingResult); @@ -366,10 +364,8 @@ AStarAlgorithm::Result CalculateRoute(IndexGraphStarter & sta AStarAlgorithm algorithm; RoutingResult routingResult; - my::Cancellable cancellable; - AStarAlgorithm::Params params( + AStarAlgorithm::ParamsForTests params( starter, starter.GetStartSegment(), starter.GetFinishSegment(), nullptr /* prevRoute */, - cancellable /* cancellable */, {} /* onVisitedVertexCallback */, [&](RouteWeight const & weight) { return starter.CheckLength(weight); }); auto const resultCode = algorithm.FindPathBidirectional(params, routingResult);