| 39 | } |
| 40 | |
| 41 | bool EdgesContain(IndexGraph::SegmentEdgeListT const & edges, Segment const & segment) |
| 42 | { |
| 43 | for (auto const & edge : edges) |
| 44 | if (edge.GetTarget() == segment) |
| 45 | return true; |
| 46 | |
| 47 | return false; |
| 48 | } |
| 49 | } // namespace |
| 50 | |
| 51 | // TrackMatcher ------------------------------------------------------------------------------------ |
no test coverage detected