| 511 | // FIXME: Remove after finalzing code |
| 512 | template <class IterableContainer> |
| 513 | string 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 | /* |