forked from GUDHI/gudhi-devel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'GUDHI:master' into persistence_matrix
- Loading branch information
Showing
56 changed files
with
551 additions
and
276 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
src/Alpha_complex/test/Alpha_complex_dim3_Epeck_dynamic_unit_test.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/* This file is part of the Gudhi Library - https://gudhi.inria.fr/ - which is released under MIT. | ||
* See file LICENSE or go to https://gudhi.inria.fr/licensing/ for full license details. | ||
* Author(s): Vincent Rouvreau | ||
* | ||
* Copyright (C) 2023 Inria | ||
* | ||
* Modification(s): | ||
* - YYYY/MM Author: Description of the modification | ||
*/ | ||
|
||
#define BOOST_TEST_DYN_LINK | ||
#define BOOST_TEST_MODULE "alpha_complex_dim3_exact_kernel_dynamic" | ||
#include <boost/test/unit_test.hpp> | ||
|
||
#include <CGAL/Epeck_d.h> | ||
|
||
#include "Alpha_complex_dim3_unit_test.h" | ||
|
||
// Use dynamic_dimension_tag for the user to be able to set dimension | ||
typedef CGAL::Epeck_d< CGAL::Dynamic_dimension_tag > Exact_kernel_d; | ||
|
||
BOOST_AUTO_TEST_CASE(Alpha_complex_from_OFF_file_exact_kernel_dynamic_dimension) { | ||
test_alpha_complex_from_OFF_file<Exact_kernel_d>(); | ||
} | ||
|
||
BOOST_AUTO_TEST_CASE(Alpha_complex_from_empty_points_exact_kernel_dynamic_dimension) { | ||
test_alpha_complex_from_empty_points<Exact_kernel_d>(); | ||
} |
28 changes: 28 additions & 0 deletions
28
src/Alpha_complex/test/Alpha_complex_dim3_Epeck_static_unit_test.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/* This file is part of the Gudhi Library - https://gudhi.inria.fr/ - which is released under MIT. | ||
* See file LICENSE or go to https://gudhi.inria.fr/licensing/ for full license details. | ||
* Author(s): Vincent Rouvreau | ||
* | ||
* Copyright (C) 2023 Inria | ||
* | ||
* Modification(s): | ||
* - YYYY/MM Author: Description of the modification | ||
*/ | ||
|
||
#define BOOST_TEST_DYN_LINK | ||
#define BOOST_TEST_MODULE "alpha_complex_dim3_exact_kernel_static" | ||
#include <boost/test/unit_test.hpp> | ||
|
||
#include <CGAL/Epeck_d.h> | ||
|
||
#include "Alpha_complex_dim3_unit_test.h" | ||
|
||
// Use static dimension_tag for the user not to be able to set dimension | ||
typedef CGAL::Epeck_d< CGAL::Dimension_tag<3> > Exact_kernel_s; | ||
|
||
BOOST_AUTO_TEST_CASE(Alpha_complex_from_OFF_file_exact_kernel_static_dimension) { | ||
test_alpha_complex_from_OFF_file<Exact_kernel_s>(); | ||
} | ||
|
||
BOOST_AUTO_TEST_CASE(Alpha_complex_from_empty_points_exact_kernel_static_dimension) { | ||
test_alpha_complex_from_empty_points<Exact_kernel_s>(); | ||
} |
28 changes: 28 additions & 0 deletions
28
src/Alpha_complex/test/Alpha_complex_dim3_Epick_dynamic_unit_test.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/* This file is part of the Gudhi Library - https://gudhi.inria.fr/ - which is released under MIT. | ||
* See file LICENSE or go to https://gudhi.inria.fr/licensing/ for full license details. | ||
* Author(s): Vincent Rouvreau | ||
* | ||
* Copyright (C) 2023 Inria | ||
* | ||
* Modification(s): | ||
* - YYYY/MM Author: Description of the modification | ||
*/ | ||
|
||
#define BOOST_TEST_DYN_LINK | ||
#define BOOST_TEST_MODULE "alpha_complex_dim3_inexact_kernel_dynamic" | ||
#include <boost/test/unit_test.hpp> | ||
|
||
#include <CGAL/Epick_d.h> | ||
|
||
#include "Alpha_complex_dim3_unit_test.h" | ||
|
||
// Use dynamic_dimension_tag for the user to be able to set dimension | ||
typedef CGAL::Epick_d< CGAL::Dynamic_dimension_tag > Inexact_kernel_d; | ||
|
||
BOOST_AUTO_TEST_CASE(Alpha_complex_from_OFF_file_inexact_kernel_dynamic_dimension) { | ||
test_alpha_complex_from_OFF_file<Inexact_kernel_d>(); | ||
} | ||
|
||
BOOST_AUTO_TEST_CASE(Alpha_complex_from_empty_points_inexact_kernel_dynamic_dimension) { | ||
test_alpha_complex_from_empty_points<Inexact_kernel_d>(); | ||
} |
28 changes: 28 additions & 0 deletions
28
src/Alpha_complex/test/Alpha_complex_dim3_Epick_static_unit_test.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/* This file is part of the Gudhi Library - https://gudhi.inria.fr/ - which is released under MIT. | ||
* See file LICENSE or go to https://gudhi.inria.fr/licensing/ for full license details. | ||
* Author(s): Vincent Rouvreau | ||
* | ||
* Copyright (C) 2023 Inria | ||
* | ||
* Modification(s): | ||
* - YYYY/MM Author: Description of the modification | ||
*/ | ||
|
||
#define BOOST_TEST_DYN_LINK | ||
#define BOOST_TEST_MODULE "alpha_complex_dim3_inexact_kernel_static" | ||
#include <boost/test/unit_test.hpp> | ||
|
||
#include <CGAL/Epick_d.h> | ||
|
||
#include "Alpha_complex_dim3_unit_test.h" | ||
|
||
// Use static dimension_tag for the user not to be able to set dimension | ||
typedef CGAL::Epick_d< CGAL::Dimension_tag<3> > Inexact_kernel_s; | ||
|
||
BOOST_AUTO_TEST_CASE(Alpha_complex_from_OFF_file_inexact_kernel_static_dimension) { | ||
test_alpha_complex_from_OFF_file<Inexact_kernel_s>(); | ||
} | ||
|
||
BOOST_AUTO_TEST_CASE(Alpha_complex_from_empty_points_inexact_kernel_static_dimension) { | ||
test_alpha_complex_from_empty_points<Inexact_kernel_s>(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.