summaryrefslogtreecommitdiff
path: root/src/phat.cpp
diff options
context:
space:
mode:
authormkerber <kerber@tugraz.at>2020-08-24 11:14:04 +0000
committermkerber <kerber@tugraz.at>2020-08-24 11:14:04 +0000
commit5f228cd80d03250d2fdf023d6ee81a3e82f23bc2 (patch)
treeba657161a47e7f6b37d2ed6c2560d2c54260b54a /src/phat.cpp
parent46116abeb6cab4893ac774e85efed5e3b87d5485 (diff)
parente9800d103fcdd19f0417e89781761f7f85d8ec9b (diff)
Merged in column_refactoring (pull request #4)
Column types are separated, and the matrix representation is more general in its container type
Diffstat (limited to 'src/phat.cpp')
-rw-r--r--src/phat.cpp11
1 files changed, 2 insertions, 9 deletions
diff --git a/src/phat.cpp b/src/phat.cpp
index 3770cf3..46f780c 100644
--- a/src/phat.cpp
+++ b/src/phat.cpp
@@ -17,15 +17,8 @@
along with PHAT. If not, see <http://www.gnu.org/licenses/>. */
#include <phat/compute_persistence_pairs.h>
-
-#include <phat/representations/vector_vector.h>
-#include <phat/representations/vector_heap.h>
-#include <phat/representations/vector_set.h>
-#include <phat/representations/vector_list.h>
-#include <phat/representations/sparse_pivot_column.h>
-#include <phat/representations/heap_pivot_column.h>
-#include <phat/representations/full_pivot_column.h>
-#include <phat/representations/bit_tree_pivot_column.h>
+#include <phat/boundary_matrix.h>
+#include <phat/representations/default_representations.h>
#include <phat/algorithms/twist_reduction.h>
#include <phat/algorithms/standard_reduction.h>