GTSAM  4.0.2
C++ library for smoothing and mapping (SAM)
FastSet.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 #ifdef GTSAM_ENABLE_BOOST_SERIALIZATION
22 #include <boost/version.hpp>
23 #if BOOST_VERSION >= 107400
24 #include <boost/serialization/library_version_type.hpp>
25 #endif
26 #include <boost/serialization/nvp.hpp>
27 #include <boost/serialization/set.hpp>
28 #endif
30 #include <gtsam/base/Testable.h>
31 
32 #include <functional>
33 #include <set>
34 
35 namespace boost {
36 namespace serialization {
37 class access;
38 } /* namespace serialization */
39 } /* namespace boost */
40 
41 namespace gtsam {
42 
50 template<typename VALUE>
51 class FastSet: public std::set<VALUE, std::less<VALUE>,
52  typename internal::FastDefaultAllocator<VALUE>::type> {
53 
54  GTSAM_CONCEPT_ASSERT(IsTestable<VALUE>);
55 
56 public:
57 
58  typedef std::set<VALUE, std::less<VALUE>,
59  typename internal::FastDefaultAllocator<VALUE>::type> Base;
60 
61  using Base::Base; // Inherit the set constructors
62 
63  FastSet() = default;
64 
66  template<typename INPUTCONTAINER>
67  explicit FastSet(const INPUTCONTAINER& container) :
68  Base(container.begin(), container.end()) {
69  }
70 
72  FastSet(const FastSet<VALUE>& x) :
73  Base(x) {
74  }
75 
77  FastSet(const Base& x) :
78  Base(x) {
79  }
80 
81 #ifdef GTSAM_ALLOCATOR_BOOSTPOOL
82 
83  FastSet(const std::set<VALUE>& x) {
84  // This if statement works around a bug in boost pool allocator and/or
85  // STL vector where if the size is zero, the pool allocator will allocate
86  // huge amounts of memory.
87  if(x.size() > 0)
88  Base::insert(x.begin(), x.end());
89  }
90 #endif
91 
93  operator std::set<VALUE>() const {
94  return std::set<VALUE>(this->begin(), this->end());
95  }
96 
98  bool exists(const VALUE& e) const {
99  return this->find(e) != this->end();
100  }
101 
103  void print(const std::string& str = "") const {
104  for (typename Base::const_iterator it = this->begin(); it != this->end(); ++it)
105  traits<VALUE>::Print(*it, str);
106  }
107 
109  bool equals(const FastSet<VALUE>& other, double tol = 1e-9) const {
110  typename Base::const_iterator it1 = this->begin(), it2 = other.begin();
111  while (it1 != this->end()) {
112  if (it2 == other.end() || !traits<VALUE>::Equals(*it2, *it2, tol))
113  return false;
114  ++it1;
115  ++it2;
116  }
117  return true;
118  }
119 
121  void merge(const FastSet& other) {
122  Base::insert(other.begin(), other.end());
123  }
124 
125 private:
126 #ifdef GTSAM_ENABLE_BOOST_SERIALIZATION
127 
128  friend class boost::serialization::access;
129  template<class ARCHIVE>
130  void serialize(ARCHIVE & ar, const unsigned int /*version*/) {
131  ar & BOOST_SERIALIZATION_BASE_OBJECT_NVP(Base);
132  }
133 #endif
134 };
135 
136 }
Concept check for values that can be used in unit tests.
Definition: FastSet.h:35
std::string serialize(const T &input)
serializes to a string
Definition: serialization.h:113
FastSet(const Base &x)
Definition: FastSet.h:77
Definition: Group.h:43
bool exists(const VALUE &e) const
Definition: FastSet.h:98
void merge(const FastSet &other)
Definition: FastSet.h:121
void print(const std::string &str="") const
Definition: FastSet.h:103
Definition: Testable.h:59
FastSet(const INPUTCONTAINER &container)
Definition: FastSet.h:67
Definition: chartTesting.h:28
Definition: FastSet.h:51
bool equals(const FastSet< VALUE > &other, double tol=1e-9) const
Definition: FastSet.h:109
An easy way to control which allocator is used for Fast* collections.
FastSet(const FastSet< VALUE > &x)
Definition: FastSet.h:72