MCPcopy Create free account
hub / github.com/comaps/comaps / FindReal

Method FindReal

libs/routing/fake_graph.cpp:110–118  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

108}
109
110bool FakeGraph::FindReal(Segment const & fake, Segment & real) const
111{
112 auto const it = m_fakeToReal.find(fake);
113 if (it == m_fakeToReal.end())
114 return false;
115
116 real = it->second;
117 return true;
118}
119
120bool FakeGraph::FindSegment(FakeVertex const & vertex, Segment & segment) const
121{

Callers 7

GetEdgeListMethod · 0.45
ConvertToRealMethod · 0.45
GetRoutingOptionsMethod · 0.45
GetEdgesListMethod · 0.45
CalcSegmentWeightMethod · 0.45
GetHighwayCategoryMethod · 0.45
ConstructFakeGraphFunction · 0.45

Calls 2

findMethod · 0.45
endMethod · 0.45

Tested by 1

ConstructFakeGraphFunction · 0.36