[openlr] Small improvements.

This commit is contained in:
Yuri Gorshenin 2017-05-19 11:51:14 +03:00
parent 0b16a5ee56
commit 5a95eb8f55

View file

@ -7,6 +7,7 @@
#include "geometry/point2d.hpp"
#include "std/map.hpp"
#include "std/sstream.hpp"
#include "std/utility.hpp"
#include "std/vector.hpp"
@ -45,6 +46,19 @@ private:
bool m_bearingChecked = false;
};
friend string DebugPrint(Vertex const & u)
{
ostringstream os;
os << "Vertex [ ";
os << "junction: " << DebugPrint(u.m_junction) << ", ";
os << "stageStart: " << DebugPrint(u.m_stageStart) << ", ";
os << "stageStartDistance: " << u.m_stageStartDistance << ", ";
os << "stage: " << u.m_stage << ", ";
os << "bearingChecked: " << u.m_bearingChecked;
os << " ]";
return os.str();
}
struct Edge final
{
Edge() = default;
@ -65,6 +79,18 @@ private:
bool m_isSpecial = false;
};
friend string DebugPrint(Edge const & edge)
{
ostringstream os;
os << "Edge [ ";
os << "u: " << DebugPrint(edge.m_u) << ", ";
os << "v: " << DebugPrint(edge.m_v) << ", ";
os << "raw: " << DebugPrint(edge.m_raw) << ", ";
os << "isSpecial: " << edge.m_isSpecial;
os << " ]";
return os.str();
}
using Links = map<Vertex, pair<Vertex, Edge>>;
using RoadGraphEdgesGetter = void (routing::IRoadGraph::*)(