MCPcopy Create free account
hub / github.com/apache/madlib / print_debug_list

Function print_debug_list

src/modules/recursive_partitioning/decision_tree.cpp:513–520  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

511// FIXME: Remove after finalzing code
512template <class IterableContainer>
513string print_debug_list(IterableContainer debug_list){
514 std::stringstream debug;
515 typename IterableContainer::iterator it;
516 for (it = debug_list.begin(); it != debug_list.end(); it++){
517 debug << std::setprecision(8) << *it << ", ";
518 }
519 return debug.str();
520}
521
522
523/*

Callers

nothing calls this directly

Calls 2

beginMethod · 0.80
endMethod · 0.80

Tested by

no test coverage detected