|
GTSAM
4.0.2
C++ library for smoothing and mapping (SAM)
|
#include <SymbolicFactor.h>


Public Types | |
| typedef SymbolicFactor | This |
| typedef Factor | Base |
| typedef SymbolicConditional | ConditionalType |
| typedef std::shared_ptr< This > | shared_ptr |
| typedef KeyVector::iterator | iterator |
| Iterator over keys. | |
| typedef KeyVector::const_iterator | const_iterator |
| Const iterator over keys. | |
Protected Attributes | |
| KeyVector | keys_ |
| The keys involved in this factor. | |
Standard Constructors | |
| template<typename ITERATOR > | |
| static Factor | FromIterators (ITERATOR first, ITERATOR last) |
Standard Interface | |
| bool | empty () const |
| Whether the factor is empty (involves zero variables). | |
| Key | front () const |
| First key. | |
| Key | back () const |
| Last key. | |
| const_iterator | find (Key key) const |
| find | |
| const KeyVector & | keys () const |
| Access the factor's involved variable keys. | |
| const_iterator | begin () const |
| const_iterator | end () const |
| size_t | size () const |
Advanced Interface | |
| KeyVector & | keys () |
| iterator | begin () |
| iterator | end () |
Standard Constructors | |
| SymbolicFactor () | |
| SymbolicFactor (Key j) | |
| SymbolicFactor (Key j1, Key j2) | |
| SymbolicFactor (Key j1, Key j2, Key j3) | |
| SymbolicFactor (Key j1, Key j2, Key j3, Key j4) | |
| SymbolicFactor (Key j1, Key j2, Key j3, Key j4, Key j5) | |
| SymbolicFactor (Key j1, Key j2, Key j3, Key j4, Key j5, Key j6) | |
| SymbolicFactor (const Factor &factor) | |
| SymbolicFactor::shared_ptr | clone () const |
| Copy this object as its actual derived type. | |
Testable | |
| bool | equals (const This &other, double tol=1e-9) const |
| void | print (const std::string &s="SymbolicFactor", const KeyFormatter &formatter=DefaultKeyFormatter) const override |
| print | |
| void | printKeys (const std::string &s="SymbolicFactor", const KeyFormatter &formatter=DefaultKeyFormatter) const override |
| print only keys | |
Advanced Constructors | |
| template<typename KEYITERATOR > | |
| static SymbolicFactor | FromIterators (KEYITERATOR beginKey, KEYITERATOR endKey) |
| template<typename KEYITERATOR > | |
| static SymbolicFactor::shared_ptr | FromIteratorsShared (KEYITERATOR beginKey, KEYITERATOR endKey) |
| template<class CONTAINER > | |
| static SymbolicFactor | FromKeys (const CONTAINER &keys) |
| template<class CONTAINER > | |
| static SymbolicFactor::shared_ptr | FromKeysShared (const CONTAINER &keys) |
Standard Interface | |
| double | error (const HybridValues &c) const override |
The error method throws an exception. | |
| std::pair< std::shared_ptr< SymbolicConditional >, std::shared_ptr< SymbolicFactor > > | eliminate (const Ordering &keys) const |
SymbolicFactor represents a symbolic factor that specifies graph topology but is not associated with any numerical function.
for symbolic elimination etc.
Note that derived classes must also redefine the This and shared_ptr typedefs. See JacobianFactor, etc. for examples.
| typedef std::shared_ptr<This> gtsam::SymbolicFactor::shared_ptr |
Overriding the shared_ptr typedef
|
inline |
Default constructor for I/O
|
inlineexplicit |
Construct unary factor
Construct 4-way factor
Construct 5-way factor
Construct 6-way factor
|
inlineexplicit |
Create symbolic version of any factor
|
inlineinherited |
Iterator at beginning of involved variable keys
|
inlineinherited |
Iterator at beginning of involved variable keys
| std::pair<std::shared_ptr<SymbolicConditional>, std::shared_ptr<SymbolicFactor> > gtsam::SymbolicFactor::eliminate | ( | const Ordering & | keys | ) | const |
Eliminate the variables in keys, in the order specified in keys, returning a conditional and marginal.
|
inlineinherited |
Iterator at end of involved variable keys
|
inlineinherited |
Iterator at end of involved variable keys
|
inlinestatic |
Constructor from a collection of keys
|
inlinestaticprotectedinherited |
Construct factor from iterator keys. This is called internally from derived factor static factor methods, as a workaround for not being able to call the protected constructors above.
|
inlinestatic |
Constructor from a collection of keys
|
inlinestatic |
Constructor from a collection of keys - compatible with boost assign::list_of and boost assign::cref_list_of
|
inlinestatic |
Constructor from a collection of keys - compatible with boost assign::list_of and boost assign::cref_list_of
|
inlineinherited |
|
inlineinherited |
1.8.13