summaryrefslogtreecommitdiff
path: root/src/Witness_complex/include
diff options
context:
space:
mode:
authorskachano <skachano@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-01-30 10:29:32 +0000
committerskachano <skachano@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-01-30 10:29:32 +0000
commit3ec8a40aaf7e34116e0d4f422994d5aee109c2b3 (patch)
tree1031c4a624ab8e216ad1361168f12d1f4e580293 /src/Witness_complex/include
parent0629c55fc91ab128cca77c977106d8dbb0148e10 (diff)
The new class design compiles.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/relaxed-witness@2023 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 8243073046081f51ae6725aa3d7dc921dea450e1
Diffstat (limited to 'src/Witness_complex/include')
-rw-r--r--src/Witness_complex/include/gudhi/Euclidean_strong_witness_complex.h120
-rw-r--r--src/Witness_complex/include/gudhi/Euclidean_witness_complex.h151
-rw-r--r--src/Witness_complex/include/gudhi/Strong_witness_complex.h7
-rw-r--r--src/Witness_complex/include/gudhi/Witness_complex.h6
4 files changed, 32 insertions, 252 deletions
diff --git a/src/Witness_complex/include/gudhi/Euclidean_strong_witness_complex.h b/src/Witness_complex/include/gudhi/Euclidean_strong_witness_complex.h
index 38fa5c22..a5947219 100644
--- a/src/Witness_complex/include/gudhi/Euclidean_strong_witness_complex.h
+++ b/src/Witness_complex/include/gudhi/Euclidean_strong_witness_complex.h
@@ -28,6 +28,7 @@
#include <list>
#include <limits>
+#include <gudhi/Strong_witness_complex.h>
#include <gudhi/Active_witness/Active_witness.h>
#include <gudhi/Kd_tree_search.h>
@@ -45,33 +46,23 @@ namespace witness_complex {
* href="http://doc.cgal.org/latest/Kernel_d/classCGAL_1_1Epick__d.html">CGAL::Epick_d</a> class.
*/
template< class Kernel_ >
-class Euclidean_strong_witness_complex {
+class Euclidean_strong_witness_complex : public Strong_witness_complex<std::vector<typename Gudhi::spatial_searching::Kd_tree_search<Kernel_, std::vector<typename Kernel_::Point_d>>::INS_range>> {
private:
typedef Kernel_ K;
typedef typename K::Point_d Point_d;
- typedef typename K::FT FT;
typedef std::vector<Point_d> Point_range;
typedef Gudhi::spatial_searching::Kd_tree_search<Kernel_, Point_range> Kd_tree;
typedef typename Kd_tree::INS_range Nearest_landmark_range;
typedef typename std::vector<Nearest_landmark_range> Nearest_landmark_table;
- typedef typename Nearest_landmark_range::iterator Nearest_landmark_row_iterator;
-
- typedef FT Filtration_value;
-
- typedef std::size_t Witness_id;
typedef typename Nearest_landmark_range::Point_with_transformed_distance Id_distance_pair;
typedef typename Id_distance_pair::first_type Landmark_id;
- typedef Active_witness<Id_distance_pair, Nearest_landmark_range> ActiveWitness;
- typedef std::list< ActiveWitness > ActiveWitnessList;
- typedef std::vector< Landmark_id > typeVectorVertex;
- typedef std::pair< typeVectorVertex, Filtration_value> typeSimplex;
-
typedef Landmark_id Vertex_handle;
private:
- Point_range witnesses_, landmarks_;
+ Point_range landmarks_;
Kd_tree landmark_tree_;
+ using Strong_witness_complex<Nearest_landmark_table>::nearest_landmark_table_;
public:
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
@@ -89,9 +80,11 @@ private:
template< typename LandmarkRange,
typename WitnessRange >
Euclidean_strong_witness_complex(const LandmarkRange & landmarks,
- const WitnessRange & witnesses)
- : witnesses_(witnesses), landmarks_(landmarks), landmark_tree_(landmarks_)
- {
+ const WitnessRange & witnesses)
+ : landmarks_(landmarks), landmark_tree_(landmarks_)
+ {
+ for (auto w: witnesses)
+ nearest_landmark_table_.push_back(landmark_tree_.query_incremental_nearest_neighbors(w));
}
@@ -103,101 +96,6 @@ private:
return landmarks_[vertex];
}
- /** \brief Outputs the strong witness complex of relaxation 'max_alpha_square'
- * in a simplicial complex data structure.
- * \details The function returns true if the construction is successful and false otherwise.
- * @param[out] complex Simplicial complex data structure, which is a model of
- * SimplicialComplexForWitness concept.
- * @param[in] max_alpha_square Maximal squared relaxation parameter.
- * @param[in] limit_dimension Represents the maximal dimension of the simplicial complex
- * (default value = no limit).
- */
- template < typename SimplicialComplexForWitness >
- bool create_complex(SimplicialComplexForWitness& complex,
- FT max_alpha_square,
- Landmark_id limit_dimension = std::numeric_limits<Landmark_id>::max()-1)
- {
- Landmark_id complex_dim = 0;
- if (complex.num_vertices() > 0) {
- std::cerr << "Euclidean strong witness complex cannot create complex - complex is not empty.\n";
- return false;
- }
- if (max_alpha_square < 0) {
- std::cerr << "Euclidean strong witness complex cannot create complex - squared relaxation parameter must be non-negative.\n";
- return false;
- }
- if (limit_dimension < 0) {
- std::cerr << "Euclidean strong witness complex cannot create complex - limit dimension must be non-negative.\n";
- return false;
- }
- for (auto w: witnesses_) {
- ActiveWitness aw(landmark_tree_.query_incremental_nearest_neighbors(w));
- typeVectorVertex simplex;
- typename ActiveWitness::iterator aw_it = aw.begin();
- float lim_dist2 = aw.begin()->second + max_alpha_square;
- while ((Landmark_id)simplex.size() < limit_dimension + 1 && aw_it != aw.end() && aw_it->second < lim_dist2) {
- simplex.push_back(aw_it->first);
- complex.insert_simplex_and_subfaces(simplex, aw_it->second - aw.begin()->second);
- aw_it++;
- }
- // continue inserting limD-faces of the following simplices
- typeVectorVertex& vertices = simplex; //'simplex' now will be called vertices
- while (aw_it != aw.end() && aw_it->second < lim_dist2) {
- typeVectorVertex facet = {};
- add_all_faces_of_dimension(limit_dimension, vertices, vertices.begin(), aw_it, aw_it->second - aw.begin()->second, facet, complex);
- vertices.push_back(aw_it->first);
- aw_it++;
- }
- if ((Landmark_id)simplex.size() - 1 > complex_dim)
- complex_dim = simplex.size() - 1;
- }
- complex.set_dimension(complex_dim);
- return true;
- }
-
-private:
-
- /* \brief Adds recursively all the faces of a certain dimension dim-1 witnessed by the same witness.
- * Iterator is needed to know until how far we can take landmarks to form simplexes.
- * simplex is the prefix of the simplexes to insert.
- * The landmark pointed by aw_it is added to all formed simplices.
- */
- template < typename SimplicialComplexForWitness >
- void add_all_faces_of_dimension(Landmark_id dim,
- typeVectorVertex& vertices,
- typename typeVectorVertex::iterator curr_it,
- typename ActiveWitness::iterator aw_it,
- FT filtration_value,
- typeVectorVertex& simplex,
- SimplicialComplexForWitness& sc) const
- {
- if (dim > 0)
- while (curr_it != vertices.end()) {
- simplex.push_back(*curr_it);
- typename typeVectorVertex::iterator next_it = ++curr_it;
- add_all_faces_of_dimension(dim-1,
- vertices,
- next_it,
- aw_it,
- filtration_value,
- simplex,
- sc);
- simplex.pop_back();
- add_all_faces_of_dimension(dim,
- vertices,
- next_it,
- aw_it,
- filtration_value,
- simplex,
- sc);
- }
- else if (dim == 0) {
- simplex.push_back(aw_it->first);
- sc.insert_simplex_and_subfaces(simplex, filtration_value);
- simplex.pop_back();
- }
- }
-
//@}
};
diff --git a/src/Witness_complex/include/gudhi/Euclidean_witness_complex.h b/src/Witness_complex/include/gudhi/Euclidean_witness_complex.h
index 7045dc02..9845808e 100644
--- a/src/Witness_complex/include/gudhi/Euclidean_witness_complex.h
+++ b/src/Witness_complex/include/gudhi/Euclidean_witness_complex.h
@@ -23,6 +23,7 @@
#ifndef EUCLIDEAN_WITNESS_COMPLEX_H_
#define EUCLIDEAN_WITNESS_COMPLEX_H_
+#include <gudhi/Witness_complex.h>
#include <gudhi/Active_witness/Active_witness.h>
#include <gudhi/Kd_tree_search.h>
#include <gudhi/Witness_complex/all_faces_in.h>
@@ -44,34 +45,27 @@ namespace witness_complex {
*
* \tparam Kernel_ requires a <a target="_blank"
* href="http://doc.cgal.org/latest/Kernel_d/classCGAL_1_1Epick__d.html">CGAL::Epick_d</a> class.
-*/
+ */
template< class Kernel_ >
-class Euclidean_witness_complex {
+class Euclidean_witness_complex : public Witness_complex<std::vector<typename Gudhi::spatial_searching::Kd_tree_search<Kernel_, std::vector<typename Kernel_::Point_d>>::INS_range>> {
private:
typedef Kernel_ K;
typedef typename K::Point_d Point_d;
- typedef typename K::FT FT;
typedef std::vector<Point_d> Point_range;
typedef Gudhi::spatial_searching::Kd_tree_search<Kernel_, Point_range> Kd_tree;
typedef typename Kd_tree::INS_range Nearest_landmark_range;
+ typedef typename std::vector<Nearest_landmark_range> Nearest_landmark_table;
- typedef FT Filtration_value;
-
-
- typedef std::size_t Witness_id;
typedef typename Nearest_landmark_range::Point_with_transformed_distance Id_distance_pair;
typedef typename Id_distance_pair::first_type Landmark_id;
- typedef Active_witness<Id_distance_pair, Nearest_landmark_range> ActiveWitness;
- typedef std::list< ActiveWitness > ActiveWitnessList;
- typedef std::vector< Landmark_id > typeVectorVertex;
-
typedef Landmark_id Vertex_handle;
private:
- Point_range witnesses_, landmarks_;
+ Point_range landmarks_;
Kd_tree landmark_tree_;
-
- public:
+ using Witness_complex<Nearest_landmark_table>::nearest_landmark_table_;
+
+public:
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/* @name Constructor
*/
@@ -88,8 +82,10 @@ private:
typename WitnessRange >
Euclidean_witness_complex(const LandmarkRange & landmarks,
const WitnessRange & witnesses)
- : witnesses_(witnesses), landmarks_(landmarks), landmark_tree_(landmarks_)
- {
+ : landmarks_(landmarks), landmark_tree_(landmarks)
+ {
+ for (auto w: witnesses)
+ nearest_landmark_table_.push_back(landmark_tree_.query_incremental_nearest_neighbors(w));
}
/** \brief Returns the point corresponding to the given vertex.
@@ -99,131 +95,8 @@ private:
{
return landmarks_[vertex];
}
-
- /** \brief Outputs the (weak) witness complex of relaxation 'max_alpha_square'
- * in a simplicial complex data structure.
- * \details The function returns true if the construction is successful and false otherwise.
- * @param[out] complex Simplicial complex data structure compatible which is a model of
- * SimplicialComplexForWitness concept.
- * @param[in] max_alpha_square Maximal squared relaxation parameter.
- * @param[in] limit_dimension Represents the maximal dimension of the simplicial complex
- * (default value = no limit).
- */
- template < typename SimplicialComplexForWitness >
- bool create_complex(SimplicialComplexForWitness& complex,
- FT max_alpha_square,
- Landmark_id limit_dimension = std::numeric_limits<Landmark_id>::max())
- {
- if (complex.num_vertices() > 0) {
- std::cerr << "Euclidean witness complex cannot create complex - complex is not empty.\n";
- return false;
- }
- if (max_alpha_square < 0) {
- std::cerr << "Euclidean witness complex cannot create complex - squared relaxation parameter must be non-negative.\n";
- return false;
- }
- if (limit_dimension < 0) {
- std::cerr << "Euclidean witness complex cannot create complex - limit dimension must be non-negative.\n";
- return false;
- }
- typeVectorVertex vv;
- ActiveWitnessList active_witnesses;
- Landmark_id k = 0; /* current dimension in iterative construction */
- for (auto w: witnesses_)
- active_witnesses.push_back(ActiveWitness(landmark_tree_.query_incremental_nearest_neighbors(w)));
- ActiveWitness aw_copy(active_witnesses.front());
- while (!active_witnesses.empty() && k <= limit_dimension ) {
- typename ActiveWitnessList::iterator aw_it = active_witnesses.begin();
- std::vector<Landmark_id> simplex;
- simplex.reserve(k+1);
- while (aw_it != active_witnesses.end()) {
- bool ok = add_all_faces_of_dimension(k,
- max_alpha_square,
- std::numeric_limits<double>::infinity(),
- aw_it->begin(),
- simplex,
- complex,
- aw_it->end());
- assert(simplex.empty());
- if (!ok)
- active_witnesses.erase(aw_it++); //First increase the iterator and then erase the previous element
- else
- aw_it++;
- }
- k++;
- }
- complex.set_dimension(k-1);
- return true;
- }
//@}
-
- private:
- /* \brief Adds recursively all the faces of a certain dimension dim witnessed by the same witness.
- * Iterator is needed to know until how far we can take landmarks to form simplexes.
- * simplex is the prefix of the simplexes to insert.
- * The output value indicates if the witness rests active or not.
- */
- template < typename SimplicialComplexForWitness >
- bool add_all_faces_of_dimension(int dim,
- double alpha2,
- double norelax_dist2,
- typename ActiveWitness::iterator curr_l,
- std::vector<Landmark_id>& simplex,
- SimplicialComplexForWitness& sc,
- typename ActiveWitness::iterator end) const
- {
- if (curr_l == end)
- return false;
- bool will_be_active = false;
- typename ActiveWitness::iterator l_it = curr_l;
- if (dim > 0)
- for (; l_it->second - alpha2 <= norelax_dist2 && l_it != end; ++l_it) {
- simplex.push_back(l_it->first);
- if (sc.find(simplex) != sc.null_simplex()) {
- typename ActiveWitness::iterator next_it = l_it;
- will_be_active = add_all_faces_of_dimension(dim-1,
- alpha2,
- norelax_dist2,
- ++next_it,
- simplex,
- sc,
- end) || will_be_active;
- }
- assert(!simplex.empty());
- simplex.pop_back();
- // If norelax_dist is infinity, change to first omitted distance
- if (l_it->second <= norelax_dist2)
- norelax_dist2 = l_it->second;
- typename ActiveWitness::iterator next_it = l_it;
- will_be_active = add_all_faces_of_dimension(dim,
- alpha2,
- norelax_dist2,
- ++next_it,
- simplex,
- sc,
- end) || will_be_active;
- }
- else if (dim == 0)
- for (; l_it->second - alpha2 <= norelax_dist2 && l_it != end; ++l_it) {
- simplex.push_back(l_it->first);
- double filtration_value = 0;
- // if norelax_dist is infinite, relaxation is 0.
- if (l_it->second > norelax_dist2)
- filtration_value = l_it->second - norelax_dist2;
- if (all_faces_in(simplex, &filtration_value, sc)) {
- will_be_active = true;
- sc.insert_simplex(simplex, filtration_value);
- }
- assert(!simplex.empty());
- simplex.pop_back();
- // If norelax_dist is infinity, change to first omitted distance
- if (l_it->second < norelax_dist2)
- norelax_dist2 = l_it->second;
- }
- return will_be_active;
- }
-
};
} // namespace witness_complex
diff --git a/src/Witness_complex/include/gudhi/Strong_witness_complex.h b/src/Witness_complex/include/gudhi/Strong_witness_complex.h
index b2bf1b7d..f9d1d681 100644
--- a/src/Witness_complex/include/gudhi/Strong_witness_complex.h
+++ b/src/Witness_complex/include/gudhi/Strong_witness_complex.h
@@ -58,7 +58,7 @@ private:
typedef Landmark_id Vertex_handle;
- private:
+ protected:
Nearest_landmark_table_ nearest_landmark_table_;
public:
@@ -68,6 +68,11 @@ private:
//@{
+ Strong_witness_complex()
+ {
+ }
+
+
/**
* \brief Initializes member variables before constructing simplicial complex.
* \details Records nearest landmark table.
diff --git a/src/Witness_complex/include/gudhi/Witness_complex.h b/src/Witness_complex/include/gudhi/Witness_complex.h
index 52c638c5..33c6c5d2 100644
--- a/src/Witness_complex/include/gudhi/Witness_complex.h
+++ b/src/Witness_complex/include/gudhi/Witness_complex.h
@@ -59,7 +59,7 @@ private:
typedef Landmark_id Vertex_handle;
- private:
+ protected:
Nearest_landmark_table_ nearest_landmark_table_;
public:
@@ -69,6 +69,10 @@ private:
//@{
+ Witness_complex()
+ {
+ }
+
/**
* \brief Initializes member variables before constructing simplicial complex.
* \details Records nearest landmark table.