18 lines
492 B
C++
18 lines
492 B
C++
/**
|
|
* @file SymbolicBayesChain-inl.h
|
|
* @brief Template definitions for SymbolicBayesChain
|
|
* @author Frank Dellaert
|
|
*/
|
|
|
|
#include "SymbolicBayesChain.h"
|
|
|
|
using namespace std;
|
|
using namespace gtsam;
|
|
|
|
/* ************************************************************************* */
|
|
template<class Factor, class Config>
|
|
SymbolicBayesChain::SymbolicBayesChain(const FactorGraph<Factor,Config>& factorGraph) {
|
|
}
|
|
|
|
/* ************************************************************************* */
|