| 9 | typedef m2::PointD P; |
| 10 | |
| 11 | class DoDump |
| 12 | { |
| 13 | size_t & m_count; |
| 14 | |
| 15 | public: |
| 16 | explicit DoDump(size_t & count) : m_count(count) { m_count = 0; } |
| 17 | void operator()(P const & p1, P const & p2, P const & p3) |
| 18 | { |
| 19 | ++m_count; |
| 20 | LOG(LINFO, (p1, p2, p3)); |
| 21 | } |
| 22 | }; |
| 23 | |
| 24 | size_t RunTest(std::list<std::vector<P>> const & l) |
| 25 | { |