26 lines
631 B
C++
26 lines
631 B
C++
/**
|
|
* @file testClusterTree.cpp
|
|
* @brief Unit tests for Bayes Tree
|
|
* @author Kai Ni
|
|
* @author Frank Dellaert
|
|
*/
|
|
|
|
#include <boost/assign/std/list.hpp> // for operator +=
|
|
using namespace boost::assign;
|
|
|
|
#include <CppUnitLite/TestHarness.h>
|
|
|
|
#include "SymbolicFactorGraph.h"
|
|
#include "ClusterTree-inl.h"
|
|
|
|
using namespace gtsam;
|
|
|
|
typedef ClusterTree<SymbolicFactorGraph> SymbolicClusterTree;
|
|
|
|
/* ************************************************************************* */
|
|
int main() {
|
|
TestResult tr;
|
|
return TestRegistry::runAllTests(tr);
|
|
}
|
|
/* ************************************************************************* */
|