summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjan.reininghaus <jan.reininghaus@8e3bb3c2-eed4-f18f-5264-0b6c94e6926d>2013-06-20 11:45:47 +0000
committerjan.reininghaus <jan.reininghaus@8e3bb3c2-eed4-f18f-5264-0b6c94e6926d>2013-06-20 11:45:47 +0000
commit744dcd4f989d63542fb2b34eb0da815008aced71 (patch)
tree9d9ac7c6ff12775831ae6bbcaac4d467d1cfe04d
parent5406b8bc87c7aa658ef71f572aa00a9d1682f8bd (diff)
bugfix for compute_persistence_pairs
git-svn-id: https://phat.googlecode.com/svn/trunk@133 8e3bb3c2-eed4-f18f-5264-0b6c94e6926d
-rw-r--r--include/phat/compute_persistence_pairs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/phat/compute_persistence_pairs.h b/include/phat/compute_persistence_pairs.h
index d3e61dd..3112abb 100644
--- a/include/phat/compute_persistence_pairs.h
+++ b/include/phat/compute_persistence_pairs.h
@@ -43,7 +43,7 @@ namespace phat {
void compute_persistence_pairs_dualized( persistence_pairs& pairs, boundary_matrix< Representation >& boundary_matrix ) {
dualize( boundary_matrix );
- compute_persistence_pairs( pairs, boundary_matrix );
+ compute_persistence_pairs< ReductionAlgorithm >( pairs, boundary_matrix );
dualize_persistence_pairs( pairs, boundary_matrix.get_num_cols() );
}