Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
Enumerations
a
c
d
e
f
g
i
k
l
m
n
p
q
r
s
t
u
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Classes
Class List
Class Hierarchy
Class Members
All
!
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
!
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
a
b
c
d
f
k
l
m
n
o
p
r
s
t
v
z
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Related Functions
:
a
b
c
d
e
g
h
i
l
m
n
o
p
r
s
t
u
v
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
x
z
Enumerations
Enumerator
b
c
e
f
g
i
l
m
n
o
p
r
s
t
u
v
x
y
z
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
gtsam
hybrid
HybridEliminationTree.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
#pragma once
19
20
#include <
gtsam/hybrid/HybridBayesNet.h
>
21
#include <
gtsam/hybrid/HybridGaussianFactorGraph.h
>
22
#include <
gtsam/inference/EliminationTree.h
>
23
24
namespace
gtsam
{
25
31
class
GTSAM_EXPORT
HybridEliminationTree
32
:
public
EliminationTree
<HybridBayesNet, HybridGaussianFactorGraph> {
33
private
:
34
friend
class ::EliminationTreeTester;
35
36
public
:
37
typedef
EliminationTree<HybridBayesNet, HybridGaussianFactorGraph>
38
Base
;
39
typedef
HybridEliminationTree
This
;
40
typedef
std::shared_ptr<This>
shared_ptr
;
41
44
54
HybridEliminationTree
(
const
HybridGaussianFactorGraph
&
factorGraph
,
55
const
VariableIndex
& structure,
const
Ordering
& order);
56
62
HybridEliminationTree
(
const
HybridGaussianFactorGraph
&
factorGraph
,
63
const
Ordering
& order);
64
66
68
bool
equals
(
const
This
&
other
,
double
tol
= 1
e
-9)
const
;
69
};
70
71
}
// namespace gtsam
e
Array< double, 1, 3 > e(1./3., 0.5, 2.)
HybridBayesNet.h
A Bayes net of Gaussian Conditionals indexed by discrete keys.
gtsam::EliminationTree
Definition:
EliminationTree.h:51
asia::factorGraph
static const DiscreteFactorGraph factorGraph(bayesNet)
gtsam::HybridGaussianFactorGraph
Definition:
HybridGaussianFactorGraph.h:106
gtsam::VariableIndex
Definition:
VariableIndex.h:41
gtsam::HybridEliminationTree
Definition:
HybridEliminationTree.h:31
gtsam::equals
Definition:
Testable.h:112
HybridGaussianFactorGraph.h
Linearized Hybrid factor graph that uses type erasure.
gtsam
traits
Definition:
SFMdata.h:40
gtsam::HybridEliminationTree::This
HybridEliminationTree This
This class.
Definition:
HybridEliminationTree.h:39
gtsam::HybridEliminationTree::shared_ptr
std::shared_ptr< This > shared_ptr
Shared pointer to this class.
Definition:
HybridEliminationTree.h:40
gtsam::HybridEliminationTree::Base
EliminationTree< HybridBayesNet, HybridGaussianFactorGraph > Base
Base class.
Definition:
HybridEliminationTree.h:38
gtsam::tol
const G double tol
Definition:
Group.h:79
EliminationTree.h
gtsam::Ordering
Definition:
inference/Ordering.h:33
pybind_wrapper_test_script.other
other
Definition:
pybind_wrapper_test_script.py:42
gtsam
Author(s):
autogenerated on Wed Mar 19 2025 03:01:48