gtsam 4.2
gtsam
Loading...
Searching...
No Matches
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
18
19#pragma once
20
24
25namespace gtsam {
26
27 // Forward declarations
29
50 class GTSAM_EXPORT SymbolicJunctionTree :
51 public JunctionTree<SymbolicBayesTree, SymbolicFactorGraph> {
52 public:
55 typedef boost::shared_ptr<This> shared_ptr;
56
65 SymbolicJunctionTree(const SymbolicEliminationTree& eliminationTree);
66 };
67
70}
The junction tree.
Global functions in a separate testing namespace.
Definition chartTesting.h:28
SymbolicJunctionTree::Cluster SymbolicCluster
typedef for wrapper:
Definition SymbolicJunctionTree.h:69
A Cluster is just a collection of factors.
Definition ClusterTree.h:36
JunctionTree(const EliminationTree< ETREE_BAYESNET, ETREE_GRAPH > &eliminationTree)
Definition SymbolicEliminationTree.h:29
SymbolicJunctionTree(const SymbolicEliminationTree &eliminationTree)
Build the elimination tree of a factor graph using pre-computed column structure.
Definition SymbolicJunctionTree.cpp:30
boost::shared_ptr< This > shared_ptr
Shared pointer to this class.
Definition SymbolicJunctionTree.h:55
JunctionTree< SymbolicBayesTree, SymbolicFactorGraph > Base
Base class.
Definition SymbolicJunctionTree.h:53
SymbolicJunctionTree This
This class.
Definition SymbolicJunctionTree.h:54