summaryrefslogtreecommitdiff
path: root/src/self_test.cpp
diff options
context:
space:
mode:
authorjan.reininghaus <jan.reininghaus@8e3bb3c2-eed4-f18f-5264-0b6c94e6926d>2013-12-17 10:32:49 +0000
committerjan.reininghaus <jan.reininghaus@8e3bb3c2-eed4-f18f-5264-0b6c94e6926d>2013-12-17 10:32:49 +0000
commit38ead7f8efac523d6fe0d78bb31474063d8ab5b2 (patch)
treea93b33ec11fcfbe6584afef79777fa324024a879 /src/self_test.cpp
parentd7d252f4ab9cfea4001b29f25982fd045524054c (diff)
rename block_spectral_sequence_reduction to spectral_sequence_reduction
git-svn-id: https://phat.googlecode.com/svn/trunk@149 8e3bb3c2-eed4-f18f-5264-0b6c94e6926d
Diffstat (limited to 'src/self_test.cpp')
-rw-r--r--src/self_test.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/self_test.cpp b/src/self_test.cpp
index 21bb3bc..b310eb5 100644
--- a/src/self_test.cpp
+++ b/src/self_test.cpp
@@ -144,10 +144,10 @@ int main( int argc, char** argv )
phat::boundary_matrix< BitTree > row_boundary_matrix = boundary_matrix;
phat::compute_persistence_pairs< phat::row_reduction >( row_pairs, row_boundary_matrix );
- std::cout << "Running Block spectral sequence - BitTree ..." << std::endl;
+ std::cout << "Running Spectral sequence - BitTree ..." << std::endl;
phat::persistence_pairs ss_pairs;
phat::boundary_matrix< BitTree > ss_boundary_matrix = boundary_matrix;
- phat::compute_persistence_pairs< phat::block_spectral_sequence_reduction >( ss_pairs, ss_boundary_matrix );
+ phat::compute_persistence_pairs< phat::spectral_sequence_reduction >( ss_pairs, ss_boundary_matrix );
if( twist_pairs != std_pairs ) {
std::cerr << "Error: twist and standard differ!" << std::endl;
@@ -162,11 +162,11 @@ int main( int argc, char** argv )
error = true;
}
if( row_pairs != ss_pairs ) {
- std::cerr << "Error: row and block spectral sequence differ!" << std::endl;
+ std::cerr << "Error: row and spectral sequence differ!" << std::endl;
error = true;
}
if( ss_pairs != twist_pairs ) {
- std::cerr << "Error: block spectral sequence and twist differ!" << std::endl;
+ std::cerr << "Error: spectral sequence and twist differ!" << std::endl;
error = true;
}