gtsam 4.1.1
gtsam
SymbolicEliminationTree.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
25namespace gtsam {
26
27 class GTSAM_EXPORT SymbolicEliminationTree :
28 public EliminationTree<SymbolicBayesNet, SymbolicFactorGraph>
29 {
30 public:
33 typedef boost::shared_ptr<This> shared_ptr;
34
41 const VariableIndex& structure, const Ordering& order);
42
48 const Ordering& order);
49
51 bool equals(const This& other, double tol = 1e-9) const;
52
53 private:
54
57
58 friend class ::EliminationTreeTester;
59
60 };
61
63template<>
64struct traits<SymbolicEliminationTree> : public Testable<SymbolicEliminationTree> {
65};
66
67} //\ namespace gtsam
Global functions in a separate testing namespace.
Definition: chartTesting.h:28
A manifold defines a space in which there is a notion of a linear tangent space that can be centered ...
Definition: concepts.h:30
Template to create a binary predicate.
Definition: Testable.h:111
A helper that implements the traits interface for GTSAM types.
Definition: Testable.h:151
An elimination tree is a data structure used intermediately during elimination.
Definition: EliminationTree.h:52
Definition: Ordering.h:34
The VariableIndex class computes and stores the block column structure of a factor graph.
Definition: VariableIndex.h:43
Definition: SymbolicEliminationTree.h:29
boost::shared_ptr< This > shared_ptr
Shared pointer to this class.
Definition: SymbolicEliminationTree.h:33
EliminationTree< SymbolicBayesNet, SymbolicFactorGraph > Base
Base class.
Definition: SymbolicEliminationTree.h:31
SymbolicEliminationTree This
This class.
Definition: SymbolicEliminationTree.h:32
Symbolic Factor Graph.
Definition: SymbolicFactorGraph.h:58