/* ---------------------------------------------------------------------------- * GTSAM Copyright 2010, Georgia Tech Research Corporation, * Atlanta, Georgia 30332-0415 * All Rights Reserved * Authors: Frank Dellaert, et al. (see THANKS for the full author list) * See LICENSE for the license information * -------------------------------------------------------------------------- */ /** * @file testClusterTree.cpp * @brief Unit tests for Bayes Tree * @author Kai Ni * @author Frank Dellaert */ #include // for operator += using namespace boost::assign; #include #include #include using namespace gtsam; // explicit instantiation and typedef template class ClusterTree; typedef ClusterTree SymbolicClusterTree; /* ************************************************************************* */ int main() { TestResult tr; return TestRegistry::runAllTests(tr); } /* ************************************************************************* */