Address comments

release/4.3a0
Fan Jiang 2022-03-23 20:42:26 -04:00
parent 4f8dfeb5b2
commit 293ef614ac
3 changed files with 12 additions and 3 deletions

View File

@ -23,6 +23,9 @@
namespace gtsam {
/**
* Elimination Tree type for Hybrid
*/
class GTSAM_EXPORT HybridEliminationTree
: public EliminationTree<HybridBayesNet, HybridFactorGraph> {
public:

View File

@ -62,6 +62,12 @@ struct EliminationTraits<HybridFactorGraph> {
}
};
/**
* Hybrid Factor Graph
* -----------------------
* This is the linear version of a hybrid factor graph. Everything inside needs
* to be hybrid factor or hybrid conditional.
*/
class HybridFactorGraph : public FactorGraph<HybridFactor>,
public EliminateableFactorGraph<HybridFactorGraph> {
public: