123 lines
4.4 KiB
C++
123 lines
4.4 KiB
C++
/* ----------------------------------------------------------------------------
|
|
|
|
* 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 GaussianMixtureFactor.cpp
|
|
* @brief A set of Gaussian factors indexed by a set of discrete keys.
|
|
* @author Fan Jiang
|
|
* @author Varun Agrawal
|
|
* @author Frank Dellaert
|
|
* @date Mar 12, 2022
|
|
*/
|
|
|
|
#include <gtsam/base/utilities.h>
|
|
#include <gtsam/discrete/DecisionTree-inl.h>
|
|
#include <gtsam/discrete/DecisionTree.h>
|
|
#include <gtsam/hybrid/GaussianMixtureFactor.h>
|
|
#include <gtsam/hybrid/HybridValues.h>
|
|
#include <gtsam/linear/GaussianFactor.h>
|
|
#include <gtsam/linear/GaussianFactorGraph.h>
|
|
|
|
namespace gtsam {
|
|
|
|
/* *******************************************************************************/
|
|
GaussianMixtureFactor::GaussianMixtureFactor(const KeyVector &continuousKeys,
|
|
const DiscreteKeys &discreteKeys,
|
|
const Factors &factors)
|
|
: Base(continuousKeys, discreteKeys), factors_(factors) {}
|
|
|
|
/* *******************************************************************************/
|
|
bool GaussianMixtureFactor::equals(const HybridFactor &lf, double tol) const {
|
|
const This *e = dynamic_cast<const This *>(&lf);
|
|
if (e == nullptr) return false;
|
|
|
|
// This will return false if either factors_ is empty or e->factors_ is empty,
|
|
// but not if both are empty or both are not empty:
|
|
if (factors_.empty() ^ e->factors_.empty()) return false;
|
|
|
|
// Check the base and the factors:
|
|
return Base::equals(*e, tol) &&
|
|
factors_.equals(e->factors_,
|
|
[tol](const sharedFactor &f1, const sharedFactor &f2) {
|
|
return f1->equals(*f2, tol);
|
|
});
|
|
}
|
|
|
|
/* *******************************************************************************/
|
|
void GaussianMixtureFactor::print(const std::string &s,
|
|
const KeyFormatter &formatter) const {
|
|
HybridFactor::print(s, formatter);
|
|
std::cout << "{\n";
|
|
if (factors_.empty()) {
|
|
std::cout << " empty" << std::endl;
|
|
} else {
|
|
factors_.print(
|
|
"", [&](Key k) { return formatter(k); },
|
|
[&](const sharedFactor &gf) -> std::string {
|
|
RedirectCout rd;
|
|
std::cout << ":\n";
|
|
if (gf && !gf->empty()) {
|
|
gf->print("", formatter);
|
|
return rd.str();
|
|
} else {
|
|
return "nullptr";
|
|
}
|
|
});
|
|
}
|
|
std::cout << "}" << std::endl;
|
|
}
|
|
|
|
/* *******************************************************************************/
|
|
GaussianMixtureFactor::sharedFactor GaussianMixtureFactor::operator()(
|
|
const DiscreteValues &assignment) const {
|
|
return factors_(assignment);
|
|
}
|
|
|
|
/* *******************************************************************************/
|
|
GaussianFactorGraphTree GaussianMixtureFactor::add(
|
|
const GaussianFactorGraphTree &sum) const {
|
|
using Y = GaussianFactorGraph;
|
|
auto add = [](const Y &graph1, const Y &graph2) {
|
|
auto result = graph1;
|
|
result.push_back(graph2);
|
|
return result;
|
|
};
|
|
const auto tree = asGaussianFactorGraphTree();
|
|
return sum.empty() ? tree : sum.apply(tree, add);
|
|
}
|
|
|
|
/* *******************************************************************************/
|
|
GaussianFactorGraphTree GaussianMixtureFactor::asGaussianFactorGraphTree()
|
|
const {
|
|
auto wrap = [](const sharedFactor &gf) { return GaussianFactorGraph{gf}; };
|
|
return {factors_, wrap};
|
|
}
|
|
|
|
/* *******************************************************************************/
|
|
AlgebraicDecisionTree<Key> GaussianMixtureFactor::error(
|
|
const VectorValues &continuousValues) const {
|
|
// functor to convert from sharedFactor to double error value.
|
|
auto errorFunc = [&continuousValues](const sharedFactor &gf) {
|
|
return gf->error(continuousValues);
|
|
};
|
|
DecisionTree<Key, double> errorTree(factors_, errorFunc);
|
|
return errorTree;
|
|
}
|
|
|
|
/* *******************************************************************************/
|
|
double GaussianMixtureFactor::error(const HybridValues &values) const {
|
|
const sharedFactor gf = factors_(values.discrete());
|
|
return gf->error(values.continuous());
|
|
}
|
|
/* *******************************************************************************/
|
|
|
|
} // namespace gtsam
|