remove warnings

This commit is contained in:
Sébastien Loriot 2015-02-25 07:57:56 +01:00
parent ef2d934007
commit 1abea0f18e
2 changed files with 0 additions and 3 deletions

View File

@ -15,8 +15,6 @@ typedef K::Tetrahedron_3 Tetrahedron_3;
typedef std::vector<Point_3> Container; typedef std::vector<Point_3> Container;
typedef CGAL::Random_points_in_tetrahedron_3<Point_3> Point_generator; typedef CGAL::Random_points_in_tetrahedron_3<Point_3> Point_generator;
const double EPS = 1e-30;
template<class InputIterator> template<class InputIterator>
bool inside_or_close_to_tetrahedron(const Tetrahedron_3& tet,InputIterator begin, InputIterator end) { bool inside_or_close_to_tetrahedron(const Tetrahedron_3& tet,InputIterator begin, InputIterator end) {
while(begin!=end) { while(begin!=end) {

View File

@ -38,7 +38,6 @@ int main() {
Container point_set; Container point_set;
const int number_triangles = 10; const int number_triangles = 10;
const int number_points = 1000; const int number_points = 1000;
const double r = rand.get_double(0.2,0.8);
for(int i = 0; i < number_triangles; ++i) { for(int i = 0; i < number_triangles; ++i) {
Point_2 pts[3]; Point_2 pts[3];
for(int j = 0; j < 3; ++j) { for(int j = 0; j < 3; ++j) {