From 8afecf944f76e52fd0668eb106a717fe64e1341c Mon Sep 17 00:00:00 2001 From: "jan.reininghaus" Date: Fri, 3 May 2013 09:30:12 +0000 Subject: ignore list git-svn-id: https://phat.googlecode.com/svn/trunk@56 8e3bb3c2-eed4-f18f-5264-0b6c94e6926d --- addons/alpha_3.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'addons') diff --git a/addons/alpha_3.cpp b/addons/alpha_3.cpp index 7616e27..6df251c 100644 --- a/addons/alpha_3.cpp +++ b/addons/alpha_3.cpp @@ -176,7 +176,7 @@ int main(int argc, char** argv) std::string next_line; while( getline( is, next_line ) ) { if( next_line != "" && next_line[ 0 ] != '#' ) { - std::cerr << next_line; + //std::cerr << next_line; std::stringstream sstr(next_line); sstr >> p; lp.push_back(p); @@ -239,12 +239,14 @@ int main(int argc, char** argv) std::size_t filtration_index = 0; std::size_t filtration_size = circumradii.size(); + boundary_matrix.set_num_cols( filtration_size ); + Index curr_index = 0; for(std::vector::const_iterator it = circumradii.begin(); it != circumradii.end(); it++) { - if(filtration_index % 1000 == 0) { + if(filtration_index % 100000 == 0) { std::cerr << filtration_index << " of " << filtration_size << std::endl; } -- cgit v1.2.3