LSSTApplications  16.0-10-g0ee56ad+5,16.0-11-ga33d1f2+5,16.0-12-g3ef5c14+3,16.0-12-g71e5ef5+18,16.0-12-gbdf3636+3,16.0-13-g118c103+3,16.0-13-g8f68b0a+3,16.0-15-gbf5c1cb+4,16.0-16-gfd17674+3,16.0-17-g7c01f5c+3,16.0-18-g0a50484+1,16.0-20-ga20f992+8,16.0-21-g0e05fd4+6,16.0-21-g15e2d33+4,16.0-22-g62d8060+4,16.0-22-g847a80f+4,16.0-25-gf00d9b8+1,16.0-28-g3990c221+4,16.0-3-gf928089+3,16.0-32-g88a4f23+5,16.0-34-gd7987ad+3,16.0-37-gc7333cb+2,16.0-4-g10fc685+2,16.0-4-g18f3627+26,16.0-4-g5f3a788+26,16.0-5-gaf5c3d7+4,16.0-5-gcc1f4bb+1,16.0-6-g3b92700+4,16.0-6-g4412fcd+3,16.0-6-g7235603+4,16.0-69-g2562ce1b+2,16.0-8-g14ebd58+4,16.0-8-g2df868b+1,16.0-8-g4cec79c+6,16.0-8-gadf6c7a+1,16.0-8-gfc7ad86,16.0-82-g59ec2a54a+1,16.0-9-g5400cdc+2,16.0-9-ge6233d7+5,master-g2880f2d8cf+3,v17.0.rc1
LSSTDataManagementBasePackage
PackedIndex.h
Go to the documentation of this file.
1 // -*- LSST-C++ -*-
2 /*
3  * Developed for the LSST Data Management System.
4  * This product includes software developed by the LSST Project
5  * (https://www.lsst.org).
6  * See the COPYRIGHT file at the top-level directory of this distribution
7  * for details of code ownership.
8  *
9  * This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program. If not, see <https://www.gnu.org/licenses/>.
21  */
22 #ifndef LSST_AFW_MATH_POLYNOMIALS_PackedIndex_h_INCLUDED
23 #define LSST_AFW_MATH_POLYNOMIALS_PackedIndex_h_INCLUDED
24 
25 namespace lsst { namespace geom { namespace polynomials {
26 
28 enum class PackingOrder {
29 
43  YX,
44 
58  XY
59 };
60 
69 struct Index2d {
70 
72  constexpr Index2d() noexcept : flat(0), nx(0), ny(0) {}
73 
75  constexpr Index2d(std::size_t flat_, std::size_t nx_, std::size_t ny_) noexcept :
76  flat(flat_), nx(nx_), ny(ny_)
77  {}
78 
80  constexpr bool operator==(Index2d const & other) const noexcept {
81  return flat == other.flat && nx == other.nx && ny == other.ny;
82  }
83 
85  constexpr bool operator!=(Index2d const & other) const noexcept {
86  return !(*this == other);
87  }
88 
92 };
93 
94 namespace detail {
95 
96 // Specialization of all PackedIndexIterator/PackedIndexRange logic
97 // that isn't common across PackingOrders.
98 template <PackingOrder packing> struct PackingOrderTraits;
99 
100 template <>
102 
103  // Return the offset of the given coefficient after the (nx + ny) offset is subtracted off.
104  static std::size_t computeInnerIndex(std::size_t nx, std::size_t ny) { return nx; }
105 
106  static void increment(Index2d & index) {
107  if (index.ny == 0) {
108  index.ny = index.nx + 1;
109  index.nx = 0;
110  } else {
111  --index.ny;
112  ++index.nx;
113  }
114  }
115 
116  // Return the nx and ny values appropriate for the end iterator of a range of the given order.
117  static std::size_t getEndX(std::size_t order) { return 0; }
118  static std::size_t getEndY(std::size_t order) { return order + 1; }
119 
120 };
121 
122 template <>
124 
125  // Return the offset of the given coefficient after the (nx + ny) offset is subtracted off.
126  static std::size_t computeInnerIndex(std::size_t nx, std::size_t ny) { return ny; }
127 
128  static void increment(Index2d & index) {
129  if (index.nx == 0) {
130  index.nx = index.ny + 1;
131  index.ny = 0;
132  } else {
133  --index.nx;
134  ++index.ny;
135  }
136  }
137 
138  // Return the nx and ny values appropriate for the end iterator of a range of the given order.
139  static std::size_t getEndX(std::size_t order) { return order + 1; }
140  static std::size_t getEndY(std::size_t order) { return 0; }
141 
142 };
143 
144 } // namespace detail
145 
163 template <PackingOrder packing>
166 public:
167 
170  using pointer = Index2d const *;
171  using reference = Index2d const &;
173 
175  static constexpr std::size_t computeOffset(std::size_t order) noexcept {
176  return order*(order + 1)/2;
177  }
178 
180  static constexpr std::size_t computeSize(std::size_t order) noexcept {
181  return computeOffset(order + 1);
182  }
183 
185  static constexpr std::size_t computeIndex(std::size_t nx, std::size_t ny) noexcept {
186  return computeOffset(nx + ny) + Traits::computeInnerIndex(nx, ny);
187  }
188 
190  static constexpr PackedIndexIterator makeEnd(std::size_t order) noexcept {
191  return PackedIndexIterator(order);
192  }
193 
195  constexpr PackedIndexIterator() noexcept : _index() {}
196 
198  constexpr PackedIndexIterator(std::size_t nx, std::size_t ny) noexcept :
199  _index(computeIndex(nx, ny), nx, ny)
200  {}
201 
203  constexpr reference operator*() const noexcept { return _index; }
204 
206  constexpr pointer operator->() const noexcept { return &_index; }
207 
210  ++_index.flat;
211  Traits::increment(_index);
212  return *this;
213  }
214 
217  PackedIndexIterator r(*this);
218  ++(*this);
219  return r;
220  }
221 
223  constexpr bool operator==(PackedIndexIterator const & other) const noexcept {
224  return _index == other._index;
225  }
226 
228  constexpr bool operator!=(PackedIndexIterator const & other) const noexcept {
229  return !(*this == other);
230  }
231 
232 private:
233 
234  constexpr PackedIndexIterator(std::size_t order) noexcept :
235  _index(computeOffset(order + 1), Traits::getEndX(order), Traits::getEndY(order))
236  {}
237 
238  Index2d _index;
239 };
240 
247 template <PackingOrder packing>
249 public:
250 
254  using reference = typename iterator::reference;
255  using pointer = typename iterator::pointer;
258 
260  static constexpr std::size_t computeOffset(std::size_t order) noexcept {
261  return iterator::computeOffset(order);
262  }
263 
265  static constexpr std::size_t computeSize(std::size_t order) noexcept {
266  return iterator::computeSize(order);
267  }
268 
270  static constexpr std::size_t computeIndex(std::size_t nx, std::size_t ny) noexcept {
271  return iterator::computeIndex(nx, ny);
272  }
273 
275  constexpr PackedIndexRange(iterator first, iterator last) noexcept :
276  _begin(first),
277  _end(last)
278  {}
279 
281  constexpr iterator begin() const noexcept { return _begin; }
282 
284  constexpr iterator cbegin() const noexcept { return _begin; }
285 
287  constexpr iterator end() const noexcept { return _end; }
288 
290  constexpr iterator cend() const noexcept { return _end; }
291 
293  constexpr std::size_t size() const noexcept { return _end->flat - _begin->flat; }
294 
296  constexpr bool empty() const noexcept { return size() == 0u; }
297 
299  constexpr bool operator==(PackedIndexRange const & other) const noexcept {
300  return _begin == other._begin && _end == other._end;
301  }
302 
304  constexpr bool operator!=(PackedIndexRange const & other) const noexcept {
305  return !(*this == other);
306  }
307 
308 private:
309  iterator _begin;
310  iterator _end;
311 };
312 
313 }}} // namespace lsst::geom::polynomials
314 
315 #endif // !LSST_AFW_MATH_POLYNOMIALS_PackedIndex_h_INCLUDED
constexpr Index2d() noexcept
Construct an index with zero entries.
Definition: PackedIndex.h:72
constexpr PackedIndexRange(iterator first, iterator last) noexcept
Construct from begin and end iterators.
Definition: PackedIndex.h:275
static constexpr std::size_t computeIndex(std::size_t nx, std::size_t ny) noexcept
Return the flattened index for the element with the given x and y orders.
Definition: PackedIndex.h:270
static constexpr std::size_t computeSize(std::size_t order) noexcept
Return the flattened size of an expansion with the given maximum order (inclusive).
Definition: PackedIndex.h:265
constexpr pointer operator->() const noexcept
Dereference the iterator, yielding a Index2d const pointer.
Definition: PackedIndex.h:206
static std::size_t computeInnerIndex(std::size_t nx, std::size_t ny)
Definition: PackedIndex.h:104
constexpr iterator end() const noexcept
Return an iterator to one past the end of the range.
Definition: PackedIndex.h:287
PackedIndexIterator operator++(int) noexcept
Move to the next element in the packed array and return a copy of the iterator before the move...
Definition: PackedIndex.h:216
std::size_t nx
Index into the 1-d function for nx.
Definition: PackedIndex.h:90
A pair of indices is mapped to the flattened position , which yields the (nx, ny) ordering ``` (0...
constexpr PackedIndexIterator(std::size_t nx, std::size_t ny) noexcept
Construct an iterator pointing to the element with the given x and y orders.
Definition: PackedIndex.h:198
std::size_t ny
Index into the 1-d functoin for ny.
Definition: PackedIndex.h:91
typename iterator::pointer pointer
Definition: PackedIndex.h:255
constexpr bool operator==(PackedIndexIterator const &other) const noexcept
Equality comparison.
Definition: PackedIndex.h:223
constexpr iterator cend() const noexcept
Return an iterator to one past the end of the range.
Definition: PackedIndex.h:290
constexpr Index2d(std::size_t flat_, std::size_t nx_, std::size_t ny_) noexcept
Construct with the provided values.
Definition: PackedIndex.h:75
A specialized iterator range class for PackedIndexIterator, providing size calculation, comparison, and range-based for support.
Definition: PackedIndex.h:248
typename iterator::difference_type difference_type
Definition: PackedIndex.h:256
int computeSize(int order)
Return the size of the coefficient vector for the given order.
Definition: constants.h:97
A custom tuple that relates the indices of two 1-d functions for x and y to the flattened index for t...
Definition: PackedIndex.h:69
static constexpr std::size_t computeOffset(std::size_t order) noexcept
Return the flattened offset to the start of the given order.
Definition: PackedIndex.h:260
constexpr bool operator!=(Index2d const &other) const noexcept
Inequality comparison.
Definition: PackedIndex.h:85
A base class for image defects.
static constexpr std::size_t computeSize(std::size_t order) noexcept
Return the flattened size of an expansion with the given maximum order (inclusive).
Definition: PackedIndex.h:180
A pair of indices is mapped to the flattened position , which yields the (nx, ny) ordering ``` (0...
constexpr bool empty() const noexcept
Return true if the number of elements in the flattened expansion is zero.
Definition: PackedIndex.h:296
constexpr iterator cbegin() const noexcept
Return an iterator to the start of the range.
Definition: PackedIndex.h:284
An iterator for traversing "packed" triangular 2-d series expansions, in which two 1-d expansions are...
Definition: PackedIndex.h:164
constexpr bool operator!=(PackedIndexIterator const &other) const noexcept
Inequality comparison.
Definition: PackedIndex.h:228
typename iterator::reference reference
Definition: PackedIndex.h:254
constexpr reference operator*() const noexcept
Dereference the iterator, yielding a Index2d const reference.
Definition: PackedIndex.h:203
static constexpr std::size_t computeIndex(std::size_t nx, std::size_t ny) noexcept
Return the flattened index for the element with the given x and y orders.
Definition: PackedIndex.h:185
static constexpr PackedIndexIterator makeEnd(std::size_t order) noexcept
Construct an iterator one past the end of an expansion with the given order.
Definition: PackedIndex.h:190
static std::size_t computeInnerIndex(std::size_t nx, std::size_t ny)
Definition: PackedIndex.h:126
PackedIndexIterator & operator++() noexcept
Move to the next element in the packed array and return the iterator.
Definition: PackedIndex.h:209
constexpr bool operator==(Index2d const &other) const noexcept
Equality comparison.
Definition: PackedIndex.h:80
constexpr bool operator==(PackedIndexRange const &other) const noexcept
Equality comparison.
Definition: PackedIndex.h:299
std::size_t flat
Index into the flattened 2-d function.
Definition: PackedIndex.h:89
ItemVariant const * other
Definition: Schema.cc:56
static constexpr std::size_t computeOffset(std::size_t order) noexcept
Return the flattened offset to the start of the given order.
Definition: PackedIndex.h:175
int computeOffset(int order)
Return the offset of the given order in a coefficient vector.
Definition: constants.h:94
constexpr bool operator!=(PackedIndexRange const &other) const noexcept
Inequality comparison.
Definition: PackedIndex.h:304
constexpr PackedIndexIterator() noexcept
Construct an iterator at the beginning of an expansion of any order.
Definition: PackedIndex.h:195
typename iterator::value_type value_type
Definition: PackedIndex.h:253
constexpr iterator begin() const noexcept
Return an iterator to the start of the range.
Definition: PackedIndex.h:281
PackingOrder
Enum defining the packing orders used to order 2-d polynomial coefficients.
Definition: PackedIndex.h:28
constexpr std::size_t size() const noexcept
Return the number of elements in the flattened expansion.
Definition: PackedIndex.h:293