summaryrefslogtreecommitdiff
path: root/src/cython/include/Alpha_complex_interface.h
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-11-25 16:00:19 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-11-25 16:00:19 +0000
commitaf146a2e48c16855355ac599cbc617250727d244 (patch)
treebab3117c6886f41ec9d2a1869bc70105ecdd63b3 /src/cython/include/Alpha_complex_interface.h
parentf843ef3f8e4ab4ce94a28ded6d8cafd37f2b2311 (diff)
Add of tangential complex doc
Separate simplex tree from alpha complex git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/ST_cythonize@1788 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 1cf4a35e0a099501eb1cb6b9809041dd1a1e2617
Diffstat (limited to 'src/cython/include/Alpha_complex_interface.h')
-rw-r--r--src/cython/include/Alpha_complex_interface.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/cython/include/Alpha_complex_interface.h b/src/cython/include/Alpha_complex_interface.h
index 13412994..07f5b5b4 100644
--- a/src/cython/include/Alpha_complex_interface.h
+++ b/src/cython/include/Alpha_complex_interface.h
@@ -28,6 +28,7 @@
#include <CGAL/Epick_d.h>
#include "Persistent_cohomology_interface.h"
+#include "Simplex_tree_interface.h"
#include <vector>
#include <utility> // std::pair
@@ -49,18 +50,14 @@ class Alpha_complex_interface {
typedef typename Simplex_tree<>::Simplex_key Simplex_key;
public:
- Alpha_complex_interface(std::vector<std::vector<double>>&points, double max_alpha_square)
+ Alpha_complex_interface(std::vector<std::vector<double>>&points)
: pcoh_(nullptr) {
alpha_complex_ = new Alpha_complex<Dynamic_kernel>(points);
- alpha_complex_->create_complex(simplex_tree_, max_alpha_square);
- simplex_tree_.initialize_filtration();
}
- Alpha_complex_interface(std::string off_file_name, double max_alpha_square, bool from_file = true)
+ Alpha_complex_interface(std::string off_file_name, bool from_file = true)
: pcoh_(nullptr) {
alpha_complex_ = new Alpha_complex<Dynamic_kernel>(off_file_name);
- alpha_complex_->create_complex(simplex_tree_, max_alpha_square);
- simplex_tree_.initialize_filtration();
}
bool find_simplex(const Simplex& vh) {
@@ -194,6 +191,11 @@ class Alpha_complex_interface {
return persistent_betti_numbers;
}
+ void create_simplex_tree(Simplex_tree_interface<>& simplex_tree, double max_alpha_square) {
+ alpha_complex_->create_complex(simplex_tree, max_alpha_square);
+ simplex_tree.initialize_filtration();
+ }
+
private:
Simplex_tree<> simplex_tree_;
Persistent_cohomology_interface<Simplex_tree<>>* pcoh_;
@@ -202,7 +204,6 @@ class Alpha_complex_interface {
} // namespace alpha_complex
-} // namespace Gudhi
+} // namespace Gudhi
#endif // ALPHA_COMPLEX_INTERFACE_H
-