Lines Matching refs:tol
39 static void apply(Point const& point1, Point const& point2, T tol) in apply()
47 BOOST_CHECK_CLOSE(x1, x2, tol); in apply()
48 BOOST_CHECK_CLOSE(y1, y2, tol); in apply()
56 static void apply(Range const& range1, Range const& range2, T tol) in apply()
64 boost::begin(range2), tol); in apply()
68 static void apply(It first1, It last1, It first2, T tol) in apply()
71 Policy::apply(*first1, *first2, tol); in apply()
89 static void apply(Segment const& g1, Segment const& g2, T tol) in apply()
96 check_point::apply(p1, q1, tol); in apply()
97 check_point::apply(p2, q2, tol); in apply()
125 static void apply(Polygon const& g1, Polygon const& g2, T tol) in apply()
127 check_range<>::apply(bg::exterior_ring(g1), bg::exterior_ring(g2), tol); in apply()
128 check_range< check_range<> >::apply(bg::interior_rings(g1), bg::interior_rings(g2), tol); in apply()
146 inline void check_geometry(Geometry const& g1, Geometry const& g2, T tol) in check_geometry() argument
148 check_geometry_impl<Geometry>::apply(g1, g2, tol); in check_geometry()
152 inline void check_geometry(Geometry const& g1, std::string const& wkt2, T tol) in check_geometry() argument
156 check_geometry_impl<Geometry>::apply(g1, g2, tol); in check_geometry()