Skip to content
Snippets Groups Projects
Commit 91dd07d0 authored by Thomas Purcell's avatar Thomas Purcell
Browse files

Remove print lines

cause failure in tests
parent dfe34767
Branches
No related tags found
No related merge requests found
...@@ -59,18 +59,6 @@ void mpi_reduce_op::set_op(std::string project_type, double cross_cor_max, int n ...@@ -59,18 +59,6 @@ void mpi_reduce_op::set_op(std::string project_type, double cross_cor_max, int n
std::vector<node_sc_pair> mpi_reduce_op::select_top_feats(std::vector<node_sc_pair> in_vec_1, std::vector<node_sc_pair> in_vec_2) std::vector<node_sc_pair> mpi_reduce_op::select_top_feats(std::vector<node_sc_pair> in_vec_1, std::vector<node_sc_pair> in_vec_2)
{ {
for(int ff = 0; ff < in_vec_1.size(); ++ff)
{
std::cout << ff << '\t' << in_vec_1[ff]._feat->feat(0)->arr_ind() << '\t' << in_vec_1[ff]._feat->expr() << std::endl;
}
std::cout << std::endl;
for(int ff = 0; ff < in_vec_2.size(); ++ff)
{
std::cout << ff << '\t' << in_vec_2[ff]._feat->feat(0)->arr_ind() << '\t' << in_vec_2[ff]._feat->expr() << std::endl;
}
std::cout << std::endl;
// Set up an output vector // Set up an output vector
std::vector<node_sc_pair> out_vec; std::vector<node_sc_pair> out_vec;
out_vec.reserve(N_SIS_SELECT); out_vec.reserve(N_SIS_SELECT);
...@@ -92,11 +80,5 @@ std::vector<node_sc_pair> mpi_reduce_op::select_top_feats(std::vector<node_sc_pa ...@@ -92,11 +80,5 @@ std::vector<node_sc_pair> mpi_reduce_op::select_top_feats(std::vector<node_sc_pa
++ff; ++ff;
} }
for(int ff = 0; ff < out_vec.size(); ++ff)
{
std::cout << ff << '\t' << out_vec[ff]._feat->feat(0)->arr_ind() << '\t' << out_vec[ff]._feat->expr() << std::endl;
}
std::cout << std::endl;
return out_vec; return out_vec;
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment