mirror of https://github.com/CGAL/cgal
29 lines
756 B
C++
29 lines
756 B
C++
// Copyright (c) 2003 INRIA Sophia-Antipolis (France).
|
|
// All rights reserved.
|
|
//
|
|
// This file is part of CGAL (www.cgal.org).
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial
|
|
//
|
|
// Author(s) : Naceur MESKINI.
|
|
|
|
#include <CGAL/_test_natural_neighbors_2.cpp>
|
|
|
|
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
|
|
|
|
#include <CGAL/Delaunay_triangulation_2.h>
|
|
|
|
#include <iostream>
|
|
|
|
typedef CGAL::Exact_predicates_inexact_constructions_kernel K;
|
|
typedef CGAL::Delaunay_triangulation_2<K> Dt;
|
|
|
|
int main()
|
|
{
|
|
std::cout << "Testing NN_neighbors_2 " << std::endl;
|
|
std::cout << " using Exact_predicates_inexact_constructions_kernel: " << std::endl;
|
|
_test_natural_neighbors_2( Dt() );
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|