gtsam  4.0.0
gtsam
SymbolicJunctionTree.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 
22 
23 namespace gtsam {
24 
25  // Forward declarations
26  class SymbolicEliminationTree;
27 
48  class GTSAM_EXPORT SymbolicJunctionTree :
49  public JunctionTree<SymbolicBayesTree, SymbolicFactorGraph> {
50  public:
53  typedef boost::shared_ptr<This> shared_ptr;
54 
63  SymbolicJunctionTree(const SymbolicEliminationTree& eliminationTree);
64  };
65 
66 }
JunctionTree< SymbolicBayesTree, SymbolicFactorGraph > Base
Base class.
Definition: SymbolicJunctionTree.h:51
The junction tree.
SymbolicJunctionTree This
This class.
Definition: SymbolicJunctionTree.h:52
Definition: SymbolicJunctionTree.h:48
boost::shared_ptr< This > shared_ptr
Shared pointer to this class.
Definition: SymbolicJunctionTree.h:53
Global functions in a separate testing namespace.
Definition: chartTesting.h:28
Definition: JunctionTree.h:50
Definition: SymbolicEliminationTree.h:27