Removed constructor, use eliminate

release/4.3a0
Frank Dellaert 2009-10-31 16:55:44 +00:00
parent 0f688302ad
commit 040f407b0b
2 changed files with 0 additions and 17 deletions

View File

@ -20,17 +20,6 @@ namespace gtsam {
// Explicitly instantiate so we don't have to include everywhere // Explicitly instantiate so we don't have to include everywhere
template class BayesChain<SymbolicConditional>; template class BayesChain<SymbolicConditional>;
typedef pair<string,SymbolicConditional::shared_ptr> pp;
/* ************************************************************************* */
SymbolicBayesChain::SymbolicBayesChain(const std::map<std::string,
SymbolicConditional::shared_ptr>& nodes) {
BOOST_FOREACH(pp p, nodes) {
keys_.push_front(p.first);
nodes_.insert(p);
}
}
/* ************************************************************************* */ /* ************************************************************************* */
} // namespace gtsam } // namespace gtsam

View File

@ -35,12 +35,6 @@ namespace gtsam {
*/ */
SymbolicBayesChain() {} SymbolicBayesChain() {}
/**
* Construct from a map of nodes
*/
SymbolicBayesChain(const std::map<std::string,
SymbolicConditional::shared_ptr>& nodes);
/** Destructor */ /** Destructor */
virtual ~SymbolicBayesChain() { virtual ~SymbolicBayesChain() {
} }