AntiFactor.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 
16 #pragma once
17 
18 #include <ostream>
19 
22 
23 namespace gtsam {
24 
31  class AntiFactor: public NonlinearFactor {
32 
33  private:
34 
35  typedef AntiFactor This;
38 
39  sharedFactor factor_;
40 
41  public:
42 
43  // shorthand for a smart pointer to a factor
44  typedef std::shared_ptr<AntiFactor> shared_ptr;
45 
48 
50  AntiFactor(NonlinearFactor::shared_ptr factor) : Base(factor->keys()), factor_(factor) {}
51 
52  ~AntiFactor() override {}
53 
56  return std::static_pointer_cast<gtsam::NonlinearFactor>(
58 
62  void print(const std::string& s, const KeyFormatter& keyFormatter = DefaultKeyFormatter) const override {
63  std::cout << s << "AntiFactor version of:" << std::endl;
64  factor_->print(s, keyFormatter);
65  }
66 
68  bool equals(const NonlinearFactor& expected, double tol=1e-9) const override {
69  const This *e = dynamic_cast<const This*> (&expected);
70  return e != nullptr && Base::equals(*e, tol) && this->factor_->equals(*e->factor_, tol);
71  }
72 
80  double error(const Values& c) const override { return -factor_->error(c); }
81 
83  size_t dim() const override { return factor_->dim(); }
84 
89  bool active(const Values& c) const override { return factor_->active(c); }
90 
97  std::shared_ptr<GaussianFactor> linearize(const Values& c) const override {
98 
99  // Generate the linearized factor from the contained nonlinear factor
100  GaussianFactor::shared_ptr gaussianFactor = factor_->linearize(c);
101 
102  // return the negated version of the factor
103  return gaussianFactor->negate();
104  }
105 
106 
107  private:
108 
109 #ifdef GTSAM_ENABLE_BOOST_SERIALIZATION
110 
111  friend class boost::serialization::access;
112  template<class ARCHIVE>
113  void serialize(ARCHIVE & ar, const unsigned int /*version*/) {
114  ar & boost::serialization::make_nvp("AntiFactor",
115  boost::serialization::base_object<Base>(*this));
116  ar & BOOST_SERIALIZATION_NVP(factor_);
117  }
118 #endif
119  }; // \class AntiFactor
120 
121 }
bool equals(const NonlinearFactor &expected, double tol=1e-9) const override
Definition: AntiFactor.h:68
std::string serialize(const T &input)
serializes to a string
~AntiFactor() override
Definition: AntiFactor.h:52
Matrix expected
Definition: testMatrix.cpp:971
std::shared_ptr< AntiFactor > shared_ptr
Definition: AntiFactor.h:44
A factor with a quadratic error function - a Gaussian.
Scalar Scalar * c
Definition: benchVecAdd.cpp:17
static const KeyFormatter DefaultKeyFormatter
Definition: Key.h:43
AntiFactor This
Definition: AntiFactor.h:35
virtual bool equals(const NonlinearFactor &f, double tol=1e-9) const
void print(const std::string &s, const KeyFormatter &keyFormatter=DefaultKeyFormatter) const override
Definition: AntiFactor.h:62
double error(const Values &c) const override
Definition: AntiFactor.h:80
Array< double, 1, 3 > e(1./3., 0.5, 2.)
RealScalar s
std::function< std::string(Key)> KeyFormatter
Typedef for a function to format a key, i.e. to convert it to a string.
Definition: Key.h:35
bool active(const Values &c) const override
Definition: AntiFactor.h:89
std::shared_ptr< This > shared_ptr
shared_ptr to this class
traits
Definition: chartTesting.h:28
Non-linear factor base classes.
std::shared_ptr< This > shared_ptr
gtsam::NonlinearFactor::shared_ptr clone() const override
Definition: AntiFactor.h:55
AntiFactor(NonlinearFactor::shared_ptr factor)
Definition: AntiFactor.h:50
const KeyVector & keys() const
Access the factor&#39;s involved variable keys.
Definition: Factor.h:142
const G double tol
Definition: Group.h:86
std::shared_ptr< GaussianFactor > linearize(const Values &c) const override
Definition: AntiFactor.h:97
sharedFactor factor_
Definition: AntiFactor.h:39
NonlinearFactor Base
Definition: AntiFactor.h:36
NonlinearFactor::shared_ptr sharedFactor
Definition: AntiFactor.h:37
size_t dim() const override
Definition: AntiFactor.h:83


gtsam
Author(s):
autogenerated on Tue Jul 4 2023 02:33:53