From 3f78448c8ca8f47a65cfe405e1716cdc3fba6bc3 Mon Sep 17 00:00:00 2001 From: Yong-Dian Jian Date: Wed, 27 Jun 2012 16:36:23 +0000 Subject: [PATCH] fix typo --- gtsam/inference/BayesNet-inl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtsam/inference/BayesNet-inl.h b/gtsam/inference/BayesNet-inl.h index 7fbfdc454..6647be302 100644 --- a/gtsam/inference/BayesNet-inl.h +++ b/gtsam/inference/BayesNet-inl.h @@ -52,8 +52,8 @@ namespace gtsam { total += conditional->size(); } std::cout << s - << "maximum clique size = " << max_size << std::endl - << "average clique size = " << total / n << std::endl + << "maximum conditional size = " << max_size << std::endl + << "average conditional size = " << total / n << std::endl << "density = " << 100.0 * total / (double) (n*(n+1)/2) << " %" << std::endl << std::endl; }