2022-06-08 06:39:10 +08:00
|
|
|
/* ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
* 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 testHybridBayesNet.cpp
|
|
|
|
|
* @brief Unit tests for HybridBayesNet
|
|
|
|
|
* @author Varun Agrawal
|
|
|
|
|
* @author Fan Jiang
|
|
|
|
|
* @author Frank Dellaert
|
|
|
|
|
* @date December 2021
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <gtsam/hybrid/HybridBayesNet.h>
|
2022-06-08 08:13:42 +08:00
|
|
|
|
|
|
|
|
#include "Switching.h"
|
2022-06-08 06:39:10 +08:00
|
|
|
|
|
|
|
|
// Include for test suite
|
|
|
|
|
#include <CppUnitLite/TestHarness.h>
|
|
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
using namespace gtsam;
|
|
|
|
|
using noiseModel::Isotropic;
|
|
|
|
|
using symbol_shorthand::M;
|
|
|
|
|
using symbol_shorthand::X;
|
|
|
|
|
|
|
|
|
|
static const DiscreteKey Asia(0, 2);
|
|
|
|
|
|
|
|
|
|
/* ****************************************************************************/
|
|
|
|
|
// Test creation
|
|
|
|
|
TEST(HybridBayesNet, Creation) {
|
|
|
|
|
HybridBayesNet bayesNet;
|
|
|
|
|
|
|
|
|
|
bayesNet.add(Asia, "99/1");
|
|
|
|
|
|
|
|
|
|
DiscreteConditional expected(Asia, "99/1");
|
|
|
|
|
|
|
|
|
|
CHECK(bayesNet.atDiscrete(0));
|
|
|
|
|
auto& df = *bayesNet.atDiscrete(0);
|
|
|
|
|
EXPECT(df.equals(expected));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ****************************************************************************/
|
|
|
|
|
// Test choosing an assignment of conditionals
|
|
|
|
|
TEST(HybridBayesNet, Choose) {
|
|
|
|
|
Switching s(4);
|
|
|
|
|
|
|
|
|
|
Ordering ordering;
|
|
|
|
|
for (auto&& kvp : s.linearizationPoint) {
|
|
|
|
|
ordering += kvp.key;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
HybridBayesNet::shared_ptr hybridBayesNet;
|
|
|
|
|
HybridGaussianFactorGraph::shared_ptr remainingFactorGraph;
|
|
|
|
|
std::tie(hybridBayesNet, remainingFactorGraph) =
|
|
|
|
|
s.linearizedFactorGraph.eliminatePartialSequential(ordering);
|
|
|
|
|
|
|
|
|
|
DiscreteValues assignment;
|
|
|
|
|
assignment[M(1)] = 1;
|
|
|
|
|
assignment[M(2)] = 1;
|
|
|
|
|
assignment[M(3)] = 0;
|
|
|
|
|
|
|
|
|
|
GaussianBayesNet gbn = hybridBayesNet->choose(assignment);
|
|
|
|
|
|
|
|
|
|
EXPECT_LONGS_EQUAL(4, gbn.size());
|
|
|
|
|
|
|
|
|
|
EXPECT(assert_equal(*(*boost::dynamic_pointer_cast<GaussianMixture>(
|
|
|
|
|
hybridBayesNet->atGaussian(0)))(assignment),
|
|
|
|
|
*gbn.at(0)));
|
|
|
|
|
EXPECT(assert_equal(*(*boost::dynamic_pointer_cast<GaussianMixture>(
|
|
|
|
|
hybridBayesNet->atGaussian(1)))(assignment),
|
|
|
|
|
*gbn.at(1)));
|
|
|
|
|
EXPECT(assert_equal(*(*boost::dynamic_pointer_cast<GaussianMixture>(
|
|
|
|
|
hybridBayesNet->atGaussian(2)))(assignment),
|
|
|
|
|
*gbn.at(2)));
|
|
|
|
|
EXPECT(assert_equal(*(*boost::dynamic_pointer_cast<GaussianMixture>(
|
|
|
|
|
hybridBayesNet->atGaussian(3)))(assignment),
|
|
|
|
|
*gbn.at(3)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ************************************************************************* */
|
|
|
|
|
int main() {
|
|
|
|
|
TestResult tr;
|
|
|
|
|
return TestRegistry::runAllTests(tr);
|
|
|
|
|
}
|
|
|
|
|
/* ************************************************************************* */
|