mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-19 21:13:35 +00:00
Format all C++ and Java code via clang-format
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
This commit is contained in:
@@ -10,17 +10,17 @@ namespace routing
|
||||
|
||||
#ifdef DEBUG
|
||||
// Leaps algorithm.
|
||||
void DebugRoutingState(Segment const & vertex, std::optional<Segment> const & parent,
|
||||
RouteWeight const & heuristic, RouteWeight const & distance)
|
||||
void DebugRoutingState(Segment const & vertex, std::optional<Segment> const & parent, RouteWeight const & heuristic,
|
||||
RouteWeight const & distance)
|
||||
{
|
||||
// 1. Dump current processing vertex.
|
||||
// std::cout << DebugPrint(vertex);
|
||||
// std::cout << std::setprecision(8) << "; H = " << heuristic << "; D = " << distance;
|
||||
// std::cout << DebugPrint(vertex);
|
||||
// std::cout << std::setprecision(8) << "; H = " << heuristic << "; D = " << distance;
|
||||
|
||||
// 2. Dump parent vertex.
|
||||
// std::cout << "; P = " << (parent ? DebugPrint(*parent) : std::string("NO"));
|
||||
// std::cout << "; P = " << (parent ? DebugPrint(*parent) : std::string("NO"));
|
||||
|
||||
// std::cout << std::endl;
|
||||
// std::cout << std::endl;
|
||||
}
|
||||
|
||||
// Joints algorithm.
|
||||
@@ -28,29 +28,29 @@ void DebugRoutingState(JointSegment const & vertex, std::optional<JointSegment>
|
||||
RouteWeight const & heuristic, RouteWeight const & distance)
|
||||
{
|
||||
// 1. Dump current processing vertex.
|
||||
// std::cout << DebugPrint(vertex);
|
||||
// std::cout << std::setprecision(8) << "; H = " << heuristic << "; D = " << distance;
|
||||
// std::cout << DebugPrint(vertex);
|
||||
// std::cout << std::setprecision(8) << "; H = " << heuristic << "; D = " << distance;
|
||||
|
||||
// 2. Dump parent vertex.
|
||||
// std::cout << "; P = " << (parent ? DebugPrint(*parent) : std::string("NO"));
|
||||
// std::cout << "; P = " << (parent ? DebugPrint(*parent) : std::string("NO"));
|
||||
|
||||
// std::cout << std::endl;
|
||||
// std::cout << std::endl;
|
||||
|
||||
// 3. Set breakpoint on a specific vertex.
|
||||
// if (vertex.GetMwmId() == 400 && vertex.GetFeatureId() == 2412 &&
|
||||
// vertex.GetEndSegmentId() == 0)
|
||||
// {
|
||||
// int noop = 0;
|
||||
// }
|
||||
// if (vertex.GetMwmId() == 400 && vertex.GetFeatureId() == 2412 &&
|
||||
// vertex.GetEndSegmentId() == 0)
|
||||
// {
|
||||
// int noop = 0;
|
||||
// }
|
||||
|
||||
// 4. Set breakpoint when MWM was changed.
|
||||
// if (parent)
|
||||
// {
|
||||
// auto const & p = *parent;
|
||||
// if (!p.IsFake() && !vertex.IsFake() && p.GetMwmId() != vertex.GetMwmId())
|
||||
// int noop = 0;
|
||||
// }
|
||||
// if (parent)
|
||||
// {
|
||||
// auto const & p = *parent;
|
||||
// if (!p.IsFake() && !vertex.IsFake() && p.GetMwmId() != vertex.GetMwmId())
|
||||
// int noop = 0;
|
||||
// }
|
||||
}
|
||||
#endif
|
||||
|
||||
} // namespace routing
|
||||
} // namespace routing
|
||||
|
||||
Reference in New Issue
Block a user