GTSAM  4.0.2
C++ library for smoothing and mapping (SAM)
GaussianJunctionTree.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 
19 #pragma once
20 
24 
25 namespace gtsam {
26 
27  // Forward declarations
28  class GaussianEliminationTree;
29 
38  class GTSAM_EXPORT GaussianJunctionTree :
39  public JunctionTree<GaussianBayesTree, GaussianFactorGraph> {
40  public:
43  typedef std::shared_ptr<This> shared_ptr;
44 
53  GaussianJunctionTree(const GaussianEliminationTree& eliminationTree);
54  };
55 
56 }
JunctionTree< GaussianBayesTree, GaussianFactorGraph > Base
Base class.
Definition: GaussianJunctionTree.h:41
std::shared_ptr< This > shared_ptr
Shared pointer to this class.
Definition: GaussianJunctionTree.h:43
Definition: GaussianEliminationTree.h:27
Definition: GaussianJunctionTree.h:38
Linear Factor Graph where all factors are Gaussians.
Definition: chartTesting.h:28
The junction tree.
Definition: JunctionTree.h:50
Gaussian Bayes Tree, the result of eliminating a GaussianJunctionTree.
GaussianJunctionTree This
This class.
Definition: GaussianJunctionTree.h:42