-
Notifications
You must be signed in to change notification settings - Fork 0
/
coordinate.h
907 lines (759 loc) · 20.1 KB
/
coordinate.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
// <coordinate.h> -*- C++ -*-
// Copyright (C) 2015 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can redistribute it and/or modify it under the
// terms of the GNU General Public License as published by the
// Free Software Foundation; either version 3, or (at your option)
// any later version.
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// Under Section 7 of GPL version 3, you are granted additional
// permissions described in the GCC Runtime Library Exception, version
// 3.1, as published by the Free Software Foundation.
// You should have received a copy of the GNU General Public License and
// a copy of the GCC Runtime Library Exception along with this program;
// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
// <http://www.gnu.org/licenses/>.
#ifndef _GLIBCXX_COORDINATE_H
#define _GLIBCXX_COORDINATE_H 1
#pragma GCC system_header
#if __cplusplus < 201500L
# include <bits/c++1z_warning.h>
#else
#include <cassert>
#include <iterator>
#include <experimental/type_traits>
namespace std _GLIBCXX_VISIBILITY(default)
{
namespace experimental
{
inline namespace fundamentals_v2
{
namespace __detail
{
template<typename _ConcTp, typename _Tp, int _Rank>
class coordinate_facade
{
static_assert(std::experimental::is_fundamental_v<_Tp>, "ValueType must be fundamental!");
static_assert(_Rank > 0, "Rank must be greater than 0!");
public:
using reference = _Tp&;
using const_reference = const _Tp&;
using size_type = std::size_t;
using value_type = _Tp;
static const int rank = _Rank;
constexpr
coordinate_facade() noexcept
{
static_assert(std::experimental::is_base_of_v<coordinate_facade, _ConcTp>,
"ConcreteType must be derived from coordinate_facade.");
for (int i = 0; i < rank; ++i)
elems[i] = {};
}
constexpr
coordinate_facade(value_type e0) noexcept
{
static_assert(std::experimental::is_base_of_v<coordinate_facade, _ConcTp>,
"ConcreteType must be derived from coordinate_facade.");
static_assert(rank == 1, "This constructor can only be used with rank == 1.");
elems[0] = e0;
}
// Preconditions: il.size() == rank
constexpr
coordinate_facade(std::initializer_list<value_type> il)
{
static_assert(std::experimental::is_base_of_v<coordinate_facade, _ConcTp>,
"ConcreteType must be derived from coordinate_facade.");
assert(il.size() == rank);
for (int i = 0; i < rank; ++i)
elems[i] = begin(il)[i];
}
protected:
coordinate_facade&
operator=(const coordinate_facade& rhs) = default;
// Preconditions: component_idx < rank
constexpr reference
operator[](size_type component_idx)
{ return elems[component_idx]; }
// Preconditions: component_idx < rank
constexpr const_reference
operator[](size_type component_idx) const
{ return elems[component_idx]; }
constexpr bool
operator==(const _ConcTp& rhs) const noexcept
{
for (int i = 0; i < rank; ++i)
if (elems[i] != rhs.elems[i])
return false;
return true;
}
constexpr bool
operator!=(const _ConcTp& rhs) const noexcept
{ return !(to_concrete() == rhs); }
constexpr _ConcTp
operator+() const noexcept
{ return to_concrete(); }
constexpr _ConcTp
operator-() const
{
_ConcTp ret = to_concrete();
for (int i = 0; i < rank; ++i)
ret.elems[i] = -ret.elems[i];
return ret;
}
constexpr _ConcTp
operator+(const _ConcTp& rhs) const
{
_ConcTp ret = to_concrete();
ret += rhs;
return ret;
}
constexpr _ConcTp
operator-(const _ConcTp& rhs) const
{
_ConcTp ret = to_concrete();
ret -= rhs;
return ret;
}
constexpr _ConcTp&
operator+=(const _ConcTp& rhs)
{
for (int i = 0; i < rank; ++i)
elems[i] += rhs.elems[i];
return to_concrete();
}
constexpr _ConcTp&
operator-=(const _ConcTp& rhs)
{
for (int i = 0; i < rank; ++i)
elems[i] -= rhs.elems[i];
return to_concrete();
}
constexpr _ConcTp&
operator++()
{
static_assert(rank == 1,
"This operator can only be used with rank == 1.");
++elems[0];
return to_concrete();
}
constexpr _ConcTp
operator++(int)
{
static_assert(rank == 1,
"This operator can only be used with rank == 1.");
_ConcTp ret = to_concrete();
++(*this);
return ret;
}
constexpr _ConcTp&
operator--()
{
static_assert(rank == 1,
"This operator can only be used with rank == 1.");
--elems[0];
return to_concrete();
}
constexpr _ConcTp
operator--(int)
{
static_assert(rank == 1,
"This operator can only be used with rank == 1.");
_ConcTp ret = to_concrete();
--(*this);
return ret;
}
constexpr _ConcTp
operator*(value_type v) const
{
_ConcTp ret = to_concrete();
ret *= v;
return ret;
}
constexpr _ConcTp
operator/(value_type v) const
{
_ConcTp ret = to_concrete();
ret /= v;
return ret;
}
friend constexpr _ConcTp
operator*(value_type v, const _ConcTp& rhs)
{ return rhs * v; }
constexpr _ConcTp&
operator*=(value_type v)
{
for (int i = 0; i < rank; ++i)
elems[i] *= v;
return to_concrete();
}
constexpr _ConcTp&
operator/=(value_type v)
{
for (int i = 0; i < rank; ++i)
elems[i] /= v;
return to_concrete();
}
value_type elems[rank];
private:
constexpr const _ConcTp&
to_concrete() const noexcept
{ return static_cast<const _ConcTp&>(*this); }
constexpr _ConcTp&
to_concrete() noexcept
{ return static_cast<_ConcTp&>(*this); }
};
template<typename _Tp>
class arrow_proxy
{
public:
explicit
arrow_proxy(_Tp __t)
: _M_val{__t}
{ }
const _Tp
operator*() const noexcept
{ return _M_val; }
const _Tp*
operator->() const noexcept
{ return &_M_val; }
private:
_Tp _M_val;
};
} // namespaqce __detail
template<int _Rank>
class index
: private __detail::coordinate_facade<index<_Rank>, std::ptrdiff_t, _Rank>
{
using _Base = __detail::coordinate_facade<index<_Rank>, std::ptrdiff_t, _Rank>;
friend _Base;
public:
using _Base::rank;
using reference = typename _Base::reference;
using const_reference = typename _Base::const_reference;
using size_type = typename _Base::size_type;
using value_type = typename _Base::value_type;
constexpr index() noexcept : _Base(){}
template<typename = std::enable_if_t<rank == 1>>
constexpr index(value_type e0) noexcept : _Base(e0){}
constexpr index(std::initializer_list<value_type> il) : _Base(il){}
using _Base::operator[];
using _Base::operator==;
using _Base::operator!=;
using _Base::operator+;
using _Base::operator-;
using _Base::operator+=;
using _Base::operator-=;
using _Base::operator++;
using _Base::operator--;
using _Base::operator*;
using _Base::operator/;
using _Base::operator*=;
using _Base::operator/=;
};
template<>
class index<1>
{
public:
static const int rank = 1;
using reference = std::ptrdiff_t&;
using const_reference = const std::ptrdiff_t&;
using size_type = std::size_t;
using value_type = std::ptrdiff_t;
constexpr
index() noexcept
: value{0}
{ }
constexpr
index(value_type e0) noexcept
: value{e0}
{ }
// Preconditions: il.size() == rank
constexpr
index(std::initializer_list<value_type> il)
: value{begin(il)[0]}
{
assert(il.size() == rank);
//value = begin(il)[0]; // constexpr ctor must use initlist...
}
// Preconditions: component_idx < rank
constexpr reference
operator[](size_type component_idx) noexcept
{
assert(component_idx == 0);
(component_idx);
return value;
}
// Preconditions: component_idx < rank
constexpr const_reference
operator[](size_type component_idx) const noexcept
{
assert(component_idx == 0);
(component_idx);
return value;
}
constexpr bool
operator==(const index& rhs) const noexcept
{ return value == rhs.value; }
constexpr bool
operator!=(const index& rhs) const noexcept
{ return !(*this == rhs); }
constexpr index
operator+() const noexcept
{ return *this; }
constexpr index
operator-() const noexcept
{ return index(-value); }
constexpr index operator+(const index& rhs) const noexcept
{ return index(value + rhs.value); }
constexpr index operator-(const index& rhs) const noexcept
{ return index(value - rhs.value); }
constexpr index&
operator+=(const index& rhs) noexcept
{
value += rhs.value;
return *this;
}
constexpr index&
operator-=(const index& rhs) noexcept
{
value -= rhs.value;
return *this;
}
constexpr index&
operator++() noexcept
{
++value;
return *this;
}
constexpr index
operator++(int) noexcept
{
index ret = *this;
++(*this);
return ret;
}
constexpr index&
operator--() noexcept
{
--value;
return *this;
}
constexpr index
operator--(int) noexcept
{
index ret = *this;
--(*this);
return ret;
}
constexpr index
operator*(value_type v) const noexcept
{ return index(value * v); }
constexpr index
operator/(value_type v) const noexcept
{ return index(value / v); }
constexpr index&
operator*=(value_type v) noexcept
{
value *= v;
return *this;
}
constexpr index&
operator/=(value_type v) noexcept
{
value /= v;
return *this;
}
friend constexpr index
operator*(value_type v, const index& rhs) noexcept
{ return index(rhs * v); }
private:
std::ptrdiff_t value;
};
template<int _Rank>
struct bounds_iterator;
// Preconditions (for all functions): after operation:
// - every component must be greater than or equal to zero
// - product of all components must not overflow ptrdiff_t
template<int _Rank>
class bounds
: private __detail::coordinate_facade<bounds<_Rank>, std::ptrdiff_t, _Rank>
{
using _Base = __detail::coordinate_facade<bounds<_Rank>, std::ptrdiff_t, _Rank>;
friend _Base;
public:
using _Base::rank;
using reference = typename _Base::reference;
using const_reference = typename _Base::const_reference;
using iterator = bounds_iterator<rank>;
using const_iterator = bounds_iterator<rank>;
using size_type = typename _Base::size_type;
using value_type = typename _Base::value_type;
constexpr bounds() noexcept : _Base(){}
template<typename = std::enable_if_t<rank == 1>>
constexpr
bounds(value_type e0)
: _Base(e0)
{ assert(e0 >= 0); }
constexpr
bounds(std::initializer_list<value_type> il)
: _Base(il)
{
#ifndef NDEBUG
for (const auto& v : il)
assert(v >= 0);
#endif
}
using _Base::operator[];
using _Base::operator==;
using _Base::operator!=;
using _Base::operator*;
using _Base::operator/;
using _Base::operator*=;
using _Base::operator/=;
constexpr bounds
operator+(const index<rank>& rhs) const
{
auto ret = *this;
ret += rhs;
return ret;
}
constexpr bounds
operator-(const index<rank>& rhs) const
{
auto ret = *this;
ret -= rhs;
return ret;
}
friend constexpr bounds
operator+(const index<rank>& lhs, const bounds& rhs)
{ return rhs + lhs; }
constexpr bounds&
operator+=(const index<rank>& rhs)
{
for (int i = 0; i < rank; ++i)
_Base::elems[i] += rhs[i];
return *this;
}
constexpr bounds&
operator-=(const index<rank>& rhs)
{
for (int i = 0; i < rank; ++i)
_Base::elems[i] -= rhs[i];
return *this;
}
constexpr size_type
size() const noexcept
{
size_type ret = _Base::elems[0];
for (int i = 1; i < rank; ++i)
ret *= _Base::elems[i];
return ret;
}
constexpr bool
contains(const index<rank>& idx) const noexcept
{
for (int i = 0; i < rank; ++i)
if (idx[i] < 0 || idx[i] >= _Base::elems[i])
return false;
return true;
}
const_iterator
begin() const noexcept
{ return const_iterator{ *this }; }
const_iterator
end() const noexcept
{
index<rank> idx_end;
for (int i = 0; i < rank; ++i)
idx_end[i] = (*this)[i];
return const_iterator{*this, idx_end};
}
};
template<int _Rank>
struct bounds_iterator
: public std::iterator<random_access_iterator_tag,
index<_Rank>,
std::ptrdiff_t,
const __detail::arrow_proxy<index<_Rank>>,
const index<_Rank>>
{
// Couldn't find types...
using _Base = std::iterator<random_access_iterator_tag,
index<_Rank>,
std::ptrdiff_t,
const __detail::arrow_proxy<index<_Rank>>,
const index<_Rank>>;
using reference = typename _Base::reference;
using const_reference = typename _Base::const_reference;
using pointer = typename _Base::pointer;
using const_pointer = typename _Base::const_pointer;
using difference_type = typename _Base::difference_type;
// Preconditions: bnd.contains(curr) unless bnd.size() == 0
explicit
bounds_iterator(bounds<_Rank> bnd, index<_Rank> curr = index<_Rank>{}) noexcept
: bnd{std::move(bnd)},
curr{std::move(curr)}
{ }
reference
operator*() const noexcept
{ return curr; }
pointer
operator->() const noexcept
{ return __detail::arrow_proxy<index<_Rank>>{curr}; }
bounds_iterator&
operator++() noexcept
{
for (int i = _Rank; i-- > 0;)
{
if (++curr[i] < bnd[i])
return *this;
else
curr[i] = 0;
}
// If we're here we've wrapped over - set to past-the-end.
for (int i = 0; i < _Rank; ++i)
curr[i] = bnd[i];
return *this;
}
bounds_iterator operator++(int) noexcept
{
auto ret = *this;
++(*this);
return ret;
}
bounds_iterator&
operator--() noexcept
{
for (int i = _Rank; i-- > 0;)
{
if (curr[i]-- > 0)
return *this;
else
curr[i] = bnd[i] - 1;
}
// If we're here the preconditions were violated
// "pre: there exists s such that r == ++s"
assert(false);
return *this;
}
bounds_iterator
operator--(int) noexcept
{
auto ret = *this;
--(*this);
return ret;
}
bounds_iterator
operator+(difference_type n) const noexcept
{
bounds_iterator ret{ *this };
return ret += n;
}
bounds_iterator&
operator+=(difference_type n) noexcept
{
auto linear_idx = linearize(curr) + n;
bounds<_Rank> stride;
stride[_Rank - 1] = 1;
for (int i = _Rank - 1; i-- > 0;)
stride[i] = stride[i + 1] * bnd[i + 1];
for (int i = 0; i < _Rank; ++i)
{
curr[i] = linear_idx / stride[i];
linear_idx = linear_idx % stride[i];
}
return *this;
}
bounds_iterator
operator-(difference_type n) const noexcept
{
bounds_iterator ret{*this};
return ret -= n;
}
bounds_iterator&
operator-=(difference_type n) noexcept
{ return *this += -n; }
difference_type
operator-(const bounds_iterator& rhs) const noexcept
{ return linearize(curr) - linearize(rhs.curr); }
reference
operator[](difference_type n) const noexcept
{ return *(*this + n); }
bool
operator==(const bounds_iterator& rhs) const noexcept
{ return curr == rhs.curr; }
bool
operator!=(const bounds_iterator& rhs) const noexcept
{ return !(*this == rhs); }
bool
operator<(const bounds_iterator& rhs) const noexcept
{
for (int i = 0; i < _Rank; ++i)
if (curr[i] < rhs.curr[i])
return true;
return false;
}
bool
operator<=(const bounds_iterator& rhs) const noexcept
{ return !(rhs < *this); }
bool
operator>(const bounds_iterator& rhs) const noexcept
{ return rhs < *this; }
bool
operator>=(const bounds_iterator& rhs) const noexcept
{ return !(rhs > *this); }
void
swap(bounds_iterator& rhs) noexcept
{
std::swap(bnd, rhs.bnd);
std::swap(curr, rhs.curr);
}
private:
std::ptrdiff_t
linearize(const index<_Rank>& idx) const noexcept
{
// TODO: Smarter impl.
// Check if past-the-end
bool pte = true;
for (int i = 0; i < _Rank; ++i)
{
if (idx[i] != bnd[i])
{
pte = false;
break;
}
}
std::ptrdiff_t multiplier = 1;
std::ptrdiff_t res = 0;
if (pte)
{
res = 1;
for (int i = _Rank; i-- > 0;)
{
res += (idx[i] - 1) * multiplier;
multiplier *= bnd[i];
}
}
else
{
for (int i = _Rank; i-- > 0;)
{
res += idx[i] * multiplier;
multiplier *= bnd[i];
}
}
return res;
}
bounds<_Rank> bnd;
index<_Rank> curr;
};
template<>
struct bounds_iterator<1>
: public iterator<random_access_iterator_tag,
index<1>,
std::ptrdiff_t,
const __detail::arrow_proxy<index<1>>,
const index<1>>
{
// Preconditions: bnd.contains(curr) unless bnd.size() == 0
explicit
bounds_iterator(bounds<1>, index<1> curr = index<1>{}) noexcept
: curr(std::move(curr))
{ }
reference
operator*() const noexcept
{ return curr; }
pointer
operator->() const noexcept
{ return __detail::arrow_proxy<index<1>>{ curr }; }
bounds_iterator&
operator++() noexcept
{
++curr;
return *this;
}
bounds_iterator
operator++(int) noexcept
{
auto ret = *this;
++(*this);
return ret;
}
bounds_iterator&
operator--() noexcept
{
curr--;
return *this;
}
bounds_iterator
operator--(int) noexcept
{
auto ret = *this;
--(*this);
return ret;
}
bounds_iterator
operator+(difference_type n) const noexcept
{
bounds_iterator ret{ *this };
return ret += n;
}
bounds_iterator&
operator+=(difference_type n) noexcept
{
curr += n;
return *this;
}
bounds_iterator
operator-(difference_type n) const noexcept
{
bounds_iterator ret{ *this };
return ret -= n;
}
bounds_iterator&
operator-=(difference_type n) noexcept
{ return *this += -n; }
difference_type
operator-(const bounds_iterator& rhs) const noexcept
{ return curr[0] - rhs.curr[0]; }
reference
operator[](difference_type n) const noexcept
{ return curr + n; }
bool
operator==(const bounds_iterator& rhs) const noexcept
{ return curr == rhs.curr; }
bool
operator!=(const bounds_iterator& rhs) const noexcept
{ return !(*this == rhs); }
bool
operator<(const bounds_iterator& rhs) const noexcept
{ return curr[0] < rhs.curr[0]; }
bool
operator<=(const bounds_iterator& rhs) const noexcept
{ return !(rhs < *this); }
bool
operator>(const bounds_iterator& rhs) const noexcept
{ return rhs < *this; }
bool
operator>=(const bounds_iterator& rhs) const noexcept
{ return !(rhs > *this); }
void
swap(bounds_iterator& rhs) noexcept
{ std::swap(curr, rhs.curr); }
private:
index<1> curr;
};
template<int _Rank>
bounds_iterator<_Rank>
operator+(typename bounds_iterator<_Rank>::difference_type n,
const bounds_iterator<_Rank>& rhs) noexcept
{ return rhs + n; }
} // inline namespace fundamentals_v2
} // namespace experimental
} // namespace std
#endif // __cplusplus
#endif // _GLIBCXX_COORDINATE_H