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

Method ForStagePrefix

tools/openlr/router.cpp:616–622  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

614
615template <typename It, typename Fn>
616void Router::ForStagePrefix(It b, It e, size_t stage, Fn && fn)
617{
618 while (b != e && b->m_raw.IsFake() && b->m_u.m_stage == stage && b->m_v.m_stage == stage)
619 ++b;
620 if (b != e && !b->m_raw.IsFake())
621 fn(b);
622}
623
624bool Router::ReconstructPath(std::vector<Edge> & edges, Path & path)
625{

Callers

nothing calls this directly

Calls 1

IsFakeMethod · 0.45

Tested by

no test coverage detected