From da8b51eaec564d832df869e8da3fb0f40072bd5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mael=20Rouxel-Labb=C3=A9?= Date: Wed, 23 Mar 2022 16:54:37 +0100 Subject: [PATCH] Remove useless test + fix link --- Alpha_wrap_3/doc/Alpha_wrap_3/alpha_wrap_3.txt | 2 +- Alpha_wrap_3/test/Alpha_wrap_3/CMakeLists.txt | 1 - .../test/Alpha_wrap_3/test_AW3_traits.cpp | 18 ------------------ 3 files changed, 1 insertion(+), 20 deletions(-) delete mode 100644 Alpha_wrap_3/test/Alpha_wrap_3/test_AW3_traits.cpp diff --git a/Alpha_wrap_3/doc/Alpha_wrap_3/alpha_wrap_3.txt b/Alpha_wrap_3/doc/Alpha_wrap_3/alpha_wrap_3.txt index 9b878ff0043..1cafdeb1d6f 100644 --- a/Alpha_wrap_3/doc/Alpha_wrap_3/alpha_wrap_3.txt +++ b/Alpha_wrap_3/doc/Alpha_wrap_3/alpha_wrap_3.txt @@ -214,7 +214,7 @@ this function takes as input a polygon soup or a polygon mesh: `CGAL::alpha_wrap There is no prerequisite on the input connectivity so that it can take an arbitrary triangle soup, with islands, self-intersections, or overlaps, as well as combinatorial or geometrical degeneracies. -The underlying traits class must be a model of the `AlphaWrapTraits_3` concept. It should use +The underlying traits class must be a model of the `Kernel` concept. It should use a floating point number type as inexactness is inherent to the algorithm since there is no closed form description of new vertices on the offset surface. diff --git a/Alpha_wrap_3/test/Alpha_wrap_3/CMakeLists.txt b/Alpha_wrap_3/test/Alpha_wrap_3/CMakeLists.txt index 635095cadcb..19d98d053fe 100644 --- a/Alpha_wrap_3/test/Alpha_wrap_3/CMakeLists.txt +++ b/Alpha_wrap_3/test/Alpha_wrap_3/CMakeLists.txt @@ -12,4 +12,3 @@ create_single_source_cgal_program("test_AW3_cavity_initializations.cpp") create_single_source_cgal_program("test_AW3_manifoldness.cpp") create_single_source_cgal_program("test_AW3_multiple_calls.cpp") create_single_source_cgal_program("test_AW3_compilation.cpp") -create_single_source_cgal_program("test_AW3_traits.cpp") diff --git a/Alpha_wrap_3/test/Alpha_wrap_3/test_AW3_traits.cpp b/Alpha_wrap_3/test/Alpha_wrap_3/test_AW3_traits.cpp deleted file mode 100644 index 824e1f676d8..00000000000 --- a/Alpha_wrap_3/test/Alpha_wrap_3/test_AW3_traits.cpp +++ /dev/null @@ -1,18 +0,0 @@ -#include -#include - -#include -#include - -using namespace CGAL::Alpha_wraps_3::internal; - -using Kernel = CGAL::Exact_predicates_inexact_constructions_kernel; -using Point_3 = Kernel::Point_3; -using Vector_3 = Kernel::Vector_3; - -using Mesh = CGAL::Surface_mesh; - -int main(int argc, char** argv) -{ - -}