GTSAM  4.0.2
C++ library for smoothing and mapping (SAM)
GaussianConditional-inl.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 // \callgraph
19 
20 #pragma once
21 
22 namespace gtsam {
23 
24  /* ************************************************************************* */
25  template<typename TERMS>
27  size_t nrFrontals, const Vector& d, const SharedDiagonal& sigmas) :
28  BaseFactor(terms, d, sigmas), BaseConditional(nrFrontals) {}
29 
30  /* ************************************************************************* */
31  template<typename KEYS>
33  const KEYS& keys, size_t nrFrontals, const VerticalBlockMatrix& augmentedMatrix, const SharedDiagonal& sigmas) :
34  BaseFactor(keys, augmentedMatrix, sigmas), BaseConditional(nrFrontals) {}
35 
36 } // gtsam
Definition: VerticalBlockMatrix.h:42
size_t nrFrontals() const
Definition: Conditional.h:129
GaussianConditional()
Definition: GaussianConditional.h:52
Definition: Conditional.h:61
Definition: JacobianFactor.h:91
Definition: chartTesting.h:28
const KeyVector & keys() const
Access the factor&#39;s involved variable keys.
Definition: Factor.h:142