rearrange newline

release/4.3a0
Yong-Dian Jian 2012-06-27 16:37:55 +00:00
parent 3f78448c8c
commit 55655d0708
1 changed files with 4 additions and 4 deletions

View File

@ -107,10 +107,10 @@ namespace gtsam {
template<class CONDITIONAL, class CLIQUE>
void BayesTree<CONDITIONAL,CLIQUE>::CliqueStats::print(const std::string& s) const {
std::cout << s
<<"\navg Conditional Size: " << avgConditionalSize
<< "\nmax Conditional Size: " << maxConditionalSize
<< "\navg Separator Size: " << avgSeparatorSize
<< "\nmax Separator Size: " << maxSeparatorSize
<<"avg Conditional Size: " << avgConditionalSize << std::endl
<< "max Conditional Size: " << maxConditionalSize << std::endl
<< "avg Separator Size: " << avgSeparatorSize << std::endl
<< "max Separator Size: " << maxSeparatorSize << std::endl
<< std::endl;
}