24#include <boost/serialization/nvp.hpp>
49 c_(key.c_), j_(key.j_) {
53 Symbol(
unsigned char c, std::uint64_t j) :
64 operator Key()
const {
return key(); }
67 void print(
const std::string& s =
"")
const;
70 bool equals(
const Symbol& expected,
double tol = 0.0)
const;
73 unsigned char chr()
const {
83 operator std::string()
const;
86 std::string
string()
const {
return std::string(*
this); };
90 return c_ < comp.c_ || (comp.c_ == c_ && j_ < comp.j_);
95 return comp.c_ == c_ && comp.j_ == j_;
100 return comp == (
Key)(*
this);
105 return comp.c_ != c_ || comp.j_ != j_;
110 return comp != (
Key)(*
this);
118 static std::function<bool(
Key)> ChrTest(
unsigned char c);
121 GTSAM_EXPORT
friend std::ostream &operator<<(std::ostream &,
const Symbol &);
126 friend class boost::serialization::access;
127 template<
class ARCHIVE>
128 void serialize(ARCHIVE & ar,
const unsigned int ) {
129 ar & BOOST_SERIALIZATION_NVP(c_);
130 ar & BOOST_SERIALIZATION_NVP(j_);
143namespace symbol_shorthand {
144inline Key A(std::uint64_t j) {
return Symbol(
'a', j); }
145inline Key B(std::uint64_t j) {
return Symbol(
'b', j); }
146inline Key C(std::uint64_t j) {
return Symbol(
'c', j); }
147inline Key D(std::uint64_t j) {
return Symbol(
'd', j); }
148inline Key E(std::uint64_t j) {
return Symbol(
'e', j); }
149inline Key F(std::uint64_t j) {
return Symbol(
'f', j); }
150inline Key G(std::uint64_t j) {
return Symbol(
'g', j); }
151inline Key H(std::uint64_t j) {
return Symbol(
'h', j); }
152inline Key I(std::uint64_t j) {
return Symbol(
'i', j); }
153inline Key J(std::uint64_t j) {
return Symbol(
'j', j); }
154inline Key K(std::uint64_t j) {
return Symbol(
'k', j); }
155inline Key L(std::uint64_t j) {
return Symbol(
'l', j); }
156inline Key M(std::uint64_t j) {
return Symbol(
'm', j); }
157inline Key N(std::uint64_t j) {
return Symbol(
'n', j); }
158inline Key O(std::uint64_t j) {
return Symbol(
'o', j); }
159inline Key P(std::uint64_t j) {
return Symbol(
'p', j); }
160inline Key Q(std::uint64_t j) {
return Symbol(
'q', j); }
161inline Key R(std::uint64_t j) {
return Symbol(
'r', j); }
162inline Key S(std::uint64_t j) {
return Symbol(
's', j); }
163inline Key T(std::uint64_t j) {
return Symbol(
't', j); }
164inline Key U(std::uint64_t j) {
return Symbol(
'u', j); }
165inline Key V(std::uint64_t j) {
return Symbol(
'v', j); }
166inline Key W(std::uint64_t j) {
return Symbol(
'w', j); }
167inline Key X(std::uint64_t j) {
return Symbol(
'x', j); }
168inline Key Y(std::uint64_t j) {
return Symbol(
'y', j); }
169inline Key Z(std::uint64_t j) {
return Symbol(
'z', j); }
175 const unsigned char c_;
178 Symbol operator()(
const std::uint64_t j)
const {
return Symbol(c_, j); }
179 constexpr unsigned char chr()
const {
return c_; }
Concept check for values that can be used in unit tests.
Global functions in a separate testing namespace.
Definition: chartTesting.h:28
std::uint64_t symbolIndex(Key key)
Return the index portion of a symbol key.
Definition: Symbol.h:141
std::string serialize(const T &input)
serializes to a string
Definition: serialization.h:112
Key symbol(unsigned char c, std::uint64_t j)
Create a symbol key from a character and index, i.e.
Definition: Symbol.h:135
void print(const Matrix &A, const string &s, ostream &stream)
print without optional string, must specify cout yourself
Definition: Matrix.cpp:155
unsigned char symbolChr(Key key)
Return the character portion of a symbol key.
Definition: Symbol.h:138
std::uint64_t Key
Integer nonlinear key type.
Definition: types.h:69
A manifold defines a space in which there is a notion of a linear tangent space that can be centered ...
Definition: concepts.h:30
Template to create a binary predicate.
Definition: Testable.h:111
A helper that implements the traits interface for GTSAM types.
Definition: Testable.h:151
Character and index key used to refer to variables.
Definition: Symbol.h:35
unsigned char chr() const
Retrieve key character.
Definition: Symbol.h:73
bool operator==(Key comp) const
Comparison for use in maps.
Definition: Symbol.h:99
bool operator!=(const Symbol &comp) const
Comparison for use in maps.
Definition: Symbol.h:104
bool operator==(const Symbol &comp) const
Comparison for use in maps.
Definition: Symbol.h:94
Symbol(const Symbol &key)
Copy constructor.
Definition: Symbol.h:48
Symbol()
Default constructor.
Definition: Symbol.h:43
Symbol(unsigned char c, std::uint64_t j)
Constructor.
Definition: Symbol.h:53
bool operator<(const Symbol &comp) const
Comparison for use in maps.
Definition: Symbol.h:89
std::uint64_t index() const
Retrieve key index.
Definition: Symbol.h:78
std::string string() const
Return string representation of the key.
Definition: Symbol.h:86
bool operator!=(Key comp) const
Comparison for use in maps.
Definition: Symbol.h:109
Generates symbol shorthands with alternative names different than the one-letter predefined ones.
Definition: Symbol.h:174