gtsam  4.0.0
gtsam
Value.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 
21 #include <gtsam/config.h> // Configuration from CMake
22 
23 #include <gtsam/base/Vector.h>
24 #include <boost/serialization/assume_abstract.hpp>
25 #include <memory>
26 
27 namespace gtsam {
28 
36  class GTSAM_EXPORT Value {
37  public:
38 
40  virtual Value* clone_() const = 0;
41 
43  virtual void deallocate_() const = 0;
44 
46  virtual boost::shared_ptr<Value> clone() const = 0;
47 
49  virtual bool equals_(const Value& other, double tol = 1e-9) const = 0;
50 
52  virtual void print(const std::string& str = "") const = 0;
53 
59  virtual size_t dim() const = 0;
60 
67  virtual Value* retract_(const Vector& delta) const = 0;
68 
75  virtual Vector localCoordinates_(const Value& value) const = 0;
76 
78  virtual Value& operator=(const Value& /*rhs*/) {
79  //needs a empty definition so recursion in implicit derived assignment operators work
80  return *this;
81  }
82 
84  template<typename ValueType>
85  const ValueType& cast() const;
86 
88  virtual ~Value() {}
89 
90  private:
121  friend class boost::serialization::access;
122  template<class ARCHIVE>
123  void serialize(ARCHIVE & /*ar*/, const unsigned int /*version*/) {
124  }
125 
126  };
127 
128 } /* namespace gtsam */
129 
130 BOOST_SERIALIZATION_ASSUME_ABSTRACT(gtsam::Value)
This is the base class for any type to be stored in Values.
Definition: Value.h:36
void print(const Matrix &A, const string &s, ostream &stream)
print without optional string, must specify cout yourself
Definition: Matrix.cpp:141
virtual Value & operator=(const Value &)
Assignment operator.
Definition: Value.h:78
Global functions in a separate testing namespace.
Definition: chartTesting.h:28
virtual ~Value()
Virutal destructor.
Definition: Value.h:88
typedef and functions to augment Eigen's VectorXd