GTSAM  4.0.2
C++ library for smoothing and mapping (SAM)
HybridEliminationTree.h
Go to the documentation of this file.
1 /* ----------------------------------------------------------------------------
2 
3  * GTSAM Copyright 2010, Georgia Tech Research Corporation,
4  * Atlanta, Georgia 30332-0415
5  * All Rights Reserved
6  * Authors: Frank Dellaert, et al. (see THANKS for the full author list)
7 
8  * See LICENSE for the license information
9 
10  * -------------------------------------------------------------------------- */
11 
18 #pragma once
19 
23 
24 namespace gtsam {
25 
31 class GTSAM_EXPORT HybridEliminationTree
32  : public EliminationTree<HybridBayesNet, HybridGaussianFactorGraph> {
33  private:
34  friend class ::EliminationTreeTester;
35 
36  public:
38  Base;
40  typedef std::shared_ptr<This> shared_ptr;
41 
44 
55  const VariableIndex& structure, const Ordering& order);
56 
63  const Ordering& order);
64 
66 
68  bool equals(const This& other, double tol = 1e-9) const;
69 };
70 
71 } // namespace gtsam
Definition: EliminationTree.h:51
Definition: HybridEliminationTree.h:31
Definition: Ordering.h:37
HybridEliminationTree This
This class.
Definition: HybridEliminationTree.h:39
Definition: HybridGaussianFactorGraph.h:103
A Bayes net of Gaussian Conditionals indexed by discrete keys.
Definition: Testable.h:112
Linearized Hybrid factor graph that uses type erasure.
Definition: chartTesting.h:28
Definition: VariableIndex.h:41
EliminationTree< HybridBayesNet, HybridGaussianFactorGraph > Base
Base class.
Definition: HybridEliminationTree.h:38
std::shared_ptr< This > shared_ptr
Shared pointer to this class.
Definition: HybridEliminationTree.h:40