gtsam
4.0.0
gtsam
|
Public Member Functions | |
GaussianJunctionTree (const GaussianEliminationTree &eliminationTree) | |
Build the elimination tree of a factor graph using pre-computed column structure. More... | |
Public Member Functions inherited from gtsam::EliminatableClusterTree< GaussianBayesTree, GaussianFactorGraph > | |
std::pair< boost::shared_ptr< BayesTreeType >, boost::shared_ptr< FactorGraphType > > | eliminate (const Eliminate &function) const |
Eliminate the factors to a Bayes tree and remaining factor graph. More... | |
const FastVector< sharedFactor > & | remainingFactors () const |
Return the remaining factors that are not pulled into elimination. | |
Public Member Functions inherited from gtsam::ClusterTree< GaussianFactorGraph > | |
GTSAM_CONCEPT_TESTABLE_TYPE (FactorType) | |
concept check | |
ClusterTree () | |
Default constructor. | |
void | print (const std::string &s="", const KeyFormatter &keyFormatter=DefaultKeyFormatter) const |
Print the cluster tree. | |
void | addRoot (const boost::shared_ptr< Cluster > &cluster) |
void | addChildrenAsRoots (const boost::shared_ptr< Cluster > &cluster) |
size_t | nrRoots () const |
const FastVector< sharedNode > & | roots () const |
Return the set of roots (one for a tree, multiple for a forest) | |
const Cluster & | operator[] (size_t i) const |
Public Types | |
typedef JunctionTree< GaussianBayesTree, GaussianFactorGraph > | Base |
Base class. | |
typedef GaussianJunctionTree | This |
This class. | |
typedef boost::shared_ptr< This > | shared_ptr |
Shared pointer to this class. | |
Public Types inherited from gtsam::JunctionTree< GaussianBayesTree, GaussianFactorGraph > | |
typedef JunctionTree< GaussianBayesTree, GaussianFactorGraph > | This |
This class. | |
typedef boost::shared_ptr< This > | shared_ptr |
Shared pointer to this class. | |
typedef EliminatableClusterTree< GaussianBayesTree, GaussianFactorGraph > | Base |
Our base class. | |
Public Types inherited from gtsam::EliminatableClusterTree< GaussianBayesTree, GaussianFactorGraph > | |
typedef GaussianBayesTree | BayesTreeType |
The BayesTree type produced by elimination. | |
typedef GaussianFactorGraph | FactorGraphType |
The factor graph type. | |
typedef EliminatableClusterTree< GaussianBayesTree, GaussianFactorGraph > | This |
This class. | |
typedef boost::shared_ptr< This > | shared_ptr |
Shared pointer to this class. | |
typedef GaussianBayesTree ::ConditionalType | ConditionalType |
The type of conditionals. | |
typedef boost::shared_ptr< ConditionalType > | sharedConditional |
Shared pointer to a conditional. | |
typedef GaussianFactorGraph ::Eliminate | Eliminate |
Typedef for an eliminate subroutine. | |
typedef GaussianFactorGraph ::FactorType | FactorType |
The type of factors. | |
typedef boost::shared_ptr< FactorType > | sharedFactor |
Shared pointer to a factor. | |
Public Types inherited from gtsam::ClusterTree< GaussianFactorGraph > | |
typedef GaussianFactorGraph | FactorGraphType |
The factor graph type. | |
typedef ClusterTree< GaussianFactorGraph > | This |
This class. | |
typedef boost::shared_ptr< This > | shared_ptr |
Shared pointer to this class. | |
typedef GaussianFactorGraph ::FactorType | FactorType |
The type of factors. | |
typedef boost::shared_ptr< FactorType > | sharedFactor |
Shared pointer to a factor. | |
typedef boost::shared_ptr< Cluster > | sharedCluster |
Shared pointer to Cluster. | |
typedef Cluster | Node |
typedef sharedCluster | sharedNode |
Additional Inherited Members | |
Protected Member Functions inherited from gtsam::JunctionTree< GaussianBayesTree, GaussianFactorGraph > | |
JunctionTree (const EliminationTree< ETREE_BAYESNET, ETREE_GRAPH > &eliminationTree) | |
Build the junction tree from an elimination tree. More... | |
Protected Member Functions inherited from gtsam::EliminatableClusterTree< GaussianBayesTree, GaussianFactorGraph > | |
EliminatableClusterTree (const This &other) | |
Copy constructor - makes a deep copy of the tree structure, but only pointers to factors are copied, factors are not cloned. More... | |
EliminatableClusterTree () | |
Default constructor to be used in derived classes. | |
This & | operator= (const This &other) |
Assignment operator - makes a deep copy of the tree structure, but only pointers to factors are copied, factors are not cloned. More... | |
Protected Member Functions inherited from gtsam::ClusterTree< GaussianFactorGraph > | |
ClusterTree (const This &other) | |
Copy constructor - makes a deep copy of the tree structure, but only pointers to factors are copied, factors are not cloned. More... | |
This & | operator= (const This &other) |
Assignment operator - makes a deep copy of the tree structure, but only pointers to factors are copied, factors are not cloned. More... | |
Static Protected Member Functions inherited from gtsam::JunctionTree< GaussianBayesTree, GaussianFactorGraph > | |
static This | FromEliminationTree (const ETREE &eliminationTree) |
Build the junction tree from an elimination tree. More... | |
Protected Attributes inherited from gtsam::EliminatableClusterTree< GaussianBayesTree, GaussianFactorGraph > | |
FastVector< sharedFactor > | remainingFactors_ |
Protected Attributes inherited from gtsam::ClusterTree< GaussianFactorGraph > | |
FastVector< sharedNode > | roots_ |
gtsam::GaussianJunctionTree::GaussianJunctionTree | ( | const GaussianEliminationTree & | eliminationTree | ) |
Build the elimination tree of a factor graph using pre-computed column structure.
factorGraph | The factor graph for which to build the elimination tree |
structure | The set of factors involving each variable. If this is not precomputed, you can call the Create(const FactorGraph<DERIVEDFACTOR>&) named constructor instead. |