summaryrefslogtreecommitdiff
path: root/src/Witness_complex/test
diff options
context:
space:
mode:
authorskachano <skachano@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-02-02 14:49:56 +0000
committerskachano <skachano@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-02-02 14:49:56 +0000
commit7e667b71d937f83b82240afbf90b8cde7225eb8a (patch)
tree6e816ab5a2a9290a365fb9f52e2418d4c94d142c /src/Witness_complex/test
parentdb2c9248e50cd4eb91ec39802a2b2bce9565030d (diff)
landmark choice functions are now static
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/witness@994 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: f83d337feab944e2c823b8e127f1a8d612d0a1bd
Diffstat (limited to 'src/Witness_complex/test')
-rw-r--r--src/Witness_complex/test/witness_complex_points.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/Witness_complex/test/witness_complex_points.cpp b/src/Witness_complex/test/witness_complex_points.cpp
index 300b2ac5..cb1639e1 100644
--- a/src/Witness_complex/test/witness_complex_points.cpp
+++ b/src/Witness_complex/test/witness_complex_points.cpp
@@ -37,8 +37,6 @@ typedef std::vector<double> Point;
typedef std::vector< Vertex_handle > typeVectorVertex;
typedef Gudhi::Simplex_tree<> Simplex_tree;
typedef Gudhi::witness_complex::Witness_complex<Simplex_tree> WitnessComplex;
-typedef Gudhi::witness_complex::Landmark_choice_by_random_point Landmark_choice_by_random_point;
-typedef Gudhi::witness_complex::Landmark_choice_by_furthest_point Landmark_choice_by_furthest_point;
BOOST_AUTO_TEST_CASE(witness_complex_points) {
std::vector< typeVectorVertex > knn;
@@ -52,7 +50,7 @@ BOOST_AUTO_TEST_CASE(witness_complex_points) {
bool b_print_output = false;
// First test: random choice
Simplex_tree complex1;
- Landmark_choice_by_random_point lcrp(points, 100, knn);
+ Gudhi::witness_complex::landmark_choice_by_random_point(points, 100, knn);
assert(!knn.empty());
WitnessComplex witnessComplex1(knn, complex1, 100, 3);
BOOST_CHECK(witnessComplex1.is_witness_complex(knn, b_print_output));
@@ -60,7 +58,7 @@ BOOST_AUTO_TEST_CASE(witness_complex_points) {
// Second test: furthest choice
knn.clear();
Simplex_tree complex2;
- Landmark_choice_by_furthest_point lcfp(points, 100, knn);
+ Gudhi::witness_complex::landmark_choice_by_furthest_point(points, 100, knn);
WitnessComplex witnessComplex2(knn, complex2, 100, 3);
BOOST_CHECK(witnessComplex2.is_witness_complex(knn, b_print_output));
}