blob: aa1bd3a7da1f3a0ab241a0f8b757c70531af1b7a [file] [log] [blame]
Sameer Agarwalb6da9c72012-10-01 14:35:52 -07001// Ceres Solver - A fast non-linear least squares minimizer
Keir Mierle7492b0d2015-03-17 22:30:16 -07002// Copyright 2015 Google Inc. All rights reserved.
3// http://ceres-solver.org/
Sameer Agarwalb6da9c72012-10-01 14:35:52 -07004//
5// Redistribution and use in source and binary forms, with or without
6// modification, are permitted provided that the following conditions are met:
7//
8// * Redistributions of source code must retain the above copyright notice,
9// this list of conditions and the following disclaimer.
10// * Redistributions in binary form must reproduce the above copyright notice,
11// this list of conditions and the following disclaimer in the documentation
12// and/or other materials provided with the distribution.
13// * Neither the name of Google Inc. nor the names of its contributors may be
14// used to endorse or promote products derived from this software without
15// specific prior written permission.
16//
17// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
21// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27// POSSIBILITY OF SUCH DAMAGE.
28//
29// Author: sameeragarwal@google.com (Sameer Agarwal)
30
Sameer Agarwal2c94eed2012-10-01 16:34:37 -070031#ifndef CERES_PUBLIC_ORDERED_GROUPS_H_
32#define CERES_PUBLIC_ORDERED_GROUPS_H_
33
Sameer Agarwalb6da9c72012-10-01 14:35:52 -070034#include <map>
35#include <set>
Sameer Agarwalec3a3ce2014-05-29 13:33:42 -070036#include <vector>
Sameer Agarwalf3c10772012-10-08 11:13:37 -070037#include "ceres/internal/port.h"
Sameer Agarwale9fcf3d2014-06-09 12:03:17 -070038#include "glog/logging.h"
Sameer Agarwalb6da9c72012-10-01 14:35:52 -070039
40namespace ceres {
41
42// A class for storing and manipulating an ordered collection of
43// groups/sets with the following semantics:
44//
45// Group ids are non-negative integer values. Elements are any type
46// that can serve as a key in a map or an element of a set.
47//
48// An element can only belong to one group at a time. A group may
49// contain an arbitrary number of elements.
50//
51// Groups are ordered by their group id.
52template <typename T>
53class OrderedGroups {
54 public:
55 // Add an element to a group. If a group with this id does not
56 // exist, one is created. This method can be called any number of
57 // times for the same element. Group ids should be non-negative
58 // numbers.
59 //
60 // Return value indicates if adding the element was a success.
61 bool AddElementToGroup(const T element, const int group) {
62 if (group < 0) {
63 return false;
64 }
65
Sameer Agarwalbcc865f2014-12-17 07:35:09 -080066 typename std::map<T, int>::const_iterator it =
67 element_to_group_.find(element);
Sameer Agarwalb6da9c72012-10-01 14:35:52 -070068 if (it != element_to_group_.end()) {
69 if (it->second == group) {
70 // Element is already in the right group, nothing to do.
71 return true;
72 }
73
74 group_to_elements_[it->second].erase(element);
75 if (group_to_elements_[it->second].size() == 0) {
76 group_to_elements_.erase(it->second);
77 }
78 }
79
80 element_to_group_[element] = group;
81 group_to_elements_[group].insert(element);
82 return true;
83 }
84
Sameer Agarwalba8d9672012-10-02 00:48:57 -070085 void Clear() {
86 group_to_elements_.clear();
87 element_to_group_.clear();
88 }
89
Sameer Agarwala9334d62013-11-20 10:12:23 -080090 // Remove the element, no matter what group it is in. Return value
91 // indicates if the element was actually removed.
Sameer Agarwalb6da9c72012-10-01 14:35:52 -070092 bool Remove(const T element) {
93 const int current_group = GroupId(element);
94 if (current_group < 0) {
95 return false;
96 }
97
98 group_to_elements_[current_group].erase(element);
99
100 if (group_to_elements_[current_group].size() == 0) {
101 // If the group is empty, then get rid of it.
102 group_to_elements_.erase(current_group);
103 }
104
105 element_to_group_.erase(element);
106 return true;
107 }
108
Sameer Agarwalec3a3ce2014-05-29 13:33:42 -0700109 // Bulk remove elements. The return value indicates the number of
110 // elements successfully removed.
Sameer Agarwalbcc865f2014-12-17 07:35:09 -0800111 int Remove(const std::vector<T>& elements) {
Sameer Agarwalec3a3ce2014-05-29 13:33:42 -0700112 if (NumElements() == 0 || elements.size() == 0) {
113 return 0;
114 }
115
116 int num_removed = 0;
117 for (int i = 0; i < elements.size(); ++i) {
118 num_removed += Remove(elements[i]);
119 }
120 return num_removed;
121 }
122
Sameer Agarwalba8d9672012-10-02 00:48:57 -0700123 // Reverse the order of the groups in place.
124 void Reverse() {
Chris Sweeney4df3d112015-03-21 11:55:47 +0100125 if (NumGroups() == 0) {
126 return;
127 }
128
Sameer Agarwalbcc865f2014-12-17 07:35:09 -0800129 typename std::map<int, std::set<T> >::reverse_iterator it =
Sameer Agarwalba8d9672012-10-02 00:48:57 -0700130 group_to_elements_.rbegin();
Sameer Agarwalbcc865f2014-12-17 07:35:09 -0800131 std::map<int, std::set<T> > new_group_to_elements;
Sameer Agarwalba8d9672012-10-02 00:48:57 -0700132 new_group_to_elements[it->first] = it->second;
133
134 int new_group_id = it->first + 1;
135 for (++it; it != group_to_elements_.rend(); ++it) {
Sameer Agarwalbcc865f2014-12-17 07:35:09 -0800136 for (typename std::set<T>::const_iterator element_it = it->second.begin();
Sameer Agarwalba8d9672012-10-02 00:48:57 -0700137 element_it != it->second.end();
138 ++element_it) {
139 element_to_group_[*element_it] = new_group_id;
140 }
141 new_group_to_elements[new_group_id] = it->second;
142 new_group_id++;
143 }
144
145 group_to_elements_.swap(new_group_to_elements);
146 }
147
Sameer Agarwalb6da9c72012-10-01 14:35:52 -0700148 // Return the group id for the element. If the element is not a
149 // member of any group, return -1.
150 int GroupId(const T element) const {
Sameer Agarwalbcc865f2014-12-17 07:35:09 -0800151 typename std::map<T, int>::const_iterator it =
152 element_to_group_.find(element);
Sameer Agarwalb6da9c72012-10-01 14:35:52 -0700153 if (it == element_to_group_.end()) {
154 return -1;
155 }
156 return it->second;
157 }
158
159 bool IsMember(const T element) const {
Sameer Agarwalbcc865f2014-12-17 07:35:09 -0800160 typename std::map<T, int>::const_iterator it =
161 element_to_group_.find(element);
Sameer Agarwalb6da9c72012-10-01 14:35:52 -0700162 return (it != element_to_group_.end());
163 }
164
165 // This function always succeeds, i.e., implicitly there exists a
166 // group for every integer.
167 int GroupSize(const int group) const {
Sameer Agarwalbcc865f2014-12-17 07:35:09 -0800168 typename std::map<int, std::set<T> >::const_iterator it =
Sameer Agarwalb6da9c72012-10-01 14:35:52 -0700169 group_to_elements_.find(group);
170 return (it == group_to_elements_.end()) ? 0 : it->second.size();
171 }
172
173 int NumElements() const {
174 return element_to_group_.size();
175 }
176
177 // Number of groups with one or more elements.
178 int NumGroups() const {
179 return group_to_elements_.size();
180 }
181
Sameer Agarwale9fcf3d2014-06-09 12:03:17 -0700182 // The first group with one or more elements. Calling this when
183 // there are no groups with non-zero elements will result in a
184 // crash.
185 int MinNonZeroGroup() const {
186 CHECK_NE(NumGroups(), 0);
187 return group_to_elements_.begin()->first;
188 }
189
Sameer Agarwalbcc865f2014-12-17 07:35:09 -0800190 const std::map<int, std::set<T> >& group_to_elements() const {
Sameer Agarwalb6da9c72012-10-01 14:35:52 -0700191 return group_to_elements_;
192 }
193
Sameer Agarwalbcc865f2014-12-17 07:35:09 -0800194 const std::map<T, int>& element_to_group() const {
Sameer Agarwalec3a3ce2014-05-29 13:33:42 -0700195 return element_to_group_;
196 }
197
Sameer Agarwalb6da9c72012-10-01 14:35:52 -0700198 private:
Sameer Agarwalbcc865f2014-12-17 07:35:09 -0800199 std::map<int, std::set<T> > group_to_elements_;
200 std::map<T, int> element_to_group_;
Sameer Agarwalb6da9c72012-10-01 14:35:52 -0700201};
202
203// Typedef for the most commonly used version of OrderedGroups.
204typedef OrderedGroups<double*> ParameterBlockOrdering;
205
206} // namespace ceres
Sameer Agarwal2c94eed2012-10-01 16:34:37 -0700207
208#endif // CERES_PUBLIC_ORDERED_GROUP_H_