From 38ead7f8efac523d6fe0d78bb31474063d8ab5b2 Mon Sep 17 00:00:00 2001 From: "jan.reininghaus" Date: Tue, 17 Dec 2013 10:32:49 +0000 Subject: rename block_spectral_sequence_reduction to spectral_sequence_reduction git-svn-id: https://phat.googlecode.com/svn/trunk@149 8e3bb3c2-eed4-f18f-5264-0b6c94e6926d --- src/self_test.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/self_test.cpp') 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; } -- cgit v1.2.3