diff --git a/gtsam/inference/BayesTree-inl.h b/gtsam/inference/BayesTree-inl.h index b3bc9f81e..e0a585812 100644 --- a/gtsam/inference/BayesTree-inl.h +++ b/gtsam/inference/BayesTree-inl.h @@ -107,10 +107,10 @@ namespace gtsam { template void BayesTree::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; }