Use KeyFormatter in BayesNet::saveGraph

release/4.3a0
Richard Roberts 2013-09-18 17:23:38 +00:00
parent f5bb8c6507
commit c24cc8d2e2
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ namespace gtsam {
Key me = frontals.front();
typename CONDITIONAL::Parents parents = conditional->parents();
BOOST_FOREACH(Key p, parents)
of << p << "->" << me << std::endl;
of << keyFormatter(p) << "->" << keyFormatter(me) << std::endl;
}
of << "}";