2009-10-28 04:23:19 +08:00
|
|
|
/**
|
2009-11-01 03:53:20 +08:00
|
|
|
* @file testSymbolicBayesNet.cpp
|
2009-10-28 04:23:19 +08:00
|
|
|
* @brief Unit tests for a symbolic Bayes chain
|
|
|
|
* @author Frank Dellaert
|
|
|
|
*/
|
|
|
|
|
2009-10-31 13:12:39 +08:00
|
|
|
#include <boost/assign/list_inserter.hpp> // for 'insert()'
|
2009-10-31 23:24:22 +08:00
|
|
|
#include <boost/assign/std/list.hpp> // for operator +=
|
2009-10-31 13:12:39 +08:00
|
|
|
using namespace boost::assign;
|
|
|
|
|
2009-10-28 04:23:19 +08:00
|
|
|
#include <CppUnitLite/TestHarness.h>
|
|
|
|
|
2009-11-02 11:50:30 +08:00
|
|
|
#include "Ordering.h"
|
2009-10-28 04:23:19 +08:00
|
|
|
#include "smallExample.h"
|
2009-11-01 03:53:20 +08:00
|
|
|
#include "SymbolicBayesNet.h"
|
2009-10-31 23:24:22 +08:00
|
|
|
#include "SymbolicFactorGraph.h"
|
2009-10-28 04:23:19 +08:00
|
|
|
|
2009-10-29 12:11:23 +08:00
|
|
|
using namespace std;
|
2009-10-28 04:23:19 +08:00
|
|
|
using namespace gtsam;
|
|
|
|
|
2009-10-29 12:11:23 +08:00
|
|
|
/* ************************************************************************* */
|
2009-11-01 03:53:20 +08:00
|
|
|
TEST( SymbolicBayesNet, constructor )
|
2009-10-28 04:23:19 +08:00
|
|
|
{
|
2009-10-28 10:57:38 +08:00
|
|
|
// Create manually
|
2009-10-31 13:12:39 +08:00
|
|
|
SymbolicConditional::shared_ptr
|
2009-11-02 11:50:30 +08:00
|
|
|
x2(new SymbolicConditional("x2","l1", "x1")),
|
|
|
|
l1(new SymbolicConditional("l1","x1")),
|
|
|
|
x1(new SymbolicConditional("x1"));
|
2009-11-01 03:53:20 +08:00
|
|
|
SymbolicBayesNet expected;
|
2009-11-02 13:17:44 +08:00
|
|
|
expected.push_back(x2);
|
|
|
|
expected.push_back(l1);
|
|
|
|
expected.push_back(x1);
|
2009-10-28 10:57:38 +08:00
|
|
|
|
|
|
|
// Create from a factor graph
|
2009-10-31 23:24:22 +08:00
|
|
|
LinearFactorGraph factorGraph = createLinearFactorGraph();
|
|
|
|
SymbolicFactorGraph fg(factorGraph);
|
|
|
|
|
|
|
|
// eliminate it
|
2009-10-29 12:11:23 +08:00
|
|
|
Ordering ordering;
|
2009-10-31 13:12:39 +08:00
|
|
|
ordering += "x2","l1","x1";
|
2009-11-01 03:53:20 +08:00
|
|
|
SymbolicBayesNet::shared_ptr actual = fg.eliminate(ordering);
|
2009-10-31 13:12:39 +08:00
|
|
|
|
2009-10-31 23:24:22 +08:00
|
|
|
CHECK(assert_equal(expected, *actual));
|
2009-10-28 04:23:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ************************************************************************* */
|
|
|
|
int main() {
|
|
|
|
TestResult tr;
|
|
|
|
return TestRegistry::runAllTests(tr);
|
|
|
|
}
|
|
|
|
/* ************************************************************************* */
|