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

Remove comment lines

Forgot some comment lines
parent 5ce16428
No related branches found
No related tags found
No related merge requests found
...@@ -445,7 +445,6 @@ void FeatureSpace::sis(std::vector<double>& prop) ...@@ -445,7 +445,6 @@ void FeatureSpace::sis(std::vector<double>& prop)
for(auto& feat : phi_selected) for(auto& feat : phi_selected)
_phi_selected.push_back(feat); _phi_selected.push_back(feat);
} }
std::cout << cur_feat << std::endl;
if(cur_feat != node_value_arrs::N_SELECTED) if(cur_feat != node_value_arrs::N_SELECTED)
throw std::logic_error("SIS went through all features and did not select enough."); throw std::logic_error("SIS went through all features and did not select enough.");
} }
...@@ -42,9 +42,6 @@ InputParser::InputParser(boost::property_tree::ptree IP, std::string fn, std::sh ...@@ -42,9 +42,6 @@ InputParser::InputParser(boost::property_tree::ptree IP, std::string fn, std::sh
else if(_leave_out_inds.size() != _n_leave_out) else if(_leave_out_inds.size() != _n_leave_out)
throw std::logic_error("n_leave_out is not the same size as leave_out_inds"); throw std::logic_error("n_leave_out is not the same size as leave_out_inds");
if(comm->rank() == 1)
for(int ii = 0; ii < _n_leave_out; ++ii)
std::cout << _leave_out_inds[ii] << std::endl;
if(_opset.size() == 0) if(_opset.size() == 0)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment